/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include "RegressionEquation.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; using ::com::sun::star::uno::Reference; using ::com::sun::star::beans::Property; using ::osl::MutexGuard; namespace { enum { PROP_EQUATION_SHOW, PROP_EQUATION_XNAME, PROP_EQUATION_YNAME, PROP_EQUATION_SHOW_CORRELATION_COEFF, PROP_EQUATION_MAY_HAVE_CORRELATION_COEFF, PROP_EQUATION_REF_PAGE_SIZE, PROP_EQUATION_REL_POS, PROP_EQUATION_NUMBER_FORMAT }; void lcl_AddPropertiesToVector( std::vector< Property > & rOutProperties ) { rOutProperties.emplace_back( "ShowEquation", PROP_EQUATION_SHOW, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::MAYBEDEFAULT ); rOutProperties.emplace_back( "XName", PROP_EQUATION_XNAME, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::MAYBEDEFAULT ); rOutProperties.emplace_back( "YName", PROP_EQUATION_YNAME, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::MAYBEDEFAULT ); rOutProperties.emplace_back( "ShowCorrelationCoefficient", PROP_EQUATION_SHOW_CORRELATION_COEFF, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::MAYBEDEFAULT ); rOutProperties.emplace_back( "MayHaveCorrelationCoefficient", PROP_EQUATION_MAY_HAVE_CORRELATION_COEFF, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::MAYBEDEFAULT ); rOutProperties.emplace_back( "ReferencePageSize", PROP_EQUATION_REF_PAGE_SIZE, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::MAYBEVOID ); rOutProperties.emplace_back( "RelativePosition", PROP_EQUATION_REL_POS, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::MAYBEVOID ); rOutProperties.emplace_back( CHART_UNONAME_NUMFMT, PROP_EQUATION_NUMBER_FORMAT, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::MAYBEVOID ); } ::chart::tPropertyValueMap& GetStaticRegressionEquationDefaults() { static ::chart::tPropertyValueMap aStaticDefaults = [](){ ::chart::tPropertyValueMap aOutMap; ::chart::LinePropertiesHelper::AddDefaultsToMap( aOutMap ); ::chart::FillProperties::AddDefaultsToMap( aOutMap ); ::chart::CharacterProperties::AddDefaultsToMap( aOutMap ); ::chart::PropertyHelper::setPropertyValueDefault( aOutMap, PROP_EQUATION_SHOW, false ); ::chart::PropertyHelper::setPropertyValueDefault( aOutMap, PROP_EQUATION_XNAME, OUString("x") ); ::chart::PropertyHelper::setPropertyValueDefault( aOutMap, PROP_EQUATION_YNAME, OUString("f(x)") ); ::chart::PropertyHelper::setPropertyValueDefault( aOutMap, PROP_EQUATION_SHOW_CORRELATION_COEFF, false ); ::chart::PropertyHelper::setPropertyValueDefault( aOutMap, PROP_EQUATION_MAY_HAVE_CORRELATION_COEFF, true ); //::chart::PropertyHelper::setPropertyValueDefault( aOutMap, PROP_EQUATION_SEPARATOR, OUString( '\n' )); // override other defaults ::chart::PropertyHelper::setPropertyValue( aOutMap, ::chart::FillProperties::PROP_FILL_STYLE, drawing::FillStyle_NONE ); ::chart::PropertyHelper::setPropertyValue( aOutMap, ::chart::LinePropertiesHelper::PROP_LINE_STYLE, drawing::LineStyle_NONE ); float fDefaultCharHeight = 10.0; ::chart::PropertyHelper::setPropertyValue( aOutMap, ::chart::CharacterProperties::PROP_CHAR_CHAR_HEIGHT, fDefaultCharHeight ); ::chart::PropertyHelper::setPropertyValue( aOutMap, ::chart::CharacterProperties::PROP_CHAR_ASIAN_CHAR_HEIGHT, fDefaultCharHeight ); ::chart::PropertyHelper::setPropertyValue( aOutMap, ::chart::CharacterProperties::PROP_CHAR_COMPLEX_CHAR_HEIGHT, fDefaultCharHeight ); return aOutMap; }(); return aStaticDefaults; }; ::cppu::OPropertyArrayHelper& GetStaticRegressionEquationInfoHelper() { static ::cppu::OPropertyArrayHelper aPropHelper = [](){ std::vector< css::beans::Property > aProperties; lcl_AddPropertiesToVector( aProperties ); ::chart::LinePropertiesHelper::AddPropertiesToVector( aProperties ); ::chart::FillProperties::AddPropertiesToVector( aProperties ); ::chart::CharacterProperties::AddPropertiesToVector( aProperties ); ::chart::UserDefinedProperties::AddPropertiesToVector( aProperties ); std::sort( aProperties.begin(), aProperties.end(), ::chart::PropertyNameLess() ); return comphelper::containerToSequence( aProperties ); }(); return aPropHelper; }; const uno::Reference< beans::XPropertySetInfo > & GetStaticRegressionEquationInfo() { static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo( ::cppu::OPropertySetHelper::createPropertySetInfo(GetStaticRegressionEquationInfoHelper()) ); return xPropertySetInfo; }; } // anonymous namespace namespace chart { RegressionEquation::RegressionEquation() : m_xModifyEventForwarder( new ModifyEventForwarder()) {} RegressionEquation::RegressionEquation( const RegressionEquation & rOther ) : impl::RegressionEquation_Base(rOther), ::property::OPropertySet( rOther ), m_xModifyEventForwarder( new ModifyEventForwarder()) {} RegressionEquation::~RegressionEquation() {} // ____ XCloneable ____ uno::Reference< util::XCloneable > SAL_CALL RegressionEquation::createClone() { return uno::Reference< util::XCloneable >( new RegressionEquation( *this )); } // ____ OPropertySet ____ void RegressionEquation::GetDefaultValue( sal_Int32 nHandle, uno::Any& rAny ) const { const tPropertyValueMap& rStaticDefaults = GetStaticRegressionEquationDefaults(); tPropertyValueMap::const_iterator aFound( rStaticDefaults.find( nHandle ) ); if( aFound == rStaticDefaults.end() ) rAny.clear(); else rAny = (*aFound).second; } ::cppu::IPropertyArrayHelper & SAL_CALL RegressionEquation::getInfoHelper() { return GetStaticRegressionEquationInfoHelper(); } // ____ XPropertySet ____ Reference< beans::XPropertySetInfo > SAL_CALL RegressionEquation::getPropertySetInfo() { return GetStaticRegressionEquationInfo(); } // ____ XModifyBroadcaster ____ void SAL_CALL RegressionEquation::addModifyListener( const uno::Reference< util::XModifyListener >& aListener ) { m_xModifyEventForwarder->addModifyListener( aListener ); } void SAL_CALL RegressionEquation::removeModifyListener( const uno::Reference< util::XModifyListener >& aListener ) { m_xModifyEventForwarder->removeModifyListener( aListener ); } // ____ XModifyListener ____ void SAL_CALL RegressionEquation::modified( const lang::EventObject& aEvent ) { m_xModifyEventForwarder->modified( aEvent ); } // ____ XEventListener (base of XModifyListener) ____ void SAL_CALL RegressionEquation::disposing( const lang::EventObject& /* Source */ ) { // nothing } // ____ OPropertySet ____ void RegressionEquation::firePropertyChangeEvent() { fireModifyEvent(); } void RegressionEquation::fireModifyEvent() { m_xModifyEventForwarder->modified( lang::EventObject( static_cast< uno::XWeak* >( this ))); } // ____ XTitle ____ uno::Sequence< uno::Reference< chart2::XFormattedString > > SAL_CALL RegressionEquation::getText() { MutexGuard aGuard( m_aMutex ); return m_aStrings; } void SAL_CALL RegressionEquation::setText( const uno::Sequence< uno::Reference< chart2::XFormattedString > >& Strings ) { MutexGuard aGuard( m_aMutex ); ModifyListenerHelper::removeListenerFromAllElements( comphelper::sequenceToContainer > >( m_aStrings ), m_xModifyEventForwarder ); m_aStrings = Strings; ModifyListenerHelper::addListenerToAllElements( comphelper::sequenceToContainer > >( m_aStrings ), m_xModifyEventForwarder ); fireModifyEvent(); } OUString SAL_CALL RegressionEquation::getImplementationName() { return "com.sun.star.comp.chart2.RegressionEquation"; } sal_Bool SAL_CALL RegressionEquation::supportsService( const OUString& rServiceName ) { return cppu::supportsService(this, rServiceName); } css::uno::Sequence< OUString > SAL_CALL RegressionEquation::getSupportedServiceNames() { return { "com.sun.star.chart2.RegressionEquation", "com.sun.star.beans.PropertySet", "com.sun.star.drawing.FillProperties", "com.sun.star.drawing.LineProperties", "com.sun.star.style.CharacterProperties" }; } using impl::RegressionEquation_Base; IMPLEMENT_FORWARD_XINTERFACE2( RegressionEquation, RegressionEquation_Base, ::property::OPropertySet ) } // namespace chart extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * com_sun_star_comp_chart2_RegressionEquation_get_implementation(css::uno::XComponentContext *, css::uno::Sequence const &) { return cppu::acquire(new ::chart::RegressionEquation); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ibreoffice-5-2-1'>libreoffice-5-2-1 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
path: root/source/ml
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2021-12-21 18:00:56 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2021-12-21 18:06:05 +0100
commitf506a2490665212eeefb5934d6d4346a8a8c1856 (patch)
tree1d46d830bbfd1d144bf730aa29950d8a837587d6 /source/ml
parent9658a28df4b4c0eb79a9635221bab10ee09fed61 (diff)
update translations for 7.3.0 rc1
and force-fix errors using pocheck Change-Id: Iaf5f970103a9ace669ee6019b2362031e34cbdf0
Diffstat (limited to 'source/ml')
-rw-r--r--source/ml/basctl/messages.po14
-rw-r--r--source/ml/cui/messages.po64
-rw-r--r--source/ml/filter/source/config/fragments/filters.po38
-rw-r--r--source/ml/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po30
-rw-r--r--source/ml/sc/messages.po598
-rw-r--r--source/ml/sd/messages.po864
-rw-r--r--source/ml/svtools/messages.po18
-rw-r--r--source/ml/sw/messages.po14
9 files changed, 826 insertions, 828 deletions
diff --git a/source/ml/basctl/messages.po b/source/ml/basctl/messages.po
index 598f1098b23..c5a782b160f 100644
--- a/source/ml/basctl/messages.po
+++ b/source/ml/basctl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:10+0200\n"
+"POT-Creation-Date: 2021-12-21 12:37+0100\n"
"PO-Revision-Date: 2018-01-15 15:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -932,10 +932,10 @@ msgctxt "dialogpage|import"
msgid "_Import..."
msgstr "_ഇറക്കുമതി..."
-#. 8VCZB
+#. DtoSB
#: basctl/uiconfig/basicide/ui/dialogpage.ui:221
msgctxt "dialogpage|extended_tip|import"
-msgid "Locate that %PRODUCTNAME Basic library that you want to add to the current list, and then click Open."
+msgid "Locate the %PRODUCTNAME Basic library that you want to add to the current list, and then click Open."
msgstr ""
#. ubE5G
@@ -1100,10 +1100,10 @@ msgctxt "libpage|import"
msgid "_Import..."
msgstr "_ഇംപോര്‍ട്ട് ചെയ്യുക..."
-#. W7BzD
+#. L7AzB
#: basctl/uiconfig/basicide/ui/libpage.ui:244
msgctxt "libpage|extended_tip|import"
-msgid "Locate that %PRODUCTNAME Basic library that you want to add to the current list, and then click Open."
+msgid "Locate the %PRODUCTNAME Basic library that you want to add to the current list, and then click Open."
msgstr ""
#. GhHRH
@@ -1280,10 +1280,10 @@ msgctxt "modulepage|import"
msgid "_Import..."
msgstr "_ഇംപോര്‍ട്ട് ചെയ്യുക..."
-#. qCXgD
+#. LBtmD
#: basctl/uiconfig/basicide/ui/modulepage.ui:226
msgctxt "modulepage|extended_tip|import"
-msgid "Locate that %PRODUCTNAME Basic library that you want to add to the current list, and then click Open."
+msgid "Locate the %PRODUCTNAME Basic library that you want to add to the current list, and then click Open."
msgstr ""
#. GAYBh
diff --git a/source/ml/cui/messages.po b/source/ml/cui/messages.po
index c0ac64d8ea5..3a90394de30 100644
--- a/source/ml/cui/messages.po
+++ b/source/ml/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-24 12:01+0100\n"
+"POT-Creation-Date: 2021-12-20 13:20+0100\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12398,28 +12398,28 @@ msgid "Macro Selector"
msgstr "മാക്രോ തെരഞ്ഞെടുക്കുന്നതിനുള്ള പ്രയോഗം"
#. fpfnw
-#: cui/uiconfig/ui/macroselectordialog.ui:108
+#: cui/uiconfig/ui/macroselectordialog.ui:105
msgctxt "macroselectordialog|helpmacro"
msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
msgstr "നിങ്ങള്‍ക്കു് ആവശ്യമുള്ള മാക്രോ അടങ്ങുന്ന ലൈബ്രറി തെരഞ്ഞെടുക്കുക. ശേഷം, 'മാക്രോയുടെ പേരിലുള്ള' മാക്രോ തെരഞ്ഞെടുക്കുക."
#. SuCLc
-#: cui/uiconfig/ui/macroselectordialog.ui:182
+#: cui/uiconfig/ui/macroselectordialog.ui:175
msgctxt "macroselectordialog|libraryft"
msgid "Library"
msgstr "ലൈബ്രറി"
#. QvKmS
-#: cui/uiconfig/ui/macroselectordialog.ui:243
+#: cui/uiconfig/ui/macroselectordialog.ui:230
msgctxt "macroselectordialog|macronameft"
msgid "Macro Name"
msgstr "മാക്രോ നാമം"
-#. gsUCh
-#: cui/uiconfig/ui/macroselectordialog.ui:296
+#. VcFY4
+#: cui/uiconfig/ui/macroselectordialog.ui:281
msgctxt "macroselectordialog|label1"
-msgid "Description"
-msgstr "വിവരണം"
+msgid "_Description"
+msgstr ""
#. YTX8B
#: cui/uiconfig/ui/menuassignpage.ui:46
@@ -12640,73 +12640,73 @@ msgid "Add item"
msgstr "വസ്തു ചേര്‍ക്കുക"
#. JrYMp
-#: cui/uiconfig/ui/menuassignpage.ui:791
+#: cui/uiconfig/ui/menuassignpage.ui:789
msgctxt "menuassignpage|extended_tip|add"
msgid "Click on the right arrow button to select a function on the left display box and copy to the right display box. This will add the function to the selected menu."
msgstr ""
#. iree8
-#: cui/uiconfig/ui/menuassignpage.ui:817
+#: cui/uiconfig/ui/menuassignpage.ui:815
msgctxt "menuassignpage|remove"
msgid "Remove item"
msgstr ""
#. AsenA
-#: cui/uiconfig/ui/menuassignpage.ui:827
+#: cui/uiconfig/ui/menuassignpage.ui:823
msgctxt "menuassignpage|extended_tip|remove"
msgid "Click on the left arrow button to remove the selected command from the current menu."
msgstr ""
#. t7BYP
-#: cui/uiconfig/ui/menuassignpage.ui:860
+#: cui/uiconfig/ui/menuassignpage.ui:856
msgctxt "menuassignpage|moveupbtn"
msgid "Move up"
msgstr ""
#. BH9fq
-#: cui/uiconfig/ui/menuassignpage.ui:865
+#: cui/uiconfig/ui/menuassignpage.ui:861
msgctxt "menuassignpage|extended_tip|up"
msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed menu commands."
msgstr ""
#. S6K2N
-#: cui/uiconfig/ui/menuassignpage.ui:879
+#: cui/uiconfig/ui/menuassignpage.ui:875
msgctxt "menuassignpage|movedownbtn"
msgid "Move down"
msgstr ""
#. RCKEK
-#: cui/uiconfig/ui/menuassignpage.ui:884
+#: cui/uiconfig/ui/menuassignpage.ui:880
msgctxt "menuassignpage|extended_tip|down"
msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed menu commands."
msgstr ""
#. fto8m
-#: cui/uiconfig/ui/menuassignpage.ui:904
+#: cui/uiconfig/ui/menuassignpage.ui:900
msgctxt "menuassignpage|scopelabel"
msgid "S_cope"
msgstr ""
#. SLinm
-#: cui/uiconfig/ui/menuassignpage.ui:917
+#: cui/uiconfig/ui/menuassignpage.ui:913
msgctxt "menuassignpage|targetlabel"
msgid "_Target"
msgstr ""
#. cZEBZ
-#: cui/uiconfig/ui/menuassignpage.ui:930
+#: cui/uiconfig/ui/menuassignpage.ui:926
msgctxt "menuassignpage|functionlabel"
msgid "Assi_gned Commands"
msgstr ""
#. AZQ8V
-#: cui/uiconfig/ui/menuassignpage.ui:943
+#: cui/uiconfig/ui/menuassignpage.ui:939
msgctxt "menuassignpage|customizelabel"
msgid "_Customize"
msgstr ""
#. yFQHn
-#: cui/uiconfig/ui/menuassignpage.ui:1002
+#: cui/uiconfig/ui/menuassignpage.ui:998
msgctxt "menuassignpage|extended_tip|MenuAssignPage"
msgid "Lets you customize %PRODUCTNAME menus for all modules."
msgstr ""
@@ -18847,10 +18847,10 @@ msgctxt "qrcodegen|edit_name"
msgid "www.libreoffice.org"
msgstr ""
-#. B4bcB
+#. DnXM6
#: cui/uiconfig/ui/qrcodegen.ui:118
msgctxt "qr text"
-msgid "The text from which to generate the QR code."
+msgid "The text from which to generate the code."
msgstr ""
#. 4FXDa
@@ -18880,29 +18880,29 @@ msgctxt "qrcodegen|QrCode"
msgid "QR Code"
msgstr ""
-#. A4ddL
+#. HGShQ
#: cui/uiconfig/ui/qrcodegen.ui:180
msgctxt "qrcodegen|BarCode"
-msgid "Bar Code"
+msgid "Barcode"
msgstr ""
-#. d4kJB
+#. C3VYY
#: cui/uiconfig/ui/qrcodegen.ui:184
msgctxt "type"
-msgid "The type which is to be generated."
+msgid "The type of code to generate."
msgstr ""
-#. i2kkj
+#. 8QtFq
#. Error Correction Level of QR code
#: cui/uiconfig/ui/qrcodegen.ui:205
msgctxt "qrcodegen|label_ecc"
-msgid "Error Correction:"
+msgid "Error correction:"
msgstr ""
-#. FvtZ3
+#. SPWn3
#: cui/uiconfig/ui/qrcodegen.ui:237
msgctxt "edit margin"
-msgid "The margin surrounding the QR code."
+msgid "The margin surrounding the code."
msgstr ""
#. vUJPT
@@ -18959,10 +18959,10 @@ msgctxt "qrcodegen|QR Code Properties"
msgid "Options"
msgstr ""
-#. fj4HR
+#. bAZcM
#: cui/uiconfig/ui/qrcodegen.ui:384
msgctxt "qr code dialog title"
-msgid "Generate QR Code for any text or URL."
+msgid "Generate linear and matrix codes for any text or URL."
msgstr ""
#. 3HNDZ
diff --git a/source/ml/filter/source/config/fragments/filters.po b/source/ml/filter/source/config/fragments/filters.po
index bace6be61e9..318a4e803a1 100644
--- a/source/ml/filter/source/config/fragments/filters.po
+++ b/source/ml/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-12-20 13:20+0100\n"
"PO-Revision-Date: 2018-07-01 22:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -853,15 +853,15 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "പിജിഎം - പോര്‍ട്ടബിള്‍ ഗ്രേമാപ്പ്"
-#. bJsBt
+#. bF74G
#: PNG___Portable_Network_Graphic.xcu
msgctxt ""
"PNG___Portable_Network_Graphic.xcu\n"
"PNG - Portable Network Graphic\n"
"UIName\n"
"value.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "പിഎന്‍ജി - പോര്‍ട്ടബിള്‍ നെറ്റ്‌വര്‍ക്ക് ഗ്രാഫിക്"
+msgid "PNG - Portable Network Graphics"
+msgstr ""
#. WKEx6
#: PPM___Portable_Pixelmap.xcu
@@ -1519,15 +1519,15 @@ msgctxt ""
msgid "PDF - Portable Document Format"
msgstr ""
-#. kDAGE
+#. idstQ
#: calc_png_Export.xcu
msgctxt ""
"calc_png_Export.xcu\n"
"calc_png_Export\n"
"UIName\n"
"value.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "പിഎന്‍ജി - പോര്‍ട്ടബിള്‍ നെറ്റ്‌വര്‍ക്ക് ഗ്രാഫിക്"
+msgid "PNG - Portable Network Graphics"
+msgstr ""
#. 8CFN6
#: calc_svg_Export.xcu
@@ -1691,15 +1691,15 @@ msgctxt ""
msgid "PDF - Portable Document Format"
msgstr ""
-#. kGf8r
+#. AGsrX
#: draw_png_Export.xcu
msgctxt ""
"draw_png_Export.xcu\n"
"draw_png_Export\n"
"UIName\n"
"value.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "പിഎന്‍ജി - പോര്‍ട്ടബിള്‍ നെറ്റ്‌വര്‍ക്ക് ഗ്രാഫിക്"
+msgid "PNG - Portable Network Graphics"
+msgstr ""
#. 89aEb
#: draw_svg_Export.xcu
@@ -1927,15 +1927,15 @@ msgctxt ""
msgid "PDF - Portable Document Format"
msgstr ""
-#. qAGBv
+#. QzDEJ
#: impress_png_Export.xcu
msgctxt ""
"impress_png_Export.xcu\n"
"impress_png_Export\n"
"UIName\n"
"value.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "പിഎന്‍ജി - പോര്‍ട്ടബിള്‍ നെറ്റ്‌വര്‍ക്ക് ഗ്രാഫിക്"
+msgid "PNG - Portable Network Graphics"
+msgstr ""
#. cEbFG
#: impress_svg_Export.xcu
@@ -2109,15 +2109,15 @@ msgctxt ""
msgid "PDF - Portable Document Format"
msgstr ""
-#. 7D7eJ
+#. EqCyW
#: writer_png_Export.xcu
msgctxt ""
"writer_png_Export.xcu\n"
"writer_png_Export\n"
"UIName\n"
"value.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "പിഎന്‍ജി - പോര്‍ട്ടബിള്‍ നെറ്റ്‌വര്‍ക്ക് ഗ്രാഫിക്"
+msgid "PNG - Portable Network Graphics"
+msgstr ""
#. Douv2
#: writer_svg_Export.xcu
@@ -2181,15 +2181,15 @@ msgctxt ""
msgid "PDF - Portable Document Format"
msgstr ""
-#. ANzkT
+#. Azv7E
#: writer_web_png_Export.xcu
msgctxt ""
"writer_web_png_Export.xcu\n"
"writer_web_png_Export\n"
"UIName\n"
"value.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "പിഎന്‍ജി - പോര്‍ട്ടബിള്‍ നെറ്റ്‌വര്‍ക്ക് ഗ്രാഫിക്"
+msgid "PNG - Portable Network Graphics"
+msgstr ""
#. iRPFB
#: writerglobal8.xcu
diff --git a/source/ml/filter/source/config/fragments/internalgraphicfilters.po b/source/ml/filter/source/config/fragments/internalgraphicfilters.po
index 825083af118..93b25c36884 100644
--- a/source/ml/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/ml/filter/source/config/fragments/internalgraphicfilters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2021-12-20 13:20+0100\n"
"PO-Revision-Date: 2016-12-23 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -236,25 +236,25 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr "പിജിഎം - പോര്‍ട്ടബിള്‍ ഗ്രേമാപ്പ്"
-#. CGCGC
+#. FtojH
#: png_Export.xcu
msgctxt ""
"png_Export.xcu\n"
"png_Export\n"
"UIName\n"
"value.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "പിഎന്‍ജി - പോര്‍ട്ടബിള്‍ നെറ്റ്‌വര്‍ക്ക് ഗ്രാഫിക്"
+msgid "PNG - Portable Network Graphics"
+msgstr ""
-#. mGBEL
+#. 9C3pW
#: png_Import.xcu
msgctxt ""
"png_Import.xcu\n"
"png_Import\n"
"UIName\n"
"value.text"
-msgid "PNG - Portable Network Graphic"
-msgstr "പിഎന്‍ജി - പോര്‍ട്ടബിള്‍ നെറ്റ്‌വര്‍ക്ക് ഗ്രാഫിക്"
+msgid "PNG - Portable Network Graphics"
+msgstr ""
#. CCFfq
#: ppm_Import.xcu
diff --git a/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po
index cb6cf73e1d0..ef72af207ab 100644
--- a/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po