/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef FORMS_COMPONENT_FILTER_HXX #define FORMS_COMPONENT_FILTER_HXX #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //......................................................................... namespace frm { //......................................................................... //===================================================================== // OFilterControl //===================================================================== typedef ::cppu::ImplHelper5 < ::com::sun::star::awt::XTextComponent , ::com::sun::star::awt::XFocusListener , ::com::sun::star::awt::XItemListener , ::com::sun::star::form::XBoundComponent , ::com::sun::star::lang::XInitialization > OFilterControl_BASE; class OFilterControl :public UnoControl ,public OFilterControl_BASE ,public ::svxform::OParseContextClient { TextListenerMultiplexer m_aTextListeners; ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xField; ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatter > m_xFormatter; ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection > m_xConnection; ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData > m_xMetaData; ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > m_xMessageParent; typedef ::boost::unordered_map< ::rtl::OUString, ::rtl::OUString, ::rtl::OUStringHash > MapString2String; MapString2String m_aDisplayItemToValueItem; ::rtl::OUString m_aText; ::connectivity::OSQLParser m_aParser; sal_Int16 m_nControlClass; // which kind of control do we use? sal_Bool m_bFilterList : 1; sal_Bool m_bMultiLine : 1; sal_Bool m_bFilterListFilled : 1; private: // OFilterControl(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB); void implInitFilterList(); public: OFilterControl( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB ); DECLARE_UNO3_AGG_DEFAULTS(OFilterControl,OWeakAggObject); ::com::sun::star::uno::Any SAL_CALL queryAggregation( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException); virtual ::rtl::OUString GetComponentServiceName(); virtual void SAL_CALL createPeer( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XToolkit > & rxToolkit, const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > & rParentPeer ) throw( ::com::sun::star::uno::RuntimeException ); // ::com::sun::star::lang::XComponent virtual void SAL_CALL dispose(void) throw( ::com::sun::star::uno::RuntimeException ); // ::com::sun::star::awt::XTextComponent virtual void SAL_CALL addTextListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XTextListener > & l ) throw( ::com::sun::star::uno::RuntimeException ); virtual void SAL_CALL removeTextListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XTextListener > & l ) throw( ::com::sun::star::uno::RuntimeException ); virtual void SAL_CALL setText( const ::rtl::OUString& aText ) throw( ::com::sun::star::uno::RuntimeException ); virtual void SAL_CALL insertText( const ::com::sun::star::awt::Selection& rSel, const ::rtl::OUString& aText ) throw( ::com::sun::star::uno::RuntimeException ); virtual ::rtl::OUString SAL_CALL getText() throw( ::com::sun::star::uno::RuntimeException ); virtual ::rtl::OUString SAL_CALL getSelectedText() throw( ::com::sun::star::uno::RuntimeException ); virtual void SAL_CALL setSelection( const ::com::sun::star::awt::Selection& aSelection ) throw( ::com::sun::star::uno::RuntimeException ); virtual ::com::sun::star::awt::Selection SAL_CALL getSelection() throw( ::com::sun::star::uno::RuntimeException ); virtual sal_Bool SAL_CALL isEditable() throw( ::com::sun::star::uno::RuntimeException ); virtual void SAL_CALL setEditable( sal_Bool bEditable ) throw( ::com::sun::star::uno::RuntimeException ); virtual void SAL_CALL setMaxTextLen( sal_Int16 nLength ) throw( ::com::sun::star::uno::RuntimeException ); virtual sal_Int16 SAL_CALL getMaxTextLen() throw( ::com::sun::star::uno::RuntimeException ); // ::com::sun::star::form::XBoundComponent virtual void SAL_CALL addUpdateListener(const ::com::sun::star::uno::Reference< ::com::sun::star::form::XUpdateListener > & /*l*/) throw( ::com::sun::star::uno::RuntimeException ) {} virtual void SAL_CALL removeUpdateListener(const ::com::sun::star::uno::Reference< ::com::sun::star::form::XUpdateListener > & /*l*/) throw( ::com::sun::star::uno::RuntimeException ) {} virtual sal_Bool SAL_CALL commit() throw( ::com::sun::star::uno::RuntimeException ); // ::com::sun::star::lang::XEventListener virtual void SAL_CALL disposing(const ::com::sun::star::lang::EventObject& Source) throw( ::com::sun::star::uno::RuntimeException ); // ::com::sun::star::awt::XFocusListener virtual void SAL_CALL focusGained(const ::com::sun::star::awt::FocusEvent& e) throw( ::com::sun::star::uno::RuntimeException ); virtual void SAL_CALL focusLost(const ::com::sun::star::awt::FocusEvent& e) throw( ::com::sun::star::uno::RuntimeException ); // ::com::sun::star::awt::XItemListener virtual void SAL_CALL itemStateChanged(const ::com::sun::star::awt::ItemEvent& rEvent) throw( ::com::sun::star::uno::RuntimeException ); // ::com::sun::star::util::XInitialization virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException); // XServiceInfo virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException); virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException); // com::sun::star::lang::XServiceInfo - static version static ::rtl::OUString SAL_CALL getImplementationName_Static(); static ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames_Static(); static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL Create( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxFactory ); protected: virtual void PrepareWindowDescriptor( ::com::sun::star::awt::WindowDescriptor& rDesc ); virtual void ImplSetPeerProperty( const ::rtl::OUString& rPropName, const ::com::sun::star::uno::Any& rVal ); sal_Bool ensureInitialized( ); void displayException( const ::com::sun::star::sdb::SQLContext& _rExcept ); }; //......................................................................... } // namespace frm //......................................................................... #endif // FORMS_COMPONENT_FILTER_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ 0-5'>libreoffice-5-0-5 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2013-01-06 17:18:06 +0100
committerAndras Timar <atimar@suse.com>2013-01-06 17:39:09 +0100
commite5f69f7b241f21f0b85f7a62ccff9de841875828 (patch)
treecaba82c98457334388051db4485d3c9d8834fd07
parentc6cfd71c3d302bdb0999888f9c867d70acb40708 (diff)
update translations for LibreOffice 4.0 rc1
Change-Id: I85ba7031ebee3b3b0108218e97093fab1e9d84a3
-rw-r--r--source/af/accessibility/source/helper.po2
-rw-r--r--source/af/android/sdremote/res/values.po2
-rw-r--r--source/af/avmedia/source/framework.po2
-rw-r--r--source/af/avmedia/source/viewer.po2
-rw-r--r--source/af/basctl/source/basicide.po2
-rw-r--r--source/af/basctl/source/dlged.po2
-rw-r--r--source/af/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/af/basic/source/classes.po2
-rw-r--r--source/af/basic/source/sbx.po2
-rw-r--r--source/af/chart2/source/controller/dialogs.po2
-rw-r--r--source/af/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/connectivity/source/resource.po2
-rw-r--r--source/af/cui/source/customize.po2
-rw-r--r--source/af/cui/source/dialogs.po2
-rw-r--r--source/af/cui/source/options.po2
-rw-r--r--source/af/cui/source/tabpages.po2
-rw-r--r--source/af/cui/uiconfig/ui.po2
-rw-r--r--source/af/dbaccess/source/core/resource.po2
-rw-r--r--source/af/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/af/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/af/dbaccess/source/ui/app.po2
-rw-r--r--source/af/dbaccess/source/ui/browser.po2
-rw-r--r--source/af/dbaccess/source/ui/control.po2
-rw-r--r--source/af/dbaccess/source/ui/dlg.po2
-rw-r--r--source/af/dbaccess/source/ui/inc.po2
-rw-r--r--source/af/dbaccess/source/ui/misc.po2
-rw-r--r--source/af/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/af/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/af/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/af/dbaccess/source/ui/uno.po2
-rw-r--r--source/af/desktop/source/app.po2
-rw-r--r--source/af/desktop/source/deployment/gui.po2
-rw-r--r--source/af/desktop/source/deployment/manager.po2
-rw-r--r--source/af/desktop/source/deployment/misc.po2
-rw-r--r--source/af/desktop/source/deployment/registry.po2
-rw-r--r--source/af/desktop/source/deployment/registry/component.po2
-rw-r--r--source/af/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/af/desktop/source/deployment/registry/help.po2
-rw-r--r--source/af/desktop/source/deployment/registry/package.po2
-rw-r--r--source/af/desktop/source/deployment/registry/script.po2
-rw-r--r--source/af/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/af/desktop/source/deployment/unopkg.po2
-rw-r--r--source/af/desktop/uiconfig/ui.po2
-rw-r--r--source/af/dictionaries/af_ZA.po2
-rw-r--r--source/af/dictionaries/an_ES.po2
-rw-r--r--source/af/dictionaries/ar.po2
-rw-r--r--source/af/dictionaries/be_BY.po2
-rw-r--r--source/af/dictionaries/bg_BG.po2
-rw-r--r--source/af/dictionaries/bn_BD.po2
-rw-r--r--source/af/dictionaries/br_FR.po2
-rw-r--r--source/af/dictionaries/ca.po2
-rw-r--r--source/af/dictionaries/cs_CZ.po2
-rw-r--r--source/af/dictionaries/da_DK.po2
-rw-r--r--source/af/dictionaries/de.po2
-rw-r--r--source/af/dictionaries/el_GR.po2
-rw-r--r--source/af/dictionaries/en.po2
-rw-r--r--source/af/dictionaries/en/dialog.po2
-rw-r--r--source/af/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/af/dictionaries/es.po2
-rw-r--r--source/af/dictionaries/et_EE.po2
-rw-r--r--source/af/dictionaries/fr_FR.po2
-rw-r--r--source/af/dictionaries/gd_GB.po2
-rw-r--r--source/af/dictionaries/gl.po2
-rw-r--r--source/af/dictionaries/gu_IN.po2
-rw-r--r--source/af/dictionaries/he_IL.po2
-rw-r--r--source/af/dictionaries/hi_IN.po2
-rw-r--r--source/af/dictionaries/hr_HR.po2
-rw-r--r--source/af/dictionaries/hu_HU.po2
-rw-r--r--source/af/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/af/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/af/dictionaries/it_IT.po2
-rw-r--r--source/af/dictionaries/ku_TR.po2
-rw-r--r--source/af/dictionaries/lt_LT.po2
-rw-r--r--source/af/dictionaries/lv_LV.po2
-rw-r--r--source/af/dictionaries/ne_NP.po2
-rw-r--r--source/af/dictionaries/nl_NL.po2
-rw-r--r--source/af/dictionaries/no.po2
-rw-r--r--source/af/dictionaries/oc_FR.po2
-rw-r--r--source/af/dictionaries/pl_PL.po2
-rw-r--r--source/af/dictionaries/pt_BR.po2
-rw-r--r--source/af/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/af/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/af/dictionaries/pt_PT.po2
-rw-r--r--source/af/dictionaries/ro.po2
-rw-r--r--source/af/dictionaries/ru_RU.po2
-rw-r--r--source/af/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/af/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/af/dictionaries/si_LK.po2
-rw-r--r--source/af/dictionaries/sk_SK.po2
-rw-r--r--source/af/dictionaries/sl_SI.po2
-rw-r--r--source/af/dictionaries/sr.po2
-rw-r--r--source/af/dictionaries/sv_SE.po2
-rw-r--r--source/af/dictionaries/sw_TZ.po2
-rw-r--r--source/af/dictionaries/te_IN.po2
-rw-r--r--source/af/dictionaries/th_TH.po2
-rw-r--r--source/af/dictionaries/uk_UA.po2
-rw-r--r--source/af/dictionaries/vi.po2
-rw-r--r--source/af/dictionaries/zu_ZA.po2
-rw-r--r--source/af/editeng/source/accessibility.po2
-rw-r--r--source/af/editeng/source/editeng.po2
-rw-r--r--source/af/editeng/source/items.po2
-rw-r--r--source/af/editeng/source/misc.po2
-rw-r--r--source/af/editeng/source/outliner.po2
-rw-r--r--source/af/extensions/source/abpilot.po2
-rw-r--r--source/af/extensions/source/bibliography.po2
-rw-r--r--source/af/extensions/source/dbpilots.po2
-rw-r--r--source/af/extensions/source/propctrlr.po2
-rw-r--r--source/af/extensions/source/scanner.po2
-rw-r--r--source/af/extensions/source/update/check.po2
-rw-r--r--source/af/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/af/filter/source/config/fragments/filters.po2
-rw-r--r--source/af/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/af/filter/source/config/fragments/types.po2
-rw-r--r--source/af/filter/source/flash.po2
-rw-r--r--source/af/filter/source/graphicfilter/eps.po2
-rw-r--r--source/af/filter/source/pdf.po2
-rw-r--r--source/af/filter/source/t602.po2
-rw-r--r--source/af/filter/source/xsltdialog.po2
-rw-r--r--source/af/filter/uiconfig/ui.po2
-rw-r--r--source/af/forms/source/resource.po2
-rw-r--r--source/af/formula/source/core/resource.po38
-rw-r--r--source/af/formula/source/ui/dlg.po2
-rw-r--r--source/af/fpicker/source/office.po2
-rw-r--r--source/af/framework/source/classes.po2
-rw-r--r--source/af/framework/source/services.po2
-rw-r--r--source/af/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/af/librelogo/source/pythonpath.po2
-rw-r--r--source/af/mysqlc/source.po2
-rw-r--r--source/af/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/af/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/af/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/af/nlpsolver/src/locale.po2
-rw-r--r--source/af/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/af/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/af/padmin/source.po2
-rw-r--r--source/af/readlicense_oo/docs.po2
-rw-r--r--source/af/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/af/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/af/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/af/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/af/reportbuilder/util.po2
-rw-r--r--source/af/reportdesign/source/core/resource.po2
-rw-r--r--source/af/reportdesign/source/ui/dlg.po2
-rw-r--r--source/af/reportdesign/source/ui/inspection.po2
-rw-r--r--source/af/reportdesign/source/ui/report.po2
-rw-r--r--source/af/sc/source/core/src.po2
-rw-r--r--source/af/sc/source/ui/cctrl.po2
-rw-r--r--source/af/sc/source/ui/dbgui.po2
-rw-r--r--source/af/sc/source/ui/docshell.po2
-rw-r--r--source/af/sc/source/ui/drawfunc.po2
-rw-r--r--source/af/sc/source/ui/formdlg.po2
-rw-r--r--source/af/sc/source/ui/miscdlgs.po2
-rw-r--r--source/af/sc/source/ui/navipi.po2
-rw-r--r--source/af/sc/source/ui/optdlg.po2
-rw-r--r--source/af/sc/source/ui/pagedlg.po2
-rw-r--r--source/af/sc/source/ui/src.po381
-rw-r--r--source/af/sc/source/ui/styleui.po2
-rw-r--r--source/af/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/af/scaddins/source/analysis.po2
-rw-r--r--source/af/scaddins/source/datefunc.po2
-rw-r--r--source/af/scaddins/source/pricing.po2
-rw-r--r--source/af/sccomp/source/solver.po2
-rw-r--r--source/af/scp2/source/accessories.po2
-rw-r--r--source/af/scp2/source/activex.po2
-rw-r--r--source/af/scp2/source/base.po2
-rw-r--r--source/af/scp2/source/calc.po2
-rw-r--r--source/af/scp2/source/draw.po2
-rw-r--r--source/af/scp2/source/extensions.po2
-rw-r--r--source/af/scp2/source/gnome.po2
-rw-r--r--source/af/scp2/source/graphicfilter.po2
-rw-r--r--source/af/scp2/source/impress.po2
-rw-r--r--source/af/scp2/source/javafilter.po2
-rw-r--r--source/af/scp2/source/kde.po2
-rw-r--r--source/af/scp2/source/math.po2
-rw-r--r--source/af/scp2/source/onlineupdate.po2
-rw-r--r--source/af/scp2/source/ooo.po2
-rw-r--r--source/af/scp2/source/python.po18
-rw-r--r--source/af/scp2/source/quickstart.po2
-rw-r--r--source/af/scp2/source/sdkoo.po2
-rw-r--r--source/af/scp2/source/smoketest.po2
-rw-r--r--source/af/scp2/source/stdlibs.po2
-rw-r--r--source/af/scp2/source/tde.po2
-rw-r--r--source/af/scp2/source/winexplorerext.po2
-rw-r--r--source/af/scp2/source/writer.po2
-rw-r--r--source/af/scp2/source/xsltfilter.po2
-rw-r--r--source/af/sd/source/core.po2
-rw-r--r--source/af/sd/source/filter/html.po2
-rw-r--r--source/af/sd/source/ui/accessibility.po2
-rw-r--r--source/af/sd/source/ui/animations.po2
-rw-r--r--source/af/sd/source/ui/annotations.po2
-rw-r--r--source/af/sd/source/ui/app.po2
-rw-r--r--source/af/sd/source/ui/dlg.po2
-rw-r--r--source/af/sd/source/ui/slideshow.po2
-rw-r--r--source/af/sd/source/ui/table.po2
-rw-r--r--source/af/sd/source/ui/view.po2
-rw-r--r--source/af/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/af/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/af/sdext/source/minimizer.po2
-rw-r--r--source/af/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/af/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/af/setup_native/source/mac.po2
-rw-r--r--source/af/sfx2/source/appl.po2
-rw-r--r--source/af/sfx2/source/bastyp.po2
-rw-r--r--source/af/sfx2/source/control.po23
-rw-r--r--source/af/sfx2/source/dialog.po46
-rw-r--r--source/af/sfx2/source/doc.po126
-rw-r--r--source/af/sfx2/source/menu.po2
-rw-r--r--source/af/sfx2/source/view.po2
-rw-r--r--source/af/sfx2/uiconfig/ui.po2
-rw-r--r--source/af/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/af/starmath/source.po2
-rw-r--r--source/af/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/af/svl/source/items.po2
-rw-r--r--source/af/svl/source/misc.po2
-rw-r--r--source/af/svtools/source/contnr.po2
-rw-r--r--source/af/svtools/source/control.po2
-rw-r--r--source/af/svtools/source/dialogs.po2
-rw-r--r--source/af/svtools/source/java.po2
-rw-r--r--source/af/svtools/source/misc.po2
-rw-r--r--source/af/svtools/source/toolpanel.po2
-rw-r--r--source/af/svtools/uiconfig/ui.po55
-rw-r--r--source/af/svx/inc.po2
-rw-r--r--source/af/svx/source/accessibility.po2
-rw-r--r--source/af/svx/source/core.po2
-rw-r--r--source/af/svx/source/dialog.po223
-rw-r--r--source/af/svx/source/engine3d.po2
-rw-r--r--source/af/svx/source/fmcomp.po2
-rw-r--r--source/af/svx/source/form.po2
-rw-r--r--source/af/svx/source/gallery2.po2
-rw-r--r--source/af/svx/source/items.po2
-rw-r--r--source/af/svx/source/src.po2
-rw-r--r--source/af/svx/source/stbctrls.po2
-rw-r--r--source/af/svx/source/svdraw.po2
-rw-r--r--source/af/svx/source/table.po2
-rw-r--r--source/af/svx/source/tbxctrls.po2
-rw-r--r--source/af/svx/source/toolbars.po2
-rw-r--r--source/af/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/af/svx/uiconfig/ui.po204
-rw-r--r--source/af/sw/source/core/layout.po2
-rw-r--r--source/af/sw/source/core/undo.po2
-rw-r--r--source/af/sw/source/core/unocore.po2
-rw-r--r--source/af/sw/source/ui/app.po2
-rw-r--r--source/af/sw/source/ui/chrdlg.po2
-rw-r--r--source/af/sw/source/ui/config.po2
-rw-r--r--source/af/sw/source/ui/dbui.po2
-rw-r--r--source/af/sw/source/ui/dialog.po2
-rw-r--r--source/af/sw/source/ui/dochdl.po2
-rw-r--r--source/af/sw/source/ui/docvw.po2
-rw-r--r--source/af/sw/source/ui/envelp.po2
-rw-r--r--source/af/sw/source/ui/fldui.po2
-rw-r--r--source/af/sw/source/ui/fmtui.po2
-rw-r--r--source/af/sw/source/ui/frmdlg.po2
-rw-r--r--source/af/sw/source/ui/globdoc.po2
-rw-r--r--source/af/sw/source/ui/index.po2
-rw-r--r--source/af/sw/source/ui/lingu.po2
-rw-r--r--source/af/sw/source/ui/misc.po2
-rw-r--r--source/af/sw/source/ui/ribbar.po2
-rw-r--r--source/af/sw/source/ui/shells.po2
-rw-r--r--source/af/sw/source/ui/smartmenu.po2
-rw-r--r--source/af/sw/source/ui/table.po2
-rw-r--r--source/af/sw/source/ui/uiview.po2
-rw-r--r--source/af/sw/source/ui/utlui.po2
-rw-r--r--source/af/sw/source/ui/web.po2
-rw-r--r--source/af/sw/source/ui/wrtsh.po2
-rw-r--r--source/af/sw/uiconfig/sw/ui.po285
-rw-r--r--source/af/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/af/swext/mediawiki/help.po2
-rw-r--r--source/af/swext/mediawiki/src.po2
-rw-r--r--source/af/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/af/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/af/sysui/desktop/share.po2
-rw-r--r--source/af/tubes/uiconfig/ui.po2
-rw-r--r--source/af/uui/source.po2
-rw-r--r--source/af/vcl/qa/cppunit/builder.po2
-rw-r--r--source/af/vcl/source/edit.po2
-rw-r--r--source/af/vcl/source/src.po2
-rw-r--r--source/af/vcl/uiconfig/ui.po2
-rw-r--r--source/af/wizards/source/euro.po2
-rw-r--r--source/af/wizards/source/formwizard.po2
-rw-r--r--source/af/wizards/source/importwizard.po2
-rw-r--r--source/af/wizards/source/template.po2
-rw-r--r--source/af/xmlsecurity/source/component.po2
-rw-r--r--source/af/xmlsecurity/source/dialogs.po2
-rw-r--r--source/am/accessibility/source/helper.po2
-rw-r--r--source/am/android/sdremote/res/values.po91
-rw-r--r--source/am/avmedia/source/framework.po2
-rw-r--r--source/am/avmedia/source/viewer.po2
-rw-r--r--source/am/basctl/source/basicide.po2
-rw-r--r--source/am/basctl/source/dlged.po2
-rw-r--r--source/am/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/am/basic/source/classes.po2
-rw-r--r--source/am/basic/source/sbx.po2
-rw-r--r--source/am/chart2/source/controller/dialogs.po2
-rw-r--r--source/am/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/connectivity/source/resource.po2
-rw-r--r--source/am/cui/source/customize.po2
-rw-r--r--source/am/cui/source/dialogs.po2
-rw-r--r--source/am/cui/source/options.po18
-rw-r--r--source/am/cui/source/tabpages.po2
-rw-r--r--source/am/cui/uiconfig/ui.po26
-rw-r--r--source/am/dbaccess/source/core/resource.po2
-rw-r--r--source/am/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/am/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/am/dbaccess/source/ui/app.po2
-rw-r--r--source/am/dbaccess/source/ui/browser.po2
-rw-r--r--source/am/dbaccess/source/ui/control.po2
-rw-r--r--source/am/dbaccess/source/ui/dlg.po2
-rw-r--r--source/am/dbaccess/source/ui/inc.po2
-rw-r--r--source/am/dbaccess/source/ui/misc.po2
-rw-r--r--source/am/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/am/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/am/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/am/dbaccess/source/ui/uno.po2
-rw-r--r--source/am/desktop/source/app.po2
-rw-r--r--source/am/desktop/source/deployment/gui.po2
-rw-r--r--source/am/desktop/source/deployment/manager.po2
-rw-r--r--source/am/desktop/source/deployment/misc.po2
-rw-r--r--source/am/desktop/source/deployment/registry.po2
-rw-r--r--source/am/desktop/source/deployment/registry/component.po2
-rw-r--r--source/am/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/am/desktop/source/deployment/registry/help.po2
-rw-r--r--source/am/desktop/source/deployment/registry/package.po2
-rw-r--r--source/am/desktop/source/deployment/registry/script.po2
-rw-r--r--source/am/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/am/desktop/source/deployment/unopkg.po2
-rw-r--r--source/am/desktop/uiconfig/ui.po2
-rw-r--r--source/am/dictionaries/af_ZA.po2
-rw-r--r--source/am/dictionaries/an_ES.po2
-rw-r--r--source/am/dictionaries/ar.po2
-rw-r--r--source/am/dictionaries/be_BY.po2
-rw-r--r--source/am/dictionaries/bg_BG.po2
-rw-r--r--source/am/dictionaries/bn_BD.po2
-rw-r--r--source/am/dictionaries/br_FR.po2
-rw-r--r--source/am/dictionaries/ca.po2
-rw-r--r--source/am/dictionaries/cs_CZ.po2
-rw-r--r--source/am/dictionaries/da_DK.po2
-rw-r--r--source/am/dictionaries/de.po2
-rw-r--r--source/am/dictionaries/el_GR.po2
-rw-r--r--source/am/dictionaries/en.po2
-rw-r--r--source/am/dictionaries/en/dialog.po2
-rw-r--r--source/am/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/am/dictionaries/es.po2
-rw-r--r--source/am/dictionaries/et_EE.po2
-rw-r--r--source/am/dictionaries/fr_FR.po2
-rw-r--r--source/am/dictionaries/gd_GB.po2
-rw-r--r--source/am/dictionaries/gl.po2
-rw-r--r--source/am/dictionaries/gu_IN.po2
-rw-r--r--source/am/dictionaries/he_IL.po2
-rw-r--r--source/am/dictionaries/hi_IN.po2
-rw-r--r--source/am/dictionaries/hr_HR.po2
-rw-r--r--source/am/dictionaries/hu_HU.po2
-rw-r--r--source/am/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/am/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/am/dictionaries/it_IT.po2
-rw-r--r--source/am/dictionaries/ku_TR.po2
-rw-r--r--source/am/dictionaries/lt_LT.po2
-rw-r--r--source/am/dictionaries/lv_LV.po2
-rw-r--r--source/am/dictionaries/ne_NP.po2
-rw-r--r--source/am/dictionaries/nl_NL.po2
-rw-r--r--source/am/dictionaries/no.po2
-rw-r--r--source/am/dictionaries/oc_FR.po2
-rw-r--r--source/am/dictionaries/pl_PL.po2
-rw-r--r--source/am/dictionaries/pt_BR.po12
-rw-r--r--source/am/dictionaries/pt_BR/dialog.po34
-rw-r--r--source/am/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po8
-rw-r--r--source/am/dictionaries/pt_PT.po2
-rw-r--r--source/am/dictionaries/ro.po2
-rw-r--r--source/am/dictionaries/ru_RU.po2
-rw-r--r--source/am/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/am/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/am/dictionaries/si_LK.po2
-rw-r--r--source/am/dictionaries/sk_SK.po2
-rw-r--r--source/am/dictionaries/sl_SI.po2
-rw-r--r--source/am/dictionaries/sr.po2
-rw-r--r--source/am/dictionaries/sv_SE.po2
-rw-r--r--source/am/dictionaries/sw_TZ.po2
-rw-r--r--source/am/dictionaries/te_IN.po2
-rw-r--r--source/am/dictionaries/th_TH.po2
-rw-r--r--source/am/dictionaries/uk_UA.po2
-rw-r--r--source/am/dictionaries/vi.po2
-rw-r--r--source/am/dictionaries/zu_ZA.po2
-rw-r--r--source/am/editeng/source/accessibility.po2
-rw-r--r--source/am/editeng/source/editeng.po2
-rw-r--r--source/am/editeng/source/items.po2
-rw-r--r--source/am/editeng/source/misc.po2
-rw-r--r--source/am/editeng/source/outliner.po2
-rw-r--r--source/am/extensions/source/abpilot.po2
-rw-r--r--source/am/extensions/source/bibliography.po2
-rw-r--r--source/am/extensions/source/dbpilots.po2
-rw-r--r--source/am/extensions/source/propctrlr.po2
-rw-r--r--source/am/extensions/source/scanner.po2
-rw-r--r--source/am/extensions/source/update/check.po2
-rw-r--r--source/am/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/am/filter/source/config/fragments/filters.po2
-rw-r--r--source/am/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/am/filter/source/config/fragments/types.po2
-rw-r--r--source/am/filter/source/flash.po2
-rw-r--r--source/am/filter/source/graphicfilter/eps.po2
-rw-r--r--source/am/filter/source/pdf.po2
-rw-r--r--source/am/filter/source/t602.po2
-rw-r--r--source/am/filter/source/xsltdialog.po2
-rw-r--r--source/am/filter/uiconfig/ui.po4
-rw-r--r--source/am/forms/source/resource.po2
-rw-r--r--source/am/formula/source/core/resource.po44
-rw-r--r--source/am/formula/source/ui/dlg.po2
-rw-r--r--source/am/fpicker/source/office.po2
-rw-r--r--source/am/framework/source/classes.po2
-rw-r--r--source/am/framework/source/services.po2
-rw-r--r--source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/am/librelogo/source/pythonpath.po159
-rw-r--r--source/am/mysqlc/source.po2
-rw-r--r--source/am/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po12
-rw-r--r--source/am/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/am/nlpsolver/src/locale.po2
-rw-r--r--source/am/officecfg/registry/data/org/openoffice/Office.po70
-rw-r--r--source/am/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/am/padmin/source.po4
-rw-r--r--source/am/readlicense_oo/docs.po2
-rw-r--r--source/am/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/am/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/am/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/am/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/am/reportbuilder/util.po2
-rw-r--r--source/am/reportdesign/source/core/resource.po2
-rw-r--r--source/am/reportdesign/source/ui/dlg.po2
-rw-r--r--source/am/reportdesign/source/ui/inspection.po2
-rw-r--r--source/am/reportdesign/source/ui/report.po2
-rw-r--r--source/am/sc/source/core/src.po2
-rw-r--r--source/am/sc/source/ui/cctrl.po2
-rw-r--r--source/am/sc/source/ui/dbgui.po2
-rw-r--r--source/am/sc/source/ui/docshell.po2
-rw-r--r--source/am/sc/source/ui/drawfunc.po2
-rw-r--r--source/am/sc/source/ui/formdlg.po2
-rw-r--r--source/am/sc/source/ui/miscdlgs.po2
-rw-r--r--source/am/sc/source/ui/navipi.po2
-rw-r--r--source/am/sc/source/ui/optdlg.po2
-rw-r--r--source/am/sc/source/ui/pagedlg.po2
-rw-r--r--source/am/sc/source/ui/src.po466
-rw-r--r--source/am/sc/source/ui/styleui.po4
-rw-r--r--source/am/sc/uiconfig/scalc/ui.po38
-rw-r--r--source/am/scaddins/source/analysis.po2
-rw-r--r--source/am/scaddins/source/datefunc.po2
-rw-r--r--source/am/scaddins/source/pricing.po32
-rw-r--r--source/am/sccomp/source/solver.po2
-rw-r--r--source/am/scp2/source/accessories.po2
-rw-r--r--source/am/scp2/source/activex.po2
-rw-r--r--source/am/scp2/source/base.po2
-rw-r--r--source/am/scp2/source/calc.po2
-rw-r--r--source/am/scp2/source/draw.po2
-rw-r--r--source/am/scp2/source/extensions.po2
-rw-r--r--source/am/scp2/source/gnome.po2
-rw-r--r--source/am/scp2/source/graphicfilter.po2
-rw-r--r--source/am/scp2/source/impress.po2
-rw-r--r--source/am/scp2/source/javafilter.po2
-rw-r--r--source/am/scp2/source/kde.po2
-rw-r--r--source/am/scp2/source/math.po2
-rw-r--r--source/am/scp2/source/onlineupdate.po2
-rw-r--r--source/am/scp2/source/ooo.po14
-rw-r--r--source/am/scp2/source/python.po18
-rw-r--r--source/am/scp2/source/quickstart.po2
-rw-r--r--source/am/scp2/source/sdkoo.po2
-rw-r--r--source/am/scp2/source/smoketest.po2
-rw-r--r--source/am/scp2/source/stdlibs.po2
-rw-r--r--source/am/scp2/source/tde.po2
-rw-r--r--source/am/scp2/source/winexplorerext.po2
-rw-r--r--source/am/scp2/source/writer.po2
-rw-r--r--source/am/scp2/source/xsltfilter.po2
-rw-r--r--source/am/sd/source/core.po2
-rw-r--r--source/am/sd/source/filter/html.po2
-rw-r--r--source/am/sd/source/ui/accessibility.po2
-rw-r--r--source/am/sd/source/ui/animations.po2
-rw-r--r--source/am/sd/source/ui/annotations.po2
-rw-r--r--source/am/sd/source/ui/app.po4
-rw-r--r--source/am/sd/source/ui/dlg.po4
-rw-r--r--source/am/sd/source/ui/slideshow.po2
-rw-r--r--source/am/sd/source/ui/table.po2
-rw-r--r--source/am/sd/source/ui/view.po2
-rw-r--r--source/am/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/am/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/am/sdext/source/minimizer.po2
-rw-r--r--source/am/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/am/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/am/setup_native/source/mac.po2
-rw-r--r--source/am/sfx2/source/appl.po2
-rw-r--r--source/am/sfx2/source/bastyp.po2
-rw-r--r--source/am/sfx2/source/control.po25
-rw-r--r--source/am/sfx2/source/dialog.po57
-rw-r--r--source/am/sfx2/source/doc.po168
-rw-r--r--source/am/sfx2/source/menu.po2
-rw-r--r--source/am/sfx2/source/view.po2
-rw-r--r--source/am/sfx2/uiconfig/ui.po10
-rw-r--r--source/am/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/am/starmath/source.po2
-rw-r--r--source/am/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/am/svl/source/items.po2
-rw-r--r--source/am/svl/source/misc.po2
-rw-r--r--source/am/svtools/source/contnr.po2
-rw-r--r--source/am/svtools/source/control.po2
-rw-r--r--source/am/svtools/source/dialogs.po2
-rw-r--r--source/am/svtools/source/java.po2
-rw-r--r--source/am/svtools/source/misc.po4
-rw-r--r--source/am/svtools/source/toolpanel.po2
-rw-r--r--source/am/svtools/uiconfig/ui.po57
-rw-r--r--source/am/svx/inc.po4
-rw-r--r--source/am/svx/source/accessibility.po2
-rw-r--r--source/am/svx/source/core.po2
-rw-r--r--source/am/svx/source/dialog.po231
-rw-r--r--source/am/svx/source/engine3d.po2
-rw-r--r--source/am/svx/source/fmcomp.po2
-rw-r--r--source/am/svx/source/form.po2
-rw-r--r--source/am/svx/source/gallery2.po2
-rw-r--r--source/am/svx/source/items.po2
-rw-r--r--source/am/svx/source/src.po2
-rw-r--r--source/am/svx/source/stbctrls.po2
-rw-r--r--source/am/svx/source/svdraw.po2
-rw-r--r--source/am/svx/source/table.po2
-rw-r--r--source/am/svx/source/tbxctrls.po2
-rw-r--r--source/am/svx/source/toolbars.po2
-rw-r--r--source/am/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/am/svx/uiconfig/ui.po206
-rw-r--r--source/am/sw/source/core/layout.po2
-rw-r--r--source/am/sw/source/core/undo.po2
-rw-r--r--source/am/sw/source/core/unocore.po2
-rw-r--r--source/am/sw/source/ui/app.po4
-rw-r--r--source/am/sw/source/ui/chrdlg.po2
-rw-r--r--source/am/sw/source/ui/config.po2
-rw-r--r--source/am/sw/source/ui/dbui.po2
-rw-r--r--source/am/sw/source/ui/dialog.po2
-rw-r--r--source/am/sw/source/ui/dochdl.po2
-rw-r--r--source/am/sw/source/ui/docvw.po2
-rw-r--r--source/am/sw/source/ui/envelp.po2
-rw-r--r--source/am/sw/source/ui/fldui.po2
-rw-r--r--source/am/sw/source/ui/fmtui.po2
-rw-r--r--source/am/sw/source/ui/frmdlg.po2
-rw-r--r--source/am/sw/source/ui/globdoc.po2
-rw-r--r--source/am/sw/source/ui/index.po2
-rw-r--r--source/am/sw/source/ui/lingu.po2
-rw-r--r--source/am/sw/source/ui/misc.po2
-rw-r--r--source/am/sw/source/ui/ribbar.po2
-rw-r--r--source/am/sw/source/ui/shells.po2
-rw-r--r--source/am/sw/source/ui/smartmenu.po2
-rw-r--r--source/am/sw/source/ui/table.po2
-rw-r--r--source/am/sw/source/ui/uiview.po2
-rw-r--r--source/am/sw/source/ui/utlui.po4
-rw-r--r--source/am/sw/source/ui/web.po2
-rw-r--r--source/am/sw/source/ui/wrtsh.po2
-rw-r--r--source/am/sw/uiconfig/sw/ui.po278
-rw-r--r--source/am/sw/uiconfig/swriter/ui.po64
-rw-r--r--source/am/swext/mediawiki/help.po2
-rw-r--r--source/am/swext/mediawiki/src.po2
-rw-r--r--source/am/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/am/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/am/sysui/desktop/share.po2
-rw-r--r--source/am/tubes/uiconfig/ui.po22
-rw-r--r--source/am/uui/source.po2
-rw-r--r--source/am/vcl/qa/cppunit/builder.po2
-rw-r--r--source/am/vcl/source/edit.po2
-rw-r--r--source/am/vcl/source/src.po2
-rw-r--r--source/am/vcl/uiconfig/ui.po2
-rw-r--r--source/am/wizards/source/euro.po2
-rw-r--r--source/am/wizards/source/formwizard.po2
-rw-r--r--source/am/wizards/source/importwizard.po2
-rw-r--r--source/am/wizards/source/template.po2
-rw-r--r--source/am/xmlsecurity/source/component.po2
-rw-r--r--source/am/xmlsecurity/source/dialogs.po2
-rw-r--r--source/an/accessibility/source/helper.po2
-rw-r--r--source/an/android/sdremote/res/values.po2
-rw-r--r--source/an/avmedia/source/framework.po2
-rw-r--r--source/an/avmedia/source/viewer.po2
-rw-r--r--source/an/basctl/source/basicide.po2
-rw-r--r--source/an/basctl/source/dlged.po2
-rw-r--r--source/an/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/an/basic/source/classes.po2
-rw-r--r--source/an/basic/source/sbx.po2
-rw-r--r--source/an/chart2/source/controller/dialogs.po2
-rw-r--r--source/an/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/connectivity/source/resource.po2
-rw-r--r--source/an/cui/source/customize.po2
-rw-r--r--source/an/cui/source/dialogs.po2
-rw-r--r--source/an/cui/source/options.po2
-rw-r--r--source/an/cui/source/tabpages.po2
-rw-r--r--source/an/cui/uiconfig/ui.po2
-rw-r--r--source/an/dbaccess/source/core/resource.po2
-rw-r--r--source/an/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/an/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/an/dbaccess/source/ui/app.po2
-rw-r--r--source/an/dbaccess/source/ui/browser.po2
-rw-r--r--source/an/dbaccess/source/ui/control.po2
-rw-r--r--source/an/dbaccess/source/ui/dlg.po2
-rw-r--r--source/an/dbaccess/source/ui/inc.po2
-rw-r--r--source/an/dbaccess/source/ui/misc.po2
-rw-r--r--source/an/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/an/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/an/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/an/dbaccess/source/ui/uno.po2
-rw-r--r--source/an/desktop/source/app.po2
-rw-r--r--source/an/desktop/source/deployment/gui.po2
-rw-r--r--source/an/desktop/source/deployment/manager.po2
-rw-r--r--source/an/desktop/source/deployment/misc.po2
-rw-r--r--source/an/desktop/source/deployment/registry.po2
-rw-r--r--source/an/desktop/source/deployment/registry/component.po2
-rw-r--r--source/an/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/an/desktop/source/deployment/registry/help.po2
-rw-r--r--source/an/desktop/source/deployment/registry/package.po2
-rw-r--r--source/an/desktop/source/deployment/registry/script.po2
-rw-r--r--source/an/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/an/desktop/source/deployment/unopkg.po2
-rw-r--r--source/an/desktop/uiconfig/ui.po2
-rw-r--r--source/an/dictionaries/af_ZA.po2
-rw-r--r--source/an/dictionaries/an_ES.po2
-rw-r--r--source/an/dictionaries/ar.po2
-rw-r--r--source/an/dictionaries/be_BY.po2
-rw-r--r--source/an/dictionaries/bg_BG.po2
-rw-r--r--source/an/dictionaries/bn_BD.po2
-rw-r--r--source/an/dictionaries/br_FR.po2
-rw-r--r--source/an/dictionaries/ca.po2
-rw-r--r--source/an/dictionaries/cs_CZ.po2
-rw-r--r--source/an/dictionaries/da_DK.po2
-rw-r--r--source/an/dictionaries/de.po2
-rw-r--r--source/an/dictionaries/el_GR.po2
-rw-r--r--source/an/dictionaries/en.po2
-rw-r--r--source/an/dictionaries/en/dialog.po2
-rw-r--r--source/an/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/an/dictionaries/es.po2
-rw-r--r--source/an/dictionaries/et_EE.po2
-rw-r--r--source/an/dictionaries/fr_FR.po2
-rw-r--r--source/an/dictionaries/gd_GB.po2
-rw-r--r--source/an/dictionaries/gl.po2
-rw-r--r--source/an/dictionaries/gu_IN.po2
-rw-r--r--source/an/dictionaries/he_IL.po2
-rw-r--r--source/an/dictionaries/hi_IN.po2
-rw-r--r--source/an/dictionaries/hr_HR.po2
-rw-r--r--source/an/dictionaries/hu_HU.po2
-rw-r--r--source/an/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/an/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/an/dictionaries/it_IT.po2
-rw-r--r--source/an/dictionaries/ku_TR.po2
-rw-r--r--source/an/dictionaries/lt_LT.po2
-rw-r--r--source/an/dictionaries/lv_LV.po2
-rw-r--r--source/an/dictionaries/ne_NP.po2
-rw-r--r--source/an/dictionaries/nl_NL.po2
-rw-r--r--source/an/dictionaries/no.po2
-rw-r--r--source/an/dictionaries/oc_FR.po2
-rw-r--r--source/an/dictionaries/pl_PL.po2
-rw-r--r--source/an/dictionaries/pt_BR.po2
-rw-r--r--source/an/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/an/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/an/dictionaries/pt_PT.po2
-rw-r--r--source/an/dictionaries/ro.po2
-rw-r--r--source/an/dictionaries/ru_RU.po2
-rw-r--r--source/an/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/an/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/an/dictionaries/si_LK.po2
-rw-r--r--source/an/dictionaries/sk_SK.po2
-rw-r--r--source/an/dictionaries/sl_SI.po2
-rw-r--r--source/an/dictionaries/sr.po2
-rw-r--r--source/an/dictionaries/sv_SE.po2
-rw-r--r--source/an/dictionaries/sw_TZ.po2
-rw-r--r--source/an/dictionaries/te_IN.po2
-rw-r--r--source/an/dictionaries/th_TH.po2
-rw-r--r--source/an/dictionaries/uk_UA.po2
-rw-r--r--source/an/dictionaries/vi.po2
-rw-r--r--source/an/dictionaries/zu_ZA.po2
-rw-r--r--source/an/editeng/source/accessibility.po2
-rw-r--r--source/an/editeng/source/editeng.po2
-rw-r--r--source/an/editeng/source/items.po2
-rw-r--r--source/an/editeng/source/misc.po2
-rw-r--r--source/an/editeng/source/outliner.po2
-rw-r--r--source/an/extensions/source/abpilot.po2
-rw-r--r--source/an/extensions/source/bibliography.po2
-rw-r--r--source/an/extensions/source/dbpilots.po2
-rw-r--r--source/an/extensions/source/propctrlr.po2
-rw-r--r--source/an/extensions/source/scanner.po2
-rw-r--r--source/an/extensions/source/update/check.po2
-rw-r--r--source/an/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/an/filter/source/config/fragments/filters.po2
-rw-r--r--source/an/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/an/filter/source/config/fragments/types.po2
-rw-r--r--source/an/filter/source/flash.po2
-rw-r--r--source/an/filter/source/graphicfilter/eps.po2
-rw-r--r--source/an/filter/source/pdf.po2
-rw-r--r--source/an/filter/source/t602.po2
-rw-r--r--source/an/filter/source/xsltdialog.po2
-rw-r--r--source/an/filter/uiconfig/ui.po2
-rw-r--r--source/an/forms/source/resource.po2
-rw-r--r--source/an/formula/source/core/resource.po38
-rw-r--r--source/an/formula/source/ui/dlg.po2
-rw-r--r--source/an/fpicker/source/office.po2
-rw-r--r--source/an/framework/source/classes.po2
-rw-r--r--source/an/framework/source/services.po2
-rw-r--r--source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/an/librelogo/source/pythonpath.po2
-rw-r--r--source/an/mysqlc/source.po2
-rw-r--r--source/an/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/an/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/an/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/an/nlpsolver/src/locale.po2
-rw-r--r--source/an/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/an/officecfg/registry/data/org/openoffice/Office/UI.po34
-rw-r--r--source/an/padmin/source.po2
-rw-r--r--source/an/readlicense_oo/docs.po2
-rw-r--r--source/an/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/an/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/an/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/an/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/an/reportbuilder/util.po2
-rw-r--r--source/an/reportdesign/source/core/resource.po2
-rw-r--r--source/an/reportdesign/source/ui/dlg.po2
-rw-r--r--source/an/reportdesign/source/ui/inspection.po2
-rw-r--r--source/an/reportdesign/source/ui/report.po2
-rw-r--r--source/an/sc/source/core/src.po2
-rw-r--r--source/an/sc/source/ui/cctrl.po2
-rw-r--r--source/an/sc/source/ui/dbgui.po2
-rw-r--r--source/an/sc/source/ui/docshell.po2
-rw-r--r--source/an/sc/source/ui/drawfunc.po2
-rw-r--r--source/an/sc/source/ui/formdlg.po2
-rw-r--r--source/an/sc/source/ui/miscdlgs.po2
-rw-r--r--source/an/sc/source/ui/navipi.po2
-rw-r--r--source/an/sc/source/ui/optdlg.po2
-rw-r--r--source/an/sc/source/ui/pagedlg.po2
-rw-r--r--source/an/sc/source/ui/src.po383
-rw-r--r--source/an/sc/source/ui/styleui.po2
-rw-r--r--source/an/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/an/scaddins/source/analysis.po2
-rw-r--r--source/an/scaddins/source/datefunc.po2
-rw-r--r--source/an/scaddins/source/pricing.po2
-rw-r--r--source/an/sccomp/source/solver.po2
-rw-r--r--source/an/scp2/source/accessories.po2
-rw-r--r--source/an/scp2/source/activex.po2
-rw-r--r--source/an/scp2/source/base.po2
-rw-r--r--source/an/scp2/source/calc.po2
-rw-r--r--source/an/scp2/source/draw.po2
-rw-r--r--source/an/scp2/source/extensions.po2
-rw-r--r--source/an/scp2/source/gnome.po2
-rw-r--r--source/an/scp2/source/graphicfilter.po2
-rw-r--r--source/an/scp2/source/impress.po2
-rw-r--r--source/an/scp2/source/javafilter.po2
-rw-r--r--source/an/scp2/source/kde.po2
-rw-r--r--source/an/scp2/source/math.po2
-rw-r--r--source/an/scp2/source/onlineupdate.po2
-rw-r--r--source/an/scp2/source/ooo.po2
-rw-r--r--source/an/scp2/source/python.po18
-rw-r--r--source/an/scp2/source/quickstart.po2
-rw-r--r--source/an/scp2/source/sdkoo.po2
-rw-r--r--source/an/scp2/source/smoketest.po2
-rw-r--r--source/an/scp2/source/stdlibs.po2
-rw-r--r--source/an/scp2/source/tde.po2
-rw-r--r--source/an/scp2/source/winexplorerext.po2
-rw-r--r--source/an/scp2/source/writer.po2
-rw-r--r--source/an/scp2/source/xsltfilter.po2
-rw-r--r--source/an/sd/source/core.po2
-rw-r--r--source/an/sd/source/filter/html.po2
-rw-r--r--source/an/sd/source/ui/accessibility.po2
-rw-r--r--source/an/sd/source/ui/animations.po2
-rw-r--r--source/an/sd/source/ui/annotations.po2
-rw-r--r--source/an/sd/source/ui/app.po2
-rw-r--r--source/an/sd/source/ui/dlg.po2
-rw-r--r--source/an/sd/source/ui/slideshow.po2
-rw-r--r--source/an/sd/source/ui/table.po2
-rw-r--r--source/an/sd/source/ui/view.po2
-rw-r--r--source/an/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/an/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/an/sdext/source/minimizer.po2
-rw-r--r--source/an/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/an/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/an/setup_native/source/mac.po2
-rw-r--r--source/an/sfx2/source/appl.po2
-rw-r--r--source/an/sfx2/source/bastyp.po2
-rw-r--r--source/an/sfx2/source/control.po23
-rw-r--r--source/an/sfx2/source/dialog.po46
-rw-r--r--source/an/sfx2/source/doc.po125
-rw-r--r--source/an/sfx2/source/menu.po2
-rw-r--r--source/an/sfx2/source/view.po2
-rw-r--r--source/an/sfx2/uiconfig/ui.po2
-rw-r--r--source/an/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/an/starmath/source.po2
-rw-r--r--source/an/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/an/svl/source/items.po2
-rw-r--r--source/an/svl/source/misc.po2
-rw-r--r--source/an/svtools/source/contnr.po2
-rw-r--r--source/an/svtools/source/control.po2
-rw-r--r--source/an/svtools/source/dialogs.po2
-rw-r--r--source/an/svtools/source/java.po2
-rw-r--r--source/an/svtools/source/misc.po2
-rw-r--r--source/an/svtools/source/toolpanel.po2
-rw-r--r--source/an/svtools/uiconfig/ui.po37
-rw-r--r--source/an/svx/inc.po2
-rw-r--r--source/an/svx/source/accessibility.po2
-rw-r--r--source/an/svx/source/core.po2
-rw-r--r--source/an/svx/source/dialog.po219
-rw-r--r--source/an/svx/source/engine3d.po2
-rw-r--r--source/an/svx/source/fmcomp.po2
-rw-r--r--source/an/svx/source/form.po2
-rw-r--r--source/an/svx/source/gallery2.po2
-rw-r--r--source/an/svx/source/items.po2
-rw-r--r--source/an/svx/source/src.po2
-rw-r--r--source/an/svx/source/stbctrls.po2
-rw-r--r--source/an/svx/source/svdraw.po2
-rw-r--r--source/an/svx/source/table.po2
-rw-r--r--source/an/svx/source/tbxctrls.po2
-rw-r--r--source/an/svx/source/toolbars.po2
-rw-r--r--source/an/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/an/svx/uiconfig/ui.po204
-rw-r--r--source/an/sw/source/core/layout.po2
-rw-r--r--source/an/sw/source/core/undo.po2
-rw-r--r--source/an/sw/source/core/unocore.po2
-rw-r--r--source/an/sw/source/ui/app.po2
-rw-r--r--source/an/sw/source/ui/chrdlg.po2
-rw-r--r--source/an/sw/source/ui/config.po2
-rw-r--r--source/an/sw/source/ui/dbui.po2
-rw-r--r--source/an/sw/source/ui/dialog.po2
-rw-r--r--source/an/sw/source/ui/dochdl.po2
-rw-r--r--source/an/sw/source/ui/docvw.po2
-rw-r--r--source/an/sw/source/ui/envelp.po2
-rw-r--r--source/an/sw/source/ui/fldui.po2
-rw-r--r--source/an/sw/source/ui/fmtui.po2
-rw-r--r--source/an/sw/source/ui/frmdlg.po2
-rw-r--r--source/an/sw/source/ui/globdoc.po2
-rw-r--r--source/an/sw/source/ui/index.po2
-rw-r--r--source/an/sw/source/ui/lingu.po2
-rw-r--r--source/an/sw/source/ui/misc.po2
-rw-r--r--source/an/sw/source/ui/ribbar.po2
-rw-r--r--source/an/sw/source/ui/shells.po2
-rw-r--r--source/an/sw/source/ui/smartmenu.po2
-rw-r--r--source/an/sw/source/ui/table.po2
-rw-r--r--source/an/sw/source/ui/uiview.po2
-rw-r--r--source/an/sw/source/ui/utlui.po2
-rw-r--r--source/an/sw/source/ui/web.po2
-rw-r--r--source/an/sw/source/ui/wrtsh.po2
-rw-r--r--source/an/sw/uiconfig/sw/ui.po281
-rw-r--r--source/an/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/an/swext/mediawiki/help.po2
-rw-r--r--source/an/swext/mediawiki/src.po2
-rw-r--r--source/an/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/an/sysui/desktop/share.po2
-rw-r--r--source/an/tubes/uiconfig/ui.po2
-rw-r--r--source/an/uui/source.po2
-rw-r--r--source/an/vcl/qa/cppunit/builder.po2
-rw-r--r--source/an/vcl/source/edit.po2
-rw-r--r--source/an/vcl/source/src.po2
-rw-r--r--source/an/vcl/uiconfig/ui.po2
-rw-r--r--source/an/wizards/source/euro.po2
-rw-r--r--source/an/wizards/source/formwizard.po2
-rw-r--r--source/an/wizards/source/importwizard.po2
-rw-r--r--source/an/wizards/source/template.po2
-rw-r--r--source/an/xmlsecurity/source/component.po2
-rw-r--r--source/an/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ar/accessibility/source/helper.po2
-rw-r--r--source/ar/android/sdremote/res/values.po2
-rw-r--r--source/ar/avmedia/source/framework.po2
-rw-r--r--source/ar/avmedia/source/viewer.po2
-rw-r--r--source/ar/basctl/source/basicide.po13
-rw-r--r--source/ar/basctl/source/dlged.po2
-rw-r--r--source/ar/basctl/uiconfig/basicide/ui.po18
-rw-r--r--source/ar/basic/source/classes.po2
-rw-r--r--source/ar/basic/source/sbx.po2
-rw-r--r--source/ar/chart2/source/controller/dialogs.po2
-rw-r--r--source/ar/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ar/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/connectivity/source/resource.po2
-rw-r--r--source/ar/cui/source/customize.po2
-rw-r--r--source/ar/cui/source/dialogs.po2
-rw-r--r--source/ar/cui/source/options.po24
-rw-r--r--source/ar/cui/source/tabpages.po13
-rw-r--r--source/ar/cui/uiconfig/ui.po36
-rw-r--r--source/ar/dbaccess/source/core/resource.po2
-rw-r--r--source/ar/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ar/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ar/dbaccess/source/ui/app.po2
-rw-r--r--source/ar/dbaccess/source/ui/browser.po2
-rw-r--r--source/ar/dbaccess/source/ui/control.po2
-rw-r--r--source/ar/dbaccess/source/ui/dlg.po14
-rw-r--r--source/ar/dbaccess/source/ui/inc.po2
-rw-r--r--source/ar/dbaccess/source/ui/misc.po2
-rw-r--r--source/ar/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ar/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ar/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ar/dbaccess/source/ui/uno.po2
-rw-r--r--source/ar/desktop/source/app.po2
-rw-r--r--source/ar/desktop/source/deployment/gui.po2
-rw-r--r--source/ar/desktop/source/deployment/manager.po2
-rw-r--r--source/ar/desktop/source/deployment/misc.po2
-rw-r--r--source/ar/desktop/source/deployment/registry.po2
-rw-r--r--source/ar/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ar/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ar/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ar/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ar/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ar/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ar/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ar/desktop/uiconfig/ui.po2
-rw-r--r--source/ar/dictionaries/af_ZA.po2
-rw-r--r--source/ar/dictionaries/an_ES.po2
-rw-r--r--source/ar/dictionaries/ar.po2
-rw-r--r--source/ar/dictionaries/be_BY.po2
-rw-r--r--source/ar/dictionaries/bg_BG.po2
-rw-r--r--source/ar/dictionaries/bn_BD.po2
-rw-r--r--source/ar/dictionaries/br_FR.po2
-rw-r--r--source/ar/dictionaries/ca.po2
-rw-r--r--source/ar/dictionaries/cs_CZ.po2
-rw-r--r--source/ar/dictionaries/da_DK.po2
-rw-r--r--source/ar/dictionaries/de.po2
-rw-r--r--source/ar/dictionaries/el_GR.po2
-rw-r--r--source/ar/dictionaries/en.po2
-rw-r--r--source/ar/dictionaries/en/dialog.po2
-rw-r--r--source/ar/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ar/dictionaries/es.po13
-rw-r--r--source/ar/dictionaries/et_EE.po2
-rw-r--r--source/ar/dictionaries/fr_FR.po2
-rw-r--r--source/ar/dictionaries/gd_GB.po2
-rw-r--r--source/ar/dictionaries/gl.po12
-rw-r--r--source/ar/dictionaries/gu_IN.po2
-rw-r--r--source/ar/dictionaries/he_IL.po2
-rw-r--r--source/ar/dictionaries/hi_IN.po2
-rw-r--r--source/ar/dictionaries/hr_HR.po2
-rw-r--r--source/ar/dictionaries/hu_HU.po2
-rw-r--r--source/ar/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ar/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ar/dictionaries/it_IT.po2
-rw-r--r--source/ar/dictionaries/ku_TR.po2
-rw-r--r--source/ar/dictionaries/lt_LT.po2
-rw-r--r--source/ar/dictionaries/lv_LV.po2
-rw-r--r--source/ar/dictionaries/ne_NP.po2
-rw-r--r--source/ar/dictionaries/nl_NL.po2
-rw-r--r--source/ar/dictionaries/no.po2
-rw-r--r--source/ar/dictionaries/oc_FR.po2
-rw-r--r--source/ar/dictionaries/pl_PL.po2
-rw-r--r--source/ar/dictionaries/pt_BR.po2
-rw-r--r--source/ar/dictionaries/pt_BR/dialog.po50
-rw-r--r--source/ar/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po14
-rw-r--r--source/ar/dictionaries/pt_PT.po2
-rw-r--r--source/ar/dictionaries/ro.po2
-rw-r--r--source/ar/dictionaries/ru_RU.po2
-rw-r--r--source/ar/dictionaries/ru_RU/dialog.po15
-rw-r--r--source/ar/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ar/dictionaries/si_LK.po2
-rw-r--r--source/ar/dictionaries/sk_SK.po2
-rw-r--r--source/ar/dictionaries/sl_SI.po2
-rw-r--r--source/ar/dictionaries/sr.po2
-rw-r--r--source/ar/dictionaries/sv_SE.po2
-rw-r--r--source/ar/dictionaries/sw_TZ.po2
-rw-r--r--source/ar/dictionaries/te_IN.po2
-rw-r--r--source/ar/dictionaries/th_TH.po2
-rw-r--r--source/ar/dictionaries/uk_UA.po2
-rw-r--r--source/ar/dictionaries/vi.po2
-rw-r--r--source/ar/dictionaries/zu_ZA.po2
-rw-r--r--source/ar/editeng/source/accessibility.po2
-rw-r--r--source/ar/editeng/source/editeng.po2
-rw-r--r--source/ar/editeng/source/items.po2
-rw-r--r--source/ar/editeng/source/misc.po2
-rw-r--r--source/ar/editeng/source/outliner.po2
-rw-r--r--source/ar/extensions/source/abpilot.po2
-rw-r--r--source/ar/extensions/source/bibliography.po2
-rw-r--r--source/ar/extensions/source/dbpilots.po2
-rw-r--r--source/ar/extensions/source/propctrlr.po18
-rw-r--r--source/ar/extensions/source/scanner.po2
-rw-r--r--source/ar/extensions/source/update/check.po2
-rw-r--r--source/ar/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ar/filter/source/config/fragments/filters.po2
-rw-r--r--source/ar/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ar/filter/source/config/fragments/types.po2
-rw-r--r--source/ar/filter/source/flash.po2
-rw-r--r--source/ar/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ar/filter/source/pdf.po2
-rw-r--r--source/ar/filter/source/t602.po2
-rw-r--r--source/ar/filter/source/xsltdialog.po13
-rw-r--r--source/ar/filter/uiconfig/ui.po2
-rw-r--r--source/ar/forms/source/resource.po2
-rw-r--r--source/ar/formula/source/core/resource.po38
-rw-r--r--source/ar/formula/source/ui/dlg.po2
-rw-r--r--source/ar/fpicker/source/office.po2
-rw-r--r--source/ar/framework/source/classes.po2
-rw-r--r--source/ar/framework/source/services.po2
-rw-r--r--source/ar/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/ar/librelogo/source/pythonpath.po45
-rw-r--r--source/ar/mysqlc/source.po2
-rw-r--r--source/ar/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ar/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ar/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ar/nlpsolver/src/locale.po2
-rw-r--r--source/ar/officecfg/registry/data/org/openoffice/Office.po14
-rw-r--r--source/ar/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/ar/padmin/source.po2
-rw-r--r--source/ar/readlicense_oo/docs.po2
-rw-r--r--source/ar/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ar/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ar/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ar/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ar/reportbuilder/util.po2
-rw-r--r--source/ar/reportdesign/source/core/resource.po2
-rw-r--r--source/ar/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ar/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ar/reportdesign/source/ui/report.po2
-rw-r--r--source/ar/sc/source/core/src.po2
-rw-r--r--source/ar/sc/source/ui/cctrl.po2
-rw-r--r--source/ar/sc/source/ui/dbgui.po2
-rw-r--r--source/ar/sc/source/ui/docshell.po2
-rw-r--r--source/ar/sc/source/ui/drawfunc.po2
-rw-r--r--source/ar/sc/source/ui/formdlg.po2
-rw-r--r--source/ar/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ar/sc/source/ui/navipi.po2
-rw-r--r--source/ar/sc/source/ui/optdlg.po2
-rw-r--r--source/ar/sc/source/ui/pagedlg.po2
-rw-r--r--source/ar/sc/source/ui/src.po416
-rw-r--r--source/ar/sc/source/ui/styleui.po2
-rw-r--r--source/ar/sc/uiconfig/scalc/ui.po26
-rw-r--r--source/ar/scaddins/source/analysis.po2
-rw-r--r--source/ar/scaddins/source/datefunc.po2
-rw-r--r--source/ar/scaddins/source/pricing.po2
-rw-r--r--source/ar/sccomp/source/solver.po2
-rw-r--r--source/ar/scp2/source/accessories.po2
-rw-r--r--source/ar/scp2/source/activex.po2
-rw-r--r--source/ar/scp2/source/base.po2
-rw-r--r--source/ar/scp2/source/calc.po2
-rw-r--r--source/ar/scp2/source/draw.po2
-rw-r--r--source/ar/scp2/source/extensions.po2
-rw-r--r--source/ar/scp2/source/gnome.po2
-rw-r--r--source/ar/scp2/source/graphicfilter.po2
-rw-r--r--source/ar/scp2/source/impress.po2
-rw-r--r--source/ar/scp2/source/javafilter.po2
-rw-r--r--source/ar/scp2/source/kde.po2
-rw-r--r--source/ar/scp2/source/math.po2
-rw-r--r--source/ar/scp2/source/onlineupdate.po2
-rw-r--r--source/ar/scp2/source/ooo.po2
-rw-r--r--source/ar/scp2/source/python.po18
-rw-r--r--source/ar/scp2/source/quickstart.po2
-rw-r--r--source/ar/scp2/source/sdkoo.po2
-rw-r--r--source/ar/scp2/source/smoketest.po2
-rw-r--r--source/ar/scp2/source/stdlibs.po2
-rw-r--r--source/ar/scp2/source/tde.po2
-rw-r--r--source/ar/scp2/source/winexplorerext.po2
-rw-r--r--source/ar/scp2/source/writer.po2
-rw-r--r--source/ar/scp2/source/xsltfilter.po2
-rw-r--r--source/ar/sd/source/core.po2
-rw-r--r--source/ar/sd/source/filter/html.po2
-rw-r--r--source/ar/sd/source/ui/accessibility.po2
-rw-r--r--source/ar/sd/source/ui/animations.po2
-rw-r--r--source/ar/sd/source/ui/annotations.po2
-rw-r--r--source/ar/sd/source/ui/app.po2
-rw-r--r--source/ar/sd/source/ui/dlg.po2
-rw-r--r--source/ar/sd/source/ui/slideshow.po2
-rw-r--r--source/ar/sd/source/ui/table.po2
-rw-r--r--source/ar/sd/source/ui/view.po2
-rw-r--r--source/ar/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ar/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ar/sdext/source/minimizer.po2
-rw-r--r--source/ar/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ar/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ar/setup_native/source/mac.po2
-rw-r--r--source/ar/sfx2/source/appl.po2
-rw-r--r--source/ar/sfx2/source/bastyp.po2
-rw-r--r--source/ar/sfx2/source/control.po25
-rw-r--r--source/ar/sfx2/source/dialog.po60
-rw-r--r--source/ar/sfx2/source/doc.po130
-rw-r--r--source/ar/sfx2/source/menu.po2
-rw-r--r--source/ar/sfx2/source/view.po2
-rw-r--r--source/ar/sfx2/uiconfig/ui.po2
-rw-r--r--source/ar/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ar/starmath/source.po2
-rw-r--r--source/ar/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ar/svl/source/items.po2
-rw-r--r--source/ar/svl/source/misc.po2
-rw-r--r--source/ar/svtools/source/contnr.po2
-rw-r--r--source/ar/svtools/source/control.po2
-rw-r--r--source/ar/svtools/source/dialogs.po2
-rw-r--r--source/ar/svtools/source/java.po2
-rw-r--r--source/ar/svtools/source/misc.po12
-rw-r--r--source/ar/svtools/source/toolpanel.po2
-rw-r--r--source/ar/svtools/uiconfig/ui.po49
-rw-r--r--source/ar/svx/inc.po2
-rw-r--r--source/ar/svx/source/accessibility.po2
-rw-r--r--source/ar/svx/source/core.po2
-rw-r--r--source/ar/svx/source/dialog.po217
-rw-r--r--source/ar/svx/source/engine3d.po2
-rw-r--r--source/ar/svx/source/fmcomp.po2
-rw-r--r--source/ar/svx/source/form.po2
-rw-r--r--source/ar/svx/source/gallery2.po2
-rw-r--r--source/ar/svx/source/items.po2
-rw-r--r--source/ar/svx/source/src.po2
-rw-r--r--source/ar/svx/source/stbctrls.po2
-rw-r--r--source/ar/svx/source/svdraw.po2
-rw-r--r--source/ar/svx/source/table.po2
-rw-r--r--source/ar/svx/source/tbxctrls.po2
-rw-r--r--source/ar/svx/source/toolbars.po2
-rw-r--r--source/ar/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ar/svx/uiconfig/ui.po204
-rw-r--r--source/ar/sw/source/core/layout.po2
-rw-r--r--source/ar/sw/source/core/undo.po2
-rw-r--r--source/ar/sw/source/core/unocore.po2
-rw-r--r--source/ar/sw/source/ui/app.po4
-rw-r--r--source/ar/sw/source/ui/chrdlg.po4
-rw-r--r--source/ar/sw/source/ui/config.po2
-rw-r--r--source/ar/sw/source/ui/dbui.po2
-rw-r--r--source/ar/sw/source/ui/dialog.po2
-rw-r--r--source/ar/sw/source/ui/dochdl.po2
-rw-r--r--source/ar/sw/source/ui/docvw.po2
-rw-r--r--source/ar/sw/source/ui/envelp.po2
-rw-r--r--source/ar/sw/source/ui/fldui.po2
-rw-r--r--source/ar/sw/source/ui/fmtui.po2
-rw-r--r--source/ar/sw/source/ui/frmdlg.po2
-rw-r--r--source/ar/sw/source/ui/globdoc.po2
-rw-r--r--source/ar/sw/source/ui/index.po2
-rw-r--r--source/ar/sw/source/ui/lingu.po2
-rw-r--r--source/ar/sw/source/ui/misc.po2
-rw-r--r--source/ar/sw/source/ui/ribbar.po2
-rw-r--r--source/ar/sw/source/ui/shells.po2
-rw-r--r--source/ar/sw/source/ui/smartmenu.po2
-rw-r--r--source/ar/sw/source/ui/table.po2
-rw-r--r--source/ar/sw/source/ui/uiview.po2
-rw-r--r--source/ar/sw/source/ui/utlui.po66
-rw-r--r--source/ar/sw/source/ui/web.po2
-rw-r--r--source/ar/sw/source/ui/wrtsh.po2
-rw-r--r--source/ar/sw/uiconfig/sw/ui.po281
-rw-r--r--source/ar/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/ar/swext/mediawiki/help.po2
-rw-r--r--source/ar/swext/mediawiki/src.po2
-rw-r--r--source/ar/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ar/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ar/sysui/desktop/share.po2
-rw-r--r--source/ar/tubes/uiconfig/ui.po2
-rw-r--r--source/ar/uui/source.po2
-rw-r--r--source/ar/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ar/vcl/source/edit.po2
-rw-r--r--source/ar/vcl/source/src.po2
-rw-r--r--source/ar/vcl/uiconfig/ui.po2
-rw-r--r--source/ar/wizards/source/euro.po2
-rw-r--r--source/ar/wizards/source/formwizard.po56
-rw-r--r--source/ar/wizards/source/importwizard.po2
-rw-r--r--source/ar/wizards/source/template.po26
-rw-r--r--source/ar/xmlsecurity/source/component.po2
-rw-r--r--source/ar/xmlsecurity/source/dialogs.po2
-rw-r--r--source/as/accessibility/source/helper.po2
-rw-r--r--source/as/android/sdremote/res/values.po2
-rw-r--r--source/as/avmedia/source/framework.po2
-rw-r--r--source/as/avmedia/source/viewer.po2
-rw-r--r--source/as/basctl/source/basicide.po2
-rw-r--r--source/as/basctl/source/dlged.po2
-rw-r--r--source/as/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/as/basic/source/classes.po2
-rw-r--r--source/as/basic/source/sbx.po2
-rw-r--r--source/as/chart2/source/controller/dialogs.po2
-rw-r--r--source/as/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/connectivity/source/resource.po2
-rw-r--r--source/as/cui/source/customize.po2
-rw-r--r--source/as/cui/source/dialogs.po2
-rw-r--r--source/as/cui/source/options.po4
-rw-r--r--source/as/cui/source/tabpages.po2
-rw-r--r--source/as/cui/uiconfig/ui.po4
-rw-r--r--source/as/dbaccess/source/core/resource.po2
-rw-r--r--source/as/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/as/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/as/dbaccess/source/ui/app.po2
-rw-r--r--source/as/dbaccess/source/ui/browser.po2
-rw-r--r--source/as/dbaccess/source/ui/control.po2
-rw-r--r--source/as/dbaccess/source/ui/dlg.po2
-rw-r--r--source/as/dbaccess/source/ui/inc.po2
-rw-r--r--source/as/dbaccess/source/ui/misc.po2
-rw-r--r--source/as/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/as/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/as/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/as/dbaccess/source/ui/uno.po2
-rw-r--r--source/as/desktop/source/app.po2
-rw-r--r--source/as/desktop/source/deployment/gui.po2
-rw-r--r--source/as/desktop/source/deployment/manager.po2
-rw-r--r--source/as/desktop/source/deployment/misc.po2
-rw-r--r--source/as/desktop/source/deployment/registry.po2
-rw-r--r--source/as/desktop/source/deployment/registry/component.po2
-rw-r--r--source/as/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/as/desktop/source/deployment/registry/help.po2
-rw-r--r--source/as/desktop/source/deployment/registry/package.po2
-rw-r--r--source/as/desktop/source/deployment/registry/script.po2
-rw-r--r--source/as/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/as/desktop/source/deployment/unopkg.po2
-rw-r--r--source/as/desktop/uiconfig/ui.po2
-rw-r--r--source/as/dictionaries/af_ZA.po2
-rw-r--r--source/as/dictionaries/an_ES.po2
-rw-r--r--source/as/dictionaries/ar.po2
-rw-r--r--source/as/dictionaries/be_BY.po2
-rw-r--r--source/as/dictionaries/bg_BG.po2
-rw-r--r--source/as/dictionaries/bn_BD.po2
-rw-r--r--source/as/dictionaries/br_FR.po2
-rw-r--r--source/as/dictionaries/ca.po2
-rw-r--r--source/as/dictionaries/cs_CZ.po2
-rw-r--r--source/as/dictionaries/da_DK.po2
-rw-r--r--source/as/dictionaries/de.po2
-rw-r--r--source/as/dictionaries/el_GR.po2
-rw-r--r--source/as/dictionaries/en.po2
-rw-r--r--source/as/dictionaries/en/dialog.po2
-rw-r--r--source/as/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/as/dictionaries/es.po2
-rw-r--r--source/as/dictionaries/et_EE.po2
-rw-r--r--source/as/dictionaries/fr_FR.po2
-rw-r--r--source/as/dictionaries/gd_GB.po2
-rw-r--r--source/as/dictionaries/gl.po2
-rw-r--r--source/as/dictionaries/gu_IN.po2
-rw-r--r--source/as/dictionaries/he_IL.po2
-rw-r--r--source/as/dictionaries/hi_IN.po2
-rw-r--r--source/as/dictionaries/hr_HR.po2
-rw-r--r--source/as/dictionaries/hu_HU.po2
-rw-r--r--source/as/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/as/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/as/dictionaries/it_IT.po2
-rw-r--r--source/as/dictionaries/ku_TR.po2
-rw-r--r--source/as/dictionaries/lt_LT.po2
-rw-r--r--source/as/dictionaries/lv_LV.po2
-rw-r--r--source/as/dictionaries/ne_NP.po2
-rw-r--r--source/as/dictionaries/nl_NL.po2
-rw-r--r--source/as/dictionaries/no.po2
-rw-r--r--source/as/dictionaries/oc_FR.po2
-rw-r--r--source/as/dictionaries/pl_PL.po2
-rw-r--r--source/as/dictionaries/pt_BR.po2
-rw-r--r--source/as/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/as/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/as/dictionaries/pt_PT.po2
-rw-r--r--source/as/dictionaries/ro.po2
-rw-r--r--source/as/dictionaries/ru_RU.po2
-rw-r--r--source/as/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/as/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/as/dictionaries/si_LK.po2
-rw-r--r--source/as/dictionaries/sk_SK.po2
-rw-r--r--source/as/dictionaries/sl_SI.po2
-rw-r--r--source/as/dictionaries/sr.po2
-rw-r--r--source/as/dictionaries/sv_SE.po2
-rw-r--r--source/as/dictionaries/sw_TZ.po2
-rw-r--r--source/as/dictionaries/te_IN.po2
-rw-r--r--source/as/dictionaries/th_TH.po2
-rw-r--r--source/as/dictionaries/uk_UA.po2
-rw-r--r--source/as/dictionaries/vi.po2
-rw-r--r--source/as/dictionaries/zu_ZA.po2
-rw-r--r--source/as/editeng/source/accessibility.po2
-rw-r--r--source/as/editeng/source/editeng.po2
-rw-r--r--source/as/editeng/source/items.po2
-rw-r--r--source/as/editeng/source/misc.po2
-rw-r--r--source/as/editeng/source/outliner.po2
-rw-r--r--source/as/extensions/source/abpilot.po2
-rw-r--r--source/as/extensions/source/bibliography.po2
-rw-r--r--source/as/extensions/source/dbpilots.po2
-rw-r--r--source/as/extensions/source/propctrlr.po2
-rw-r--r--source/as/extensions/source/scanner.po2
-rw-r--r--source/as/extensions/source/update/check.po2
-rw-r--r--source/as/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/as/filter/source/config/fragments/filters.po2
-rw-r--r--source/as/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/as/filter/source/config/fragments/types.po2
-rw-r--r--source/as/filter/source/flash.po2
-rw-r--r--source/as/filter/source/graphicfilter/eps.po2
-rw-r--r--source/as/filter/source/pdf.po2
-rw-r--r--source/as/filter/source/t602.po2
-rw-r--r--source/as/filter/source/xsltdialog.po2
-rw-r--r--source/as/filter/uiconfig/ui.po2
-rw-r--r--source/as/forms/source/resource.po2
-rw-r--r--source/as/formula/source/core/resource.po46
-rw-r--r--source/as/formula/source/ui/dlg.po2
-rw-r--r--source/as/fpicker/source/office.po2
-rw-r--r--source/as/framework/source/classes.po2
-rw-r--r--source/as/framework/source/services.po2
-rw-r--r--source/as/instsetoo_native/inc_openoffice/windows/msi_languages.po24
-rw-r--r--source/as/librelogo/source/pythonpath.po2
-rw-r--r--source/as/mysqlc/source.po2
-rw-r--r--source/as/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/as/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/as/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/as/nlpsolver/src/locale.po2
-rw-r--r--source/as/officecfg/registry/data/org/openoffice/Office.po14
-rw-r--r--source/as/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/as/padmin/source.po4
-rw-r--r--source/as/readlicense_oo/docs.po2
-rw-r--r--source/as/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/as/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/as/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/as/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/as/reportbuilder/util.po2
-rw-r--r--source/as/reportdesign/source/core/resource.po2
-rw-r--r--source/as/reportdesign/source/ui/dlg.po2
-rw-r--r--source/as/reportdesign/source/ui/inspection.po2
-rw-r--r--source/as/reportdesign/source/ui/report.po2
-rw-r--r--source/as/sc/source/core/src.po2
-rw-r--r--source/as/sc/source/ui/cctrl.po2
-rw-r--r--source/as/sc/source/ui/dbgui.po2
-rw-r--r--source/as/sc/source/ui/docshell.po2
-rw-r--r--source/as/sc/source/ui/drawfunc.po2
-rw-r--r--source/as/sc/source/ui/formdlg.po2
-rw-r--r--source/as/sc/source/ui/miscdlgs.po2
-rw-r--r--source/as/sc/source/ui/navipi.po2
-rw-r--r--source/as/sc/source/ui/optdlg.po2
-rw-r--r--source/as/sc/source/ui/pagedlg.po2
-rw-r--r--source/as/sc/source/ui/src.po393
-rw-r--r--source/as/sc/source/ui/styleui.po4
-rw-r--r--source/as/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/as/scaddins/source/analysis.po2
-rw-r--r--source/as/scaddins/source/datefunc.po2
-rw-r--r--source/as/scaddins/source/pricing.po6
-rw-r--r--source/as/sccomp/source/solver.po2
-rw-r--r--source/as/scp2/source/accessories.po2
-rw-r--r--source/as/scp2/source/activex.po2
-rw-r--r--source/as/scp2/source/base.po2
-rw-r--r--source/as/scp2/source/calc.po2
-rw-r--r--source/as/scp2/source/draw.po2
-rw-r--r--source/as/scp2/source/extensions.po2
-rw-r--r--source/as/scp2/source/gnome.po2
-rw-r--r--source/as/scp2/source/graphicfilter.po2
-rw-r--r--source/as/scp2/source/impress.po2
-rw-r--r--source/as/scp2/source/javafilter.po2
-rw-r--r--source/as/scp2/source/kde.po2
-rw-r--r--source/as/scp2/source/math.po2
-rw-r--r--source/as/scp2/source/onlineupdate.po2
-rw-r--r--source/as/scp2/source/ooo.po4
-rw-r--r--source/as/scp2/source/python.po24
-rw-r--r--source/as/scp2/source/quickstart.po2
-rw-r--r--source/as/scp2/source/sdkoo.po2
-rw-r--r--source/as/scp2/source/smoketest.po2
-rw-r--r--source/as/scp2/source/stdlibs.po2
-rw-r--r--source/as/scp2/source/tde.po2
-rw-r--r--source/as/scp2/source/winexplorerext.po2
-rw-r--r--source/as/scp2/source/writer.po2
-rw-r--r--source/as/scp2/source/xsltfilter.po2
-rw-r--r--source/as/sd/source/core.po2
-rw-r--r--source/as/sd/source/filter/html.po2
-rw-r--r--source/as/sd/source/ui/accessibility.po2
-rw-r--r--source/as/sd/source/ui/animations.po2
-rw-r--r--source/as/sd/source/ui/annotations.po2
-rw-r--r--source/as/sd/source/ui/app.po4
-rw-r--r--source/as/sd/source/ui/dlg.po2
-rw-r--r--source/as/sd/source/ui/slideshow.po2
-rw-r--r--source/as/sd/source/ui/table.po2
-rw-r--r--source/as/sd/source/ui/view.po2
-rw-r--r--source/as/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/as/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/as/sdext/source/minimizer.po2
-rw-r--r--source/as/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/as/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/as/setup_native/source/mac.po2
-rw-r--r--source/as/sfx2/source/appl.po2
-rw-r--r--source/as/sfx2/source/bastyp.po2
-rw-r--r--source/as/sfx2/source/control.po24
-rw-r--r--source/as/sfx2/source/dialog.po48
-rw-r--r--source/as/sfx2/source/doc.po126
-rw-r--r--source/as/sfx2/source/menu.po2
-rw-r--r--source/as/sfx2/source/view.po2
-rw-r--r--source/as/sfx2/uiconfig/ui.po4
-rw-r--r--source/as/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/as/starmath/source.po2
-rw-r--r--source/as/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/as/svl/source/items.po2
-rw-r--r--source/as/svl/source/misc.po2
-rw-r--r--source/as/svtools/source/contnr.po2
-rw-r--r--source/as/svtools/source/control.po2
-rw-r--r--source/as/svtools/source/dialogs.po2
-rw-r--r--source/as/svtools/source/java.po2
-rw-r--r--source/as/svtools/source/misc.po4
-rw-r--r--source/as/svtools/source/toolpanel.po2
-rw-r--r--source/as/svtools/uiconfig/ui.po51
-rw-r--r--source/as/svx/inc.po4
-rw-r--r--source/as/svx/source/accessibility.po2
-rw-r--r--source/as/svx/source/core.po2
-rw-r--r--source/as/svx/source/dialog.po217
-rw-r--r--source/as/svx/source/engine3d.po2
-rw-r--r--source/as/svx/source/fmcomp.po2
-rw-r--r--source/as/svx/source/form.po2
-rw-r--r--source/as/svx/source/gallery2.po2
-rw-r--r--source/as/svx/source/items.po2
-rw-r--r--source/as/svx/source/src.po2
-rw-r--r--source/as/svx/source/stbctrls.po2
-rw-r--r--source/as/svx/source/svdraw.po2
-rw-r--r--source/as/svx/source/table.po2
-rw-r--r--source/as/svx/source/tbxctrls.po2
-rw-r--r--source/as/svx/source/toolbars.po2
-rw-r--r--source/as/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/as/svx/uiconfig/ui.po205
-rw-r--r--source/as/sw/source/core/layout.po2
-rw-r--r--source/as/sw/source/core/undo.po2
-rw-r--r--source/as/sw/source/core/unocore.po2
-rw-r--r--source/as/sw/source/ui/app.po4
-rw-r--r--source/as/sw/source/ui/chrdlg.po2
-rw-r--r--source/as/sw/source/ui/config.po2
-rw-r--r--source/as/sw/source/ui/dbui.po2
-rw-r--r--source/as/sw/source/ui/dialog.po2
-rw-r--r--source/as/sw/source/ui/dochdl.po2
-rw-r--r--source/as/sw/source/ui/docvw.po2
-rw-r--r--source/as/sw/source/ui/envelp.po2
-rw-r--r--source/as/sw/source/ui/fldui.po2
-rw-r--r--source/as/sw/source/ui/fmtui.po2
-rw-r--r--source/as/sw/source/ui/frmdlg.po2
-rw-r--r--source/as/sw/source/ui/globdoc.po2
-rw-r--r--source/as/sw/source/ui/index.po2
-rw-r--r--source/as/sw/source/ui/lingu.po2
-rw-r--r--source/as/sw/source/ui/misc.po2
-rw-r--r--source/as/sw/source/ui/ribbar.po2
-rw-r--r--source/as/sw/source/ui/shells.po2
-rw-r--r--source/as/sw/source/ui/smartmenu.po2
-rw-r--r--source/as/sw/source/ui/table.po2
-rw-r--r--source/as/sw/source/ui/uiview.po2
-rw-r--r--source/as/sw/source/ui/utlui.po2
-rw-r--r--source/as/sw/source/ui/web.po2
-rw-r--r--source/as/sw/source/ui/wrtsh.po2
-rw-r--r--source/as/sw/uiconfig/sw/ui.po278
-rw-r--r--source/as/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/as/swext/mediawiki/help.po2
-rw-r--r--source/as/swext/mediawiki/src.po2
-rw-r--r--source/as/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/as/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/as/sysui/desktop/share.po2
-rw-r--r--source/as/tubes/uiconfig/ui.po2
-rw-r--r--source/as/uui/source.po2
-rw-r--r--source/as/vcl/qa/cppunit/builder.po2
-rw-r--r--source/as/vcl/source/edit.po2
-rw-r--r--source/as/vcl/source/src.po2
-rw-r--r--source/as/vcl/uiconfig/ui.po2
-rw-r--r--source/as/wizards/source/euro.po2
-rw-r--r--source/as/wizards/source/formwizard.po2
-rw-r--r--source/as/wizards/source/importwizard.po2
-rw-r--r--source/as/wizards/source/template.po2
-rw-r--r--source/as/xmlsecurity/source/component.po2
-rw-r--r--source/as/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ast/accessibility/source/helper.po2
-rw-r--r--source/ast/android/sdremote/res/values.po2
-rw-r--r--source/ast/avmedia/source/framework.po2
-rw-r--r--source/ast/avmedia/source/viewer.po2
-rw-r--r--source/ast/basctl/source/basicide.po2
-rw-r--r--source/ast/basctl/source/dlged.po2
-rw-r--r--source/ast/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ast/basic/source/classes.po2
-rw-r--r--source/ast/basic/source/sbx.po2
-rw-r--r--source/ast/chart2/source/controller/dialogs.po2
-rw-r--r--source/ast/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/connectivity/source/resource.po2
-rw-r--r--source/ast/cui/source/customize.po2
-rw-r--r--source/ast/cui/source/dialogs.po2
-rw-r--r--source/ast/cui/source/options.po18
-rw-r--r--source/ast/cui/source/tabpages.po2
-rw-r--r--source/ast/cui/uiconfig/ui.po36
-rw-r--r--source/ast/dbaccess/source/core/resource.po2
-rw-r--r--source/ast/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ast/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ast/dbaccess/source/ui/app.po2
-rw-r--r--source/ast/dbaccess/source/ui/browser.po2
-rw-r--r--source/ast/dbaccess/source/ui/control.po2
-rw-r--r--source/ast/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ast/dbaccess/source/ui/inc.po2
-rw-r--r--source/ast/dbaccess/source/ui/misc.po2
-rw-r--r--source/ast/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ast/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ast/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ast/dbaccess/source/ui/uno.po2
-rw-r--r--source/ast/desktop/source/app.po2
-rw-r--r--source/ast/desktop/source/deployment/gui.po2
-rw-r--r--source/ast/desktop/source/deployment/manager.po2
-rw-r--r--source/ast/desktop/source/deployment/misc.po2
-rw-r--r--source/ast/desktop/source/deployment/registry.po2
-rw-r--r--source/ast/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ast/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ast/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ast/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ast/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ast/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ast/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ast/desktop/uiconfig/ui.po2
-rw-r--r--source/ast/dictionaries/af_ZA.po2
-rw-r--r--source/ast/dictionaries/an_ES.po2
-rw-r--r--source/ast/dictionaries/ar.po2
-rw-r--r--source/ast/dictionaries/be_BY.po2
-rw-r--r--source/ast/dictionaries/bg_BG.po2
-rw-r--r--source/ast/dictionaries/bn_BD.po2
-rw-r--r--source/ast/dictionaries/br_FR.po2
-rw-r--r--source/ast/dictionaries/ca.po2
-rw-r--r--source/ast/dictionaries/cs_CZ.po2
-rw-r--r--source/ast/dictionaries/da_DK.po2
-rw-r--r--source/ast/dictionaries/de.po2
-rw-r--r--source/ast/dictionaries/el_GR.po2
-rw-r--r--source/ast/dictionaries/en.po2
-rw-r--r--source/ast/dictionaries/en/dialog.po2
-rw-r--r--source/ast/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ast/dictionaries/es.po2
-rw-r--r--source/ast/dictionaries/et_EE.po2
-rw-r--r--source/ast/dictionaries/fr_FR.po2
-rw-r--r--source/ast/dictionaries/gd_GB.po2
-rw-r--r--source/ast/dictionaries/gl.po2
-rw-r--r--source/ast/dictionaries/gu_IN.po2
-rw-r--r--source/ast/dictionaries/he_IL.po2
-rw-r--r--source/ast/dictionaries/hi_IN.po2
-rw-r--r--source/ast/dictionaries/hr_HR.po2
-rw-r--r--source/ast/dictionaries/hu_HU.po2
-rw-r--r--source/ast/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ast/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ast/dictionaries/it_IT.po2
-rw-r--r--source/ast/dictionaries/ku_TR.po2
-rw-r--r--source/ast/dictionaries/lt_LT.po2
-rw-r--r--source/ast/dictionaries/lv_LV.po2
-rw-r--r--source/ast/dictionaries/ne_NP.po2
-rw-r--r--source/ast/dictionaries/nl_NL.po2
-rw-r--r--source/ast/dictionaries/no.po2
-rw-r--r--source/ast/dictionaries/oc_FR.po2
-rw-r--r--source/ast/dictionaries/pl_PL.po2
-rw-r--r--source/ast/dictionaries/pt_BR.po2
-rw-r--r--source/ast/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ast/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ast/dictionaries/pt_PT.po2
-rw-r--r--source/ast/dictionaries/ro.po2
-rw-r--r--source/ast/dictionaries/ru_RU.po2
-rw-r--r--source/ast/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ast/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ast/dictionaries/si_LK.po2
-rw-r--r--source/ast/dictionaries/sk_SK.po2
-rw-r--r--source/ast/dictionaries/sl_SI.po2
-rw-r--r--source/ast/dictionaries/sr.po2
-rw-r--r--source/ast/dictionaries/sv_SE.po2
-rw-r--r--source/ast/dictionaries/sw_TZ.po2
-rw-r--r--source/ast/dictionaries/te_IN.po2
-rw-r--r--source/ast/dictionaries/th_TH.po2
-rw-r--r--source/ast/dictionaries/uk_UA.po2
-rw-r--r--source/ast/dictionaries/vi.po2
-rw-r--r--source/ast/dictionaries/zu_ZA.po2
-rw-r--r--source/ast/editeng/source/accessibility.po2
-rw-r--r--source/ast/editeng/source/editeng.po2
-rw-r--r--source/ast/editeng/source/items.po2
-rw-r--r--source/ast/editeng/source/misc.po2
-rw-r--r--source/ast/editeng/source/outliner.po2
-rw-r--r--source/ast/extensions/source/abpilot.po2
-rw-r--r--source/ast/extensions/source/bibliography.po2
-rw-r--r--source/ast/extensions/source/dbpilots.po2
-rw-r--r--source/ast/extensions/source/propctrlr.po2
-rw-r--r--source/ast/extensions/source/scanner.po2
-rw-r--r--source/ast/extensions/source/update/check.po2
-rw-r--r--source/ast/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ast/filter/source/config/fragments/filters.po2
-rw-r--r--source/ast/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ast/filter/source/config/fragments/types.po2
-rw-r--r--source/ast/filter/source/flash.po2
-rw-r--r--source/ast/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ast/filter/source/pdf.po2
-rw-r--r--source/ast/filter/source/t602.po2
-rw-r--r--source/ast/filter/source/xsltdialog.po2
-rw-r--r--source/ast/filter/uiconfig/ui.po2
-rw-r--r--source/ast/forms/source/resource.po2
-rw-r--r--source/ast/formula/source/core/resource.po46
-rw-r--r--source/ast/formula/source/ui/dlg.po2
-rw-r--r--source/ast/fpicker/source/office.po2
-rw-r--r--source/ast/framework/source/classes.po2
-rw-r--r--source/ast/framework/source/services.po2
-rw-r--r--source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/ast/librelogo/source/pythonpath.po249
-rw-r--r--source/ast/mysqlc/source.po2
-rw-r--r--source/ast/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ast/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ast/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ast/nlpsolver/src/locale.po2
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office.po14
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/ast/padmin/source.po22
-rw-r--r--source/ast/readlicense_oo/docs.po2
-rw-r--r--source/ast/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ast/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ast/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ast/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ast/reportbuilder/util.po2
-rw-r--r--source/ast/reportdesign/source/core/resource.po2
-rw-r--r--source/ast/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ast/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ast/reportdesign/source/ui/report.po2
-rw-r--r--source/ast/sc/source/core/src.po2
-rw-r--r--source/ast/sc/source/ui/cctrl.po2
-rw-r--r--source/ast/sc/source/ui/dbgui.po2
-rw-r--r--source/ast/sc/source/ui/docshell.po2
-rw-r--r--source/ast/sc/source/ui/drawfunc.po2
-rw-r--r--source/ast/sc/source/ui/formdlg.po2
-rw-r--r--source/ast/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ast/sc/source/ui/navipi.po2
-rw-r--r--source/ast/sc/source/ui/optdlg.po2
-rw-r--r--source/ast/sc/source/ui/pagedlg.po2
-rw-r--r--source/ast/sc/source/ui/src.po445
-rw-r--r--source/ast/sc/source/ui/styleui.po18
-rw-r--r--source/ast/sc/uiconfig/scalc/ui.po34
-rw-r--r--source/ast/scaddins/source/analysis.po10
-rw-r--r--source/ast/scaddins/source/datefunc.po2
-rw-r--r--source/ast/scaddins/source/pricing.po180
-rw-r--r--source/ast/sccomp/source/solver.po2
-rw-r--r--source/ast/scp2/source/accessories.po2
-rw-r--r--source/ast/scp2/source/activex.po2
-rw-r--r--source/ast/scp2/source/base.po2
-rw-r--r--source/ast/scp2/source/calc.po2
-rw-r--r--source/ast/scp2/source/draw.po2
-rw-r--r--source/ast/scp2/source/extensions.po2
-rw-r--r--source/ast/scp2/source/gnome.po2
-rw-r--r--source/ast/scp2/source/graphicfilter.po2
-rw-r--r--source/ast/scp2/source/impress.po2
-rw-r--r--source/ast/scp2/source/javafilter.po2
-rw-r--r--source/ast/scp2/source/kde.po2
-rw-r--r--source/ast/scp2/source/math.po2
-rw-r--r--source/ast/scp2/source/onlineupdate.po2
-rw-r--r--source/ast/scp2/source/ooo.po18
-rw-r--r--source/ast/scp2/source/python.po26
-rw-r--r--source/ast/scp2/source/quickstart.po2
-rw-r--r--source/ast/scp2/source/sdkoo.po2
-rw-r--r--source/ast/scp2/source/smoketest.po2
-rw-r--r--source/ast/scp2/source/stdlibs.po2
-rw-r--r--source/ast/scp2/source/tde.po2
-rw-r--r--source/ast/scp2/source/winexplorerext.po2
-rw-r--r--source/ast/scp2/source/writer.po2
-rw-r--r--source/ast/scp2/source/xsltfilter.po2
-rw-r--r--source/ast/sd/source/core.po2
-rw-r--r--source/ast/sd/source/filter/html.po2
-rw-r--r--source/ast/sd/source/ui/accessibility.po2
-rw-r--r--source/ast/sd/source/ui/animations.po2
-rw-r--r--source/ast/sd/source/ui/annotations.po2
-rw-r--r--source/ast/sd/source/ui/app.po16
-rw-r--r--source/ast/sd/source/ui/dlg.po2
-rw-r--r--source/ast/sd/source/ui/slideshow.po2
-rw-r--r--source/ast/sd/source/ui/table.po2
-rw-r--r--source/ast/sd/source/ui/view.po2
-rw-r--r--source/ast/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ast/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ast/sdext/source/minimizer.po2
-rw-r--r--source/ast/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ast/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ast/setup_native/source/mac.po2
-rw-r--r--source/ast/sfx2/source/appl.po2
-rw-r--r--source/ast/sfx2/source/bastyp.po2
-rw-r--r--source/ast/sfx2/source/control.po25
-rw-r--r--source/ast/sfx2/source/dialog.po56
-rw-r--r--source/ast/sfx2/source/doc.po126
-rw-r--r--source/ast/sfx2/source/menu.po2
-rw-r--r--source/ast/sfx2/source/view.po2
-rw-r--r--source/ast/sfx2/uiconfig/ui.po11
-rw-r--r--source/ast/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ast/starmath/source.po2
-rw-r--r--source/ast/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ast/svl/source/items.po2
-rw-r--r--source/ast/svl/source/misc.po2
-rw-r--r--source/ast/svtools/source/contnr.po2
-rw-r--r--source/ast/svtools/source/control.po2
-rw-r--r--source/ast/svtools/source/dialogs.po2
-rw-r--r--source/ast/svtools/source/java.po2
-rw-r--r--source/ast/svtools/source/misc.po12
-rw-r--r--source/ast/svtools/source/toolpanel.po2
-rw-r--r--source/ast/svtools/uiconfig/ui.po57
-rw-r--r--source/ast/svx/inc.po12
-rw-r--r--source/ast/svx/source/accessibility.po2
-rw-r--r--source/ast/svx/source/core.po2
-rw-r--r--source/ast/svx/source/dialog.po217
-rw-r--r--source/ast/svx/source/engine3d.po2
-rw-r--r--source/ast/svx/source/fmcomp.po2
-rw-r--r--source/ast/svx/source/form.po2
-rw-r--r--source/ast/svx/source/gallery2.po2
-rw-r--r--source/ast/svx/source/items.po2
-rw-r--r--source/ast/svx/source/src.po2
-rw-r--r--source/ast/svx/source/stbctrls.po2
-rw-r--r--source/ast/svx/source/svdraw.po2
-rw-r--r--source/ast/svx/source/table.po2
-rw-r--r--source/ast/svx/source/tbxctrls.po2
-rw-r--r--source/ast/svx/source/toolbars.po2
-rw-r--r--source/ast/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ast/svx/uiconfig/ui.po206
-rw-r--r--source/ast/sw/source/core/layout.po2
-rw-r--r--source/ast/sw/source/core/undo.po2
-rw-r--r--source/ast/sw/source/core/unocore.po2
-rw-r--r--source/ast/sw/source/ui/app.po62
-rw-r--r--source/ast/sw/source/ui/chrdlg.po2
-rw-r--r--source/ast/sw/source/ui/config.po2
-rw-r--r--source/ast/sw/source/ui/dbui.po2
-rw-r--r--source/ast/sw/source/ui/dialog.po2
-rw-r--r--source/ast/sw/source/ui/dochdl.po2
-rw-r--r--source/ast/sw/source/ui/docvw.po2
-rw-r--r--source/ast/sw/source/ui/envelp.po2
-rw-r--r--source/ast/sw/source/ui/fldui.po2
-rw-r--r--source/ast/sw/source/ui/fmtui.po2
-rw-r--r--source/ast/sw/source/ui/frmdlg.po2
-rw-r--r--source/ast/sw/source/ui/globdoc.po2
-rw-r--r--source/ast/sw/source/ui/index.po2
-rw-r--r--source/ast/sw/source/ui/lingu.po2
-rw-r--r--source/ast/sw/source/ui/misc.po2
-rw-r--r--source/ast/sw/source/ui/ribbar.po2
-rw-r--r--source/ast/sw/source/ui/shells.po2
-rw-r--r--source/ast/sw/source/ui/smartmenu.po2
-rw-r--r--source/ast/sw/source/ui/table.po2
-rw-r--r--source/ast/sw/source/ui/uiview.po2
-rw-r--r--source/ast/sw/source/ui/utlui.po2
-rw-r--r--source/ast/sw/source/ui/web.po2
-rw-r--r--source/ast/sw/source/ui/wrtsh.po2
-rw-r--r--source/ast/sw/uiconfig/sw/ui.po278
-rw-r--r--source/ast/sw/uiconfig/swriter/ui.po126
-rw-r--r--source/ast/swext/mediawiki/help.po2
-rw-r--r--source/ast/swext/mediawiki/src.po2
-rw-r--r--source/ast/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ast/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ast/sysui/desktop/share.po2
-rw-r--r--source/ast/tubes/uiconfig/ui.po2
-rw-r--r--source/ast/uui/source.po2
-rw-r--r--source/ast/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ast/vcl/source/edit.po2
-rw-r--r--source/ast/vcl/source/src.po2
-rw-r--r--source/ast/vcl/uiconfig/ui.po2
-rw-r--r--source/ast/wizards/source/euro.po2
-rw-r--r--source/ast/wizards/source/formwizard.po144
-rw-r--r--source/ast/wizards/source/importwizard.po2
-rw-r--r--source/ast/wizards/source/template.po45
-rw-r--r--source/ast/xmlsecurity/source/component.po2
-rw-r--r--source/ast/xmlsecurity/source/dialogs.po2
-rw-r--r--source/be/accessibility/source/helper.po2
-rw-r--r--source/be/android/sdremote/res/values.po2
-rw-r--r--source/be/avmedia/source/framework.po2
-rw-r--r--source/be/avmedia/source/viewer.po2
-rw-r--r--source/be/basctl/source/basicide.po2
-rw-r--r--source/be/basctl/source/dlged.po2
-rw-r--r--source/be/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/be/basic/source/classes.po2
-rw-r--r--source/be/basic/source/sbx.po2
-rw-r--r--source/be/chart2/source/controller/dialogs.po2
-rw-r--r--source/be/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/source/resource.po2
-rw-r--r--source/be/cui/source/customize.po2
-rw-r--r--source/be/cui/source/dialogs.po2
-rw-r--r--source/be/cui/source/options.po2
-rw-r--r--source/be/cui/source/tabpages.po2
-rw-r--r--source/be/cui/uiconfig/ui.po2
-rw-r--r--source/be/dbaccess/source/core/resource.po2
-rw-r--r--source/be/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/be/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/be/dbaccess/source/ui/app.po2
-rw-r--r--source/be/dbaccess/source/ui/browser.po2
-rw-r--r--source/be/dbaccess/source/ui/control.po2
-rw-r--r--source/be/dbaccess/source/ui/dlg.po2
-rw-r--r--source/be/dbaccess/source/ui/inc.po2
-rw-r--r--source/be/dbaccess/source/ui/misc.po2
-rw-r--r--source/be/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/be/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/be/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/be/dbaccess/source/ui/uno.po2
-rw-r--r--source/be/desktop/source/app.po2
-rw-r--r--source/be/desktop/source/deployment/gui.po2
-rw-r--r--source/be/desktop/source/deployment/manager.po2
-rw-r--r--source/be/desktop/source/deployment/misc.po2
-rw-r--r--source/be/desktop/source/deployment/registry.po2
-rw-r--r--source/be/desktop/source/deployment/registry/component.po2
-rw-r--r--source/be/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/be/desktop/source/deployment/registry/help.po2
-rw-r--r--source/be/desktop/source/deployment/registry/package.po2
-rw-r--r--source/be/desktop/source/deployment/registry/script.po2
-rw-r--r--source/be/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/be/desktop/source/deployment/unopkg.po2
-rw-r--r--source/be/desktop/uiconfig/ui.po2
-rw-r--r--source/be/dictionaries/af_ZA.po2
-rw-r--r--source/be/dictionaries/an_ES.po2
-rw-r--r--source/be/dictionaries/ar.po2
-rw-r--r--source/be/dictionaries/be_BY.po2
-rw-r--r--source/be/dictionaries/bg_BG.po2
-rw-r--r--source/be/dictionaries/bn_BD.po2
-rw-r--r--source/be/dictionaries/br_FR.po2
-rw-r--r--source/be/dictionaries/ca.po2
-rw-r--r--source/be/dictionaries/cs_CZ.po2
-rw-r--r--source/be/dictionaries/da_DK.po2
-rw-r--r--source/be/dictionaries/de.po2
-rw-r--r--source/be/dictionaries/el_GR.po2
-rw-r--r--source/be/dictionaries/en.po2
-rw-r--r--source/be/dictionaries/en/dialog.po2
-rw-r--r--source/be/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/be/dictionaries/es.po2
-rw-r--r--source/be/dictionaries/et_EE.po2
-rw-r--r--source/be/dictionaries/fr_FR.po2
-rw-r--r--source/be/dictionaries/gd_GB.po2
-rw-r--r--source/be/dictionaries/gl.po2
-rw-r--r--source/be/dictionaries/gu_IN.po2
-rw-r--r--source/be/dictionaries/he_IL.po2
-rw-r--r--source/be/dictionaries/hi_IN.po2
-rw-r--r--source/be/dictionaries/hr_HR.po2
-rw-r--r--source/be/dictionaries/hu_HU.po2
-rw-r--r--source/be/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/be/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/be/dictionaries/it_IT.po2
-rw-r--r--source/be/dictionaries/ku_TR.po2
-rw-r--r--source/be/dictionaries/lt_LT.po2
-rw-r--r--source/be/dictionaries/lv_LV.po2
-rw-r--r--source/be/dictionaries/ne_NP.po2
-rw-r--r--source/be/dictionaries/nl_NL.po2
-rw-r--r--source/be/dictionaries/no.po2
-rw-r--r--source/be/dictionaries/oc_FR.po2
-rw-r--r--source/be/dictionaries/pl_PL.po2
-rw-r--r--source/be/dictionaries/pt_BR.po2
-rw-r--r--source/be/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/be/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/be/dictionaries/pt_PT.po2
-rw-r--r--source/be/dictionaries/ro.po2
-rw-r--r--source/be/dictionaries/ru_RU.po2
-rw-r--r--source/be/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/be/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/be/dictionaries/si_LK.po2
-rw-r--r--source/be/dictionaries/sk_SK.po2
-rw-r--r--source/be/dictionaries/sl_SI.po2
-rw-r--r--source/be/dictionaries/sr.po2
-rw-r--r--source/be/dictionaries/sv_SE.po2
-rw-r--r--source/be/dictionaries/sw_TZ.po2
-rw-r--r--source/be/dictionaries/te_IN.po2
-rw-r--r--source/be/dictionaries/th_TH.po2
-rw-r--r--source/be/dictionaries/uk_UA.po2
-rw-r--r--source/be/dictionaries/vi.po2
-rw-r--r--source/be/dictionaries/zu_ZA.po2
-rw-r--r--source/be/editeng/source/accessibility.po2
-rw-r--r--source/be/editeng/source/editeng.po2
-rw-r--r--source/be/editeng/source/items.po2
-rw-r--r--source/be/editeng/source/misc.po2
-rw-r--r--source/be/editeng/source/outliner.po2
-rw-r--r--source/be/extensions/source/abpilot.po2
-rw-r--r--source/be/extensions/source/bibliography.po2
-rw-r--r--source/be/extensions/source/dbpilots.po2
-rw-r--r--source/be/extensions/source/propctrlr.po2
-rw-r--r--source/be/extensions/source/scanner.po2
-rw-r--r--source/be/extensions/source/update/check.po2
-rw-r--r--source/be/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/be/filter/source/config/fragments/filters.po2
-rw-r--r--source/be/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/be/filter/source/config/fragments/types.po2
-rw-r--r--source/be/filter/source/flash.po2
-rw-r--r--source/be/filter/source/graphicfilter/eps.po2
-rw-r--r--source/be/filter/source/pdf.po2
-rw-r--r--source/be/filter/source/t602.po2
-rw-r--r--source/be/filter/source/xsltdialog.po2
-rw-r--r--source/be/filter/uiconfig/ui.po2
-rw-r--r--source/be/forms/source/resource.po2
-rw-r--r--source/be/formula/source/core/resource.po38
-rw-r--r--source/be/formula/source/ui/dlg.po2
-rw-r--r--source/be/fpicker/source/office.po2
-rw-r--r--source/be/framework/source/classes.po2
-rw-r--r--source/be/framework/source/services.po2
-rw-r--r--source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--source/be/librelogo/source/pythonpath.po2
-rw-r--r--source/be/mysqlc/source.po2
-rw-r--r--source/be/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/be/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/be/nlpsolver/src/locale.po2
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/be/padmin/source.po2
-rw-r--r--source/be/readlicense_oo/docs.po2
-rw-r--r--source/be/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/be/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/be/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/be/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/be/reportbuilder/util.po2
-rw-r--r--source/be/reportdesign/source/core/resource.po2
-rw-r--r--source/be/reportdesign/source/ui/dlg.po2
-rw-r--r--source/be/reportdesign/source/ui/inspection.po2
-rw-r--r--source/be/reportdesign/source/ui/report.po2
-rw-r--r--source/be/sc/source/core/src.po2
-rw-r--r--source/be/sc/source/ui/cctrl.po2
-rw-r--r--source/be/sc/source/ui/dbgui.po2
-rw-r--r--source/be/sc/source/ui/docshell.po2
-rw-r--r--source/be/sc/source/ui/drawfunc.po2
-rw-r--r--source/be/sc/source/ui/formdlg.po2
-rw-r--r--source/be/sc/source/ui/miscdlgs.po2
-rw-r--r--source/be/sc/source/ui/navipi.po2
-rw-r--r--source/be/sc/source/ui/optdlg.po2
-rw-r--r--source/be/sc/source/ui/pagedlg.po2
-rw-r--r--source/be/sc/source/ui/src.po385
-rw-r--r--source/be/sc/source/ui/styleui.po2
-rw-r--r--source/be/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/be/scaddins/source/analysis.po2
-rw-r--r--source/be/scaddins/source/datefunc.po2
-rw-r--r--source/be/scaddins/source/pricing.po2
-rw-r--r--source/be/sccomp/source/solver.po2
-rw-r--r--source/be/scp2/source/accessories.po2
-rw-r--r--source/be/scp2/source/activex.po2
-rw-r--r--source/be/scp2/source/base.po2
-rw-r--r--source/be/scp2/source/calc.po2
-rw-r--r--source/be/scp2/source/draw.po2
-rw-r--r--source/be/scp2/source/extensions.po2
-rw-r--r--source/be/scp2/source/gnome.po2
-rw-r--r--source/be/scp2/source/graphicfilter.po2
-rw-r--r--source/be/scp2/source/impress.po2
-rw-r--r--source/be/scp2/source/javafilter.po2
-rw-r--r--source/be/scp2/source/kde.po2
-rw-r--r--source/be/scp2/source/math.po2
-rw-r--r--source/be/scp2/source/onlineupdate.po2
-rw-r--r--source/be/scp2/source/ooo.po2
-rw-r--r--source/be/scp2/source/python.po18
-rw-r--r--source/be/scp2/source/quickstart.po2
-rw-r--r--source/be/scp2/source/sdkoo.po2
-rw-r--r--source/be/scp2/source/smoketest.po2
-rw-r--r--source/be/scp2/source/stdlibs.po2
-rw-r--r--source/be/scp2/source/tde.po2
-rw-r--r--source/be/scp2/source/winexplorerext.po2
-rw-r--r--source/be/scp2/source/writer.po2
-rw-r--r--source/be/scp2/source/xsltfilter.po2
-rw-r--r--source/be/sd/source/core.po2
-rw-r--r--source/be/sd/source/filter/html.po2
-rw-r--r--source/be/sd/source/ui/accessibility.po2
-rw-r--r--source/be/sd/source/ui/animations.po2
-rw-r--r--source/be/sd/source/ui/annotations.po2
-rw-r--r--source/be/sd/source/ui/app.po2
-rw-r--r--source/be/sd/source/ui/dlg.po2
-rw-r--r--source/be/sd/source/ui/slideshow.po2
-rw-r--r--source/be/sd/source/ui/table.po2
-rw-r--r--source/be/sd/source/ui/view.po2
-rw-r--r--source/be/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/be/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/be/sdext/source/minimizer.po2
-rw-r--r--source/be/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/be/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/be/setup_native/source/mac.po2
-rw-r--r--source/be/sfx2/source/appl.po2
-rw-r--r--source/be/sfx2/source/bastyp.po2
-rw-r--r--source/be/sfx2/source/control.po23
-rw-r--r--source/be/sfx2/source/dialog.po46
-rw-r--r--source/be/sfx2/source/doc.po126
-rw-r--r--source/be/sfx2/source/menu.po2
-rw-r--r--source/be/sfx2/source/view.po2
-rw-r--r--source/be/sfx2/uiconfig/ui.po2
-rw-r--r--source/be/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/be/starmath/source.po2
-rw-r--r--source/be/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/be/svl/source/items.po2
-rw-r--r--source/be/svl/source/misc.po2
-rw-r--r--source/be/svtools/source/contnr.po2
-rw-r--r--source/be/svtools/source/control.po2
-rw-r--r--source/be/svtools/source/dialogs.po2
-rw-r--r--source/be/svtools/source/java.po2
-rw-r--r--source/be/svtools/source/misc.po2
-rw-r--r--source/be/svtools/source/toolpanel.po2
-rw-r--r--source/be/svtools/uiconfig/ui.po53
-rw-r--r--source/be/svx/inc.po2
-rw-r--r--source/be/svx/source/accessibility.po2
-rw-r--r--source/be/svx/source/core.po2
-rw-r--r--source/be/svx/source/dialog.po224
-rw-r--r--source/be/svx/source/engine3d.po2
-rw-r--r--source/be/svx/source/fmcomp.po2
-rw-r--r--source/be/svx/source/form.po2
-rw-r--r--source/be/svx/source/gallery2.po2
-rw-r--r--source/be/svx/source/items.po2
-rw-r--r--source/be/svx/source/src.po2
-rw-r--r--source/be/svx/source/stbctrls.po2
-rw-r--r--source/be/svx/source/svdraw.po2
-rw-r--r--source/be/svx/source/table.po2
-rw-r--r--source/be/svx/source/tbxctrls.po2
-rw-r--r--source/be/svx/source/toolbars.po2
-rw-r--r--source/be/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/be/svx/uiconfig/ui.po204
-rw-r--r--source/be/sw/source/core/layout.po2
-rw-r--r--source/be/sw/source/core/undo.po2
-rw-r--r--source/be/sw/source/core/unocore.po2
-rw-r--r--source/be/sw/source/ui/app.po2
-rw-r--r--source/be/sw/source/ui/chrdlg.po2
-rw-r--r--source/be/sw/source/ui/config.po2
-rw-r--r--source/be/sw/source/ui/dbui.po2
-rw-r--r--source/be/sw/source/ui/dialog.po2
-rw-r--r--source/be/sw/source/ui/dochdl.po2
-rw-r--r--source/be/sw/source/ui/docvw.po2
-rw-r--r--source/be/sw/source/ui/envelp.po2
-rw-r--r--source/be/sw/source/ui/fldui.po2
-rw-r--r--source/be/sw/source/ui/fmtui.po2
-rw-r--r--source/be/sw/source/ui/frmdlg.po2
-rw-r--r--source/be/sw/source/ui/globdoc.po2
-rw-r--r--source/be/sw/source/ui/index.po2
-rw-r--r--source/be/sw/source/ui/lingu.po2
-rw-r--r--source/be/sw/source/ui/misc.po2
-rw-r--r--source/be/sw/source/ui/ribbar.po2
-rw-r--r--source/be/sw/source/ui/shells.po2
-rw-r--r--source/be/sw/source/ui/smartmenu.po2
-rw-r--r--source/be/sw/source/ui/table.po2
-rw-r--r--source/be/sw/source/ui/uiview.po2
-rw-r--r--source/be/sw/source/ui/utlui.po2
-rw-r--r--source/be/sw/source/ui/web.po2
-rw-r--r--source/be/sw/source/ui/wrtsh.po2
-rw-r--r--source/be/sw/uiconfig/sw/ui.po284
-rw-r--r--source/be/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/be/swext/mediawiki/help.po2
-rw-r--r--source/be/swext/mediawiki/src.po2
-rw-r--r--source/be/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/be/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/be/sysui/desktop/share.po2
-rw-r--r--source/be/tubes/uiconfig/ui.po2
-rw-r--r--source/be/uui/source.po2
-rw-r--r--source/be/vcl/qa/cppunit/builder.po2
-rw-r--r--source/be/vcl/source/edit.po2
-rw-r--r--source/be/vcl/source/src.po2
-rw-r--r--source/be/vcl/uiconfig/ui.po2
-rw-r--r--source/be/wizards/source/euro.po2
-rw-r--r--source/be/wizards/source/formwizard.po2
-rw-r--r--source/be/wizards/source/importwizard.po2
-rw-r--r--source/be/wizards/source/template.po2
-rw-r--r--source/be/xmlsecurity/source/component.po2
-rw-r--r--source/be/xmlsecurity/source/dialogs.po2
-rw-r--r--source/bg/accessibility/source/helper.po2
-rw-r--r--source/bg/android/sdremote/res/values.po2
-rw-r--r--source/bg/avmedia/source/framework.po2
-rw-r--r--source/bg/avmedia/source/viewer.po2
-rw-r--r--source/bg/basctl/source/basicide.po2
-rw-r--r--source/bg/basctl/source/dlged.po2
-rw-r--r--source/bg/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/bg/basic/source/classes.po2
-rw-r--r--source/bg/basic/source/sbx.po2
-rw-r--r--source/bg/chart2/source/controller/dialogs.po2
-rw-r--r--source/bg/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/connectivity/source/resource.po2
-rw-r--r--source/bg/cui/source/customize.po2
-rw-r--r--source/bg/cui/source/dialogs.po2
-rw-r--r--source/bg/cui/source/options.po4
-rw-r--r--source/bg/cui/source/tabpages.po2
-rw-r--r--source/bg/cui/uiconfig/ui.po4
-rw-r--r--source/bg/dbaccess/source/core/resource.po2
-rw-r--r--source/bg/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/bg/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/bg/dbaccess/source/ui/app.po2
-rw-r--r--source/bg/dbaccess/source/ui/browser.po2
-rw-r--r--source/bg/dbaccess/source/ui/control.po2
-rw-r--r--source/bg/dbaccess/source/ui/dlg.po2
-rw-r--r--source/bg/dbaccess/source/ui/inc.po2
-rw-r--r--source/bg/dbaccess/source/ui/misc.po2
-rw-r--r--source/bg/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/bg/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/bg/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/bg/dbaccess/source/ui/uno.po2
-rw-r--r--source/bg/desktop/source/app.po2
-rw-r--r--source/bg/desktop/source/deployment/gui.po2
-rw-r--r--source/bg/desktop/source/deployment/manager.po2
-rw-r--r--source/bg/desktop/source/deployment/misc.po2
-rw-r--r--source/bg/desktop/source/deployment/registry.po2
-rw-r--r--source/bg/desktop/source/deployment/registry/component.po2
-rw-r--r--source/bg/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/bg/desktop/source/deployment/registry/help.po2
-rw-r--r--source/bg/desktop/source/deployment/registry/package.po2
-rw-r--r--source/bg/desktop/source/deployment/registry/script.po2
-rw-r--r--source/bg/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/bg/desktop/source/deployment/unopkg.po2
-rw-r--r--source/bg/desktop/uiconfig/ui.po2
-rw-r--r--source/bg/dictionaries/af_ZA.po2
-rw-r--r--source/bg/dictionaries/an_ES.po2
-rw-r--r--source/bg/dictionaries/ar.po2
-rw-r--r--source/bg/dictionaries/be_BY.po2
-rw-r--r--source/bg/dictionaries/bg_BG.po2
-rw-r--r--source/bg/dictionaries/bn_BD.po2
-rw-r--r--source/bg/dictionaries/br_FR.po2
-rw-r--r--source/bg/dictionaries/ca.po2
-rw-r--r--source/bg/dictionaries/cs_CZ.po2
-rw-r--r--source/bg/dictionaries/da_DK.po2
-rw-r--r--source/bg/dictionaries/de.po2
-rw-r--r--source/bg/dictionaries/el_GR.po2
-rw-r--r--source/bg/dictionaries/en.po2
-rw-r--r--source/bg/dictionaries/en/dialog.po2
-rw-r--r--source/bg/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bg/dictionaries/es.po2
-rw-r--r--source/bg/dictionaries/et_EE.po2
-rw-r--r--source/bg/dictionaries/fr_FR.po2
-rw-r--r--source/bg/dictionaries/gd_GB.po2
-rw-r--r--source/bg/dictionaries/gl.po2
-rw-r--r--source/bg/dictionaries/gu_IN.po2
-rw-r--r--source/bg/dictionaries/he_IL.po2
-rw-r--r--source/bg/dictionaries/hi_IN.po2
-rw-r--r--source/bg/dictionaries/hr_HR.po2
-rw-r--r--source/bg/dictionaries/hu_HU.po2
-rw-r--r--source/bg/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/bg/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bg/dictionaries/it_IT.po2
-rw-r--r--source/bg/dictionaries/ku_TR.po2
-rw-r--r--source/bg/dictionaries/lt_LT.po2
-rw-r--r--source/bg/dictionaries/lv_LV.po2
-rw-r--r--source/bg/dictionaries/ne_NP.po2
-rw-r--r--source/bg/dictionaries/nl_NL.po2
-rw-r--r--source/bg/dictionaries/no.po2
-rw-r--r--source/bg/dictionaries/oc_FR.po2
-rw-r--r--source/bg/dictionaries/pl_PL.po2
-rw-r--r--source/bg/dictionaries/pt_BR.po2
-rw-r--r--source/bg/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/bg/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bg/dictionaries/pt_PT.po2
-rw-r--r--source/bg/dictionaries/ro.po2
-rw-r--r--source/bg/dictionaries/ru_RU.po2
-rw-r--r--source/bg/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/bg/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bg/dictionaries/si_LK.po2
-rw-r--r--source/bg/dictionaries/sk_SK.po2
-rw-r--r--source/bg/dictionaries/sl_SI.po2
-rw-r--r--source/bg/dictionaries/sr.po2
-rw-r--r--source/bg/dictionaries/sv_SE.po2
-rw-r--r--source/bg/dictionaries/sw_TZ.po2
-rw-r--r--source/bg/dictionaries/te_IN.po2
-rw-r--r--source/bg/dictionaries/th_TH.po2
-rw-r--r--source/bg/dictionaries/uk_UA.po2
-rw-r--r--source/bg/dictionaries/vi.po2
-rw-r--r--source/bg/dictionaries/zu_ZA.po2
-rw-r--r--source/bg/editeng/source/accessibility.po2
-rw-r--r--source/bg/editeng/source/editeng.po2
-rw-r--r--source/bg/editeng/source/items.po2
-rw-r--r--source/bg/editeng/source/misc.po2
-rw-r--r--source/bg/editeng/source/outliner.po2
-rw-r--r--source/bg/extensions/source/abpilot.po2
-rw-r--r--source/bg/extensions/source/bibliography.po2
-rw-r--r--source/bg/extensions/source/dbpilots.po2
-rw-r--r--source/bg/extensions/source/propctrlr.po2
-rw-r--r--source/bg/extensions/source/scanner.po2
-rw-r--r--source/bg/extensions/source/update/check.po2
-rw-r--r--source/bg/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/bg/filter/source/config/fragments/filters.po2
-rw-r--r--source/bg/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/bg/filter/source/config/fragments/types.po2
-rw-r--r--source/bg/filter/source/flash.po2
-rw-r--r--source/bg/filter/source/graphicfilter/eps.po2
-rw-r--r--source/bg/filter/source/pdf.po2
-rw-r--r--source/bg/filter/source/t602.po2
-rw-r--r--source/bg/filter/source/xsltdialog.po2
-rw-r--r--source/bg/filter/uiconfig/ui.po2
-rw-r--r--source/bg/forms/source/resource.po2
-rw-r--r--source/bg/formula/source/core/resource.po38
-rw-r--r--source/bg/formula/source/ui/dlg.po2
-rw-r--r--source/bg/fpicker/source/office.po2
-rw-r--r--source/bg/framework/source/classes.po2
-rw-r--r--source/bg/framework/source/services.po2
-rw-r--r--source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/bg/librelogo/source/pythonpath.po2
-rw-r--r--source/bg/mysqlc/source.po2
-rw-r--r--source/bg/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bg/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/bg/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/bg/nlpsolver/src/locale.po2
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/bg/padmin/source.po2
-rw-r--r--source/bg/readlicense_oo/docs.po2
-rw-r--r--source/bg/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/bg/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bg/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/bg/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/bg/reportbuilder/util.po2
-rw-r--r--source/bg/reportdesign/source/core/resource.po2
-rw-r--r--source/bg/reportdesign/source/ui/dlg.po2
-rw-r--r--source/bg/reportdesign/source/ui/inspection.po2
-rw-r--r--source/bg/reportdesign/source/ui/report.po2
-rw-r--r--source/bg/sc/source/core/src.po2
-rw-r--r--source/bg/sc/source/ui/cctrl.po2
-rw-r--r--source/bg/sc/source/ui/dbgui.po2
-rw-r--r--source/bg/sc/source/ui/docshell.po2
-rw-r--r--source/bg/sc/source/ui/drawfunc.po2
-rw-r--r--source/bg/sc/source/ui/formdlg.po2
-rw-r--r--source/bg/sc/source/ui/miscdlgs.po2
-rw-r--r--source/bg/sc/source/ui/navipi.po2
-rw-r--r--source/bg/sc/source/ui/optdlg.po2
-rw-r--r--source/bg/sc/source/ui/pagedlg.po2
-rw-r--r--source/bg/sc/source/ui/src.po384
-rw-r--r--source/bg/sc/source/ui/styleui.po4
-rw-r--r--source/bg/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/bg/scaddins/source/analysis.po2
-rw-r--r--source/bg/scaddins/source/datefunc.po2
-rw-r--r--source/bg/scaddins/source/pricing.po2
-rw-r--r--source/bg/sccomp/source/solver.po2
-rw-r--r--source/bg/scp2/source/accessories.po2
-rw-r--r--source/bg/scp2/source/activex.po2
-rw-r--r--source/bg/scp2/source/base.po2
-rw-r--r--source/bg/scp2/source/calc.po2
-rw-r--r--source/bg/scp2/source/draw.po2
-rw-r--r--source/bg/scp2/source/extensions.po2
-rw-r--r--source/bg/scp2/source/gnome.po2
-rw-r--r--source/bg/scp2/source/graphicfilter.po2
-rw-r--r--source/bg/scp2/source/impress.po2
-rw-r--r--source/bg/scp2/source/javafilter.po2
-rw-r--r--source/bg/scp2/source/kde.po2
-rw-r--r--source/bg/scp2/source/math.po2
-rw-r--r--source/bg/scp2/source/onlineupdate.po2
-rw-r--r--source/bg/scp2/source/ooo.po2
-rw-r--r--source/bg/scp2/source/python.po18
-rw-r--r--source/bg/scp2/source/quickstart.po2
-rw-r--r--source/bg/scp2/source/sdkoo.po2
-rw-r--r--source/bg/scp2/source/smoketest.po2
-rw-r--r--source/bg/scp2/source/stdlibs.po2
-rw-r--r--source/bg/scp2/source/tde.po2
-rw-r--r--source/bg/scp2/source/winexplorerext.po2
-rw-r--r--source/bg/scp2/source/writer.po2
-rw-r--r--source/bg/scp2/source/xsltfilter.po2
-rw-r--r--source/bg/sd/source/core.po2
-rw-r--r--source/bg/sd/source/filter/html.po2
-rw-r--r--source/bg/sd/source/ui/accessibility.po2
-rw-r--r--source/bg/sd/source/ui/animations.po2
-rw-r--r--source/bg/sd/source/ui/annotations.po2
-rw-r--r--source/bg/sd/source/ui/app.po2
-rw-r--r--source/bg/sd/source/ui/dlg.po2
-rw-r--r--source/bg/sd/source/ui/slideshow.po2
-rw-r--r--source/bg/sd/source/ui/table.po2
-rw-r--r--source/bg/sd/source/ui/view.po2
-rw-r--r--source/bg/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/bg/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/bg/sdext/source/minimizer.po2
-rw-r--r--source/bg/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bg/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/bg/setup_native/source/mac.po2
-rw-r--r--source/bg/sfx2/source/appl.po2
-rw-r--r--source/bg/sfx2/source/bastyp.po2
-rw-r--r--source/bg/sfx2/source/control.po23
-rw-r--r--source/bg/sfx2/source/dialog.po46
-rw-r--r--source/bg/sfx2/source/doc.po126
-rw-r--r--source/bg/sfx2/source/menu.po2
-rw-r--r--source/bg/sfx2/source/view.po2
-rw-r--r--source/bg/sfx2/uiconfig/ui.po2
-rw-r--r--source/bg/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/bg/starmath/source.po2
-rw-r--r--source/bg/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/bg/svl/source/items.po2
-rw-r--r--source/bg/svl/source/misc.po2
-rw-r--r--source/bg/svtools/source/contnr.po2
-rw-r--r--source/bg/svtools/source/control.po2
-rw-r--r--source/bg/svtools/source/dialogs.po2
-rw-r--r--source/bg/svtools/source/java.po2
-rw-r--r--source/bg/svtools/source/misc.po2
-rw-r--r--source/bg/svtools/source/toolpanel.po2
-rw-r--r--source/bg/svtools/uiconfig/ui.po49
-rw-r--r--source/bg/svx/inc.po2
-rw-r--r--source/bg/svx/source/accessibility.po2
-rw-r--r--source/bg/svx/source/core.po2
-rw-r--r--source/bg/svx/source/dialog.po217
-rw-r--r--source/bg/svx/source/engine3d.po2
-rw-r--r--source/bg/svx/source/fmcomp.po2
-rw-r--r--source/bg/svx/source/form.po2
-rw-r--r--source/bg/svx/source/gallery2.po2
-rw-r--r--source/bg/svx/source/items.po2
-rw-r--r--source/bg/svx/source/src.po2
-rw-r--r--source/bg/svx/source/stbctrls.po2
-rw-r--r--source/bg/svx/source/svdraw.po2
-rw-r--r--source/bg/svx/source/table.po2
-rw-r--r--source/bg/svx/source/tbxctrls.po2
-rw-r--r--source/bg/svx/source/toolbars.po2
-rw-r--r--source/bg/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/bg/svx/uiconfig/ui.po204
-rw-r--r--source/bg/sw/source/core/layout.po2
-rw-r--r--source/bg/sw/source/core/undo.po2
-rw-r--r--source/bg/sw/source/core/unocore.po2
-rw-r--r--source/bg/sw/source/ui/app.po4
-rw-r--r--source/bg/sw/source/ui/chrdlg.po2
-rw-r--r--source/bg/sw/source/ui/config.po2
-rw-r--r--source/bg/sw/source/ui/dbui.po2
-rw-r--r--source/bg/sw/source/ui/dialog.po2
-rw-r--r--source/bg/sw/source/ui/dochdl.po2
-rw-r--r--source/bg/sw/source/ui/docvw.po2
-rw-r--r--source/bg/sw/source/ui/envelp.po2
-rw-r--r--source/bg/sw/source/ui/fldui.po2
-rw-r--r--source/bg/sw/source/ui/fmtui.po2
-rw-r--r--source/bg/sw/source/ui/frmdlg.po2
-rw-r--r--source/bg/sw/source/ui/globdoc.po2
-rw-r--r--source/bg/sw/source/ui/index.po2
-rw-r--r--source/bg/sw/source/ui/lingu.po2
-rw-r--r--source/bg/sw/source/ui/misc.po2
-rw-r--r--source/bg/sw/source/ui/ribbar.po2
-rw-r--r--source/bg/sw/source/ui/shells.po2
-rw-r--r--source/bg/sw/source/ui/smartmenu.po2
-rw-r--r--source/bg/sw/source/ui/table.po2
-rw-r--r--source/bg/sw/source/ui/uiview.po2
-rw-r--r--source/bg/sw/source/ui/utlui.po2
-rw-r--r--source/bg/sw/source/ui/web.po2
-rw-r--r--source/bg/sw/source/ui/wrtsh.po2
-rw-r--r--source/bg/sw/uiconfig/sw/ui.po278
-rw-r--r--source/bg/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/bg/swext/mediawiki/help.po2
-rw-r--r--source/bg/swext/mediawiki/src.po2
-rw-r--r--source/bg/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bg/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/bg/sysui/desktop/share.po2
-rw-r--r--source/bg/tubes/uiconfig/ui.po2
-rw-r--r--source/bg/uui/source.po2
-rw-r--r--source/bg/vcl/qa/cppunit/builder.po2
-rw-r--r--source/bg/vcl/source/edit.po2
-rw-r--r--source/bg/vcl/source/src.po2
-rw-r--r--source/bg/vcl/uiconfig/ui.po2
-rw-r--r--source/bg/wizards/source/euro.po2
-rw-r--r--source/bg/wizards/source/formwizard.po2
-rw-r--r--source/bg/wizards/source/importwizard.po2
-rw-r--r--source/bg/wizards/source/template.po2
-rw-r--r--source/bg/xmlsecurity/source/component.po2
-rw-r--r--source/bg/xmlsecurity/source/dialogs.po2
-rw-r--r--source/bn-IN/accessibility/source/helper.po2
-rw-r--r--source/bn-IN/android/sdremote/res/values.po2
-rw-r--r--source/bn-IN/avmedia/source/framework.po2
-rw-r--r--source/bn-IN/avmedia/source/viewer.po2
-rw-r--r--source/bn-IN/basctl/source/basicide.po2
-rw-r--r--source/bn-IN/basctl/source/dlged.po2
-rw-r--r--source/bn-IN/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/bn-IN/basic/source/classes.po2
-rw-r--r--source/bn-IN/basic/source/sbx.po2
-rw-r--r--source/bn-IN/chart2/source/controller/dialogs.po2
-rw-r--r--source/bn-IN/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/connectivity/source/resource.po2
-rw-r--r--source/bn-IN/cui/source/customize.po2
-rw-r--r--source/bn-IN/cui/source/dialogs.po2
-rw-r--r--source/bn-IN/cui/source/options.po2
-rw-r--r--source/bn-IN/cui/source/tabpages.po2
-rw-r--r--source/bn-IN/cui/uiconfig/ui.po2
-rw-r--r--source/bn-IN/dbaccess/source/core/resource.po2
-rw-r--r--source/bn-IN/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/bn-IN/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/bn-IN/dbaccess/source/ui/app.po2
-rw-r--r--source/bn-IN/dbaccess/source/ui/browser.po2
-rw-r--r--source/bn-IN/dbaccess/source/ui/control.po2
-rw-r--r--source/bn-IN/dbaccess/source/ui/dlg.po2
-rw-r--r--source/bn-IN/dbaccess/source/ui/inc.po2
-rw-r--r--source/bn-IN/dbaccess/source/ui/misc.po2
-rw-r--r--source/bn-IN/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/bn-IN/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/bn-IN/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/bn-IN/dbaccess/source/ui/uno.po2
-rw-r--r--source/bn-IN/desktop/source/app.po2
-rw-r--r--source/bn-IN/desktop/source/deployment/gui.po2
-rw-r--r--source/bn-IN/desktop/source/deployment/manager.po2
-rw-r--r--source/bn-IN/desktop/source/deployment/misc.po2
-rw-r--r--source/bn-IN/desktop/source/deployment/registry.po2
-rw-r--r--source/bn-IN/desktop/source/deployment/registry/component.po2
-rw-r--r--source/bn-IN/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/bn-IN/desktop/source/deployment/registry/help.po2
-rw-r--r--source/bn-IN/desktop/source/deployment/registry/package.po2
-rw-r--r--source/bn-IN/desktop/source/deployment/registry/script.po2
-rw-r--r--source/bn-IN/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/bn-IN/desktop/source/deployment/unopkg.po2
-rw-r--r--source/bn-IN/desktop/uiconfig/ui.po2
-rw-r--r--source/bn-IN/dictionaries/af_ZA.po2
-rw-r--r--source/bn-IN/dictionaries/an_ES.po2
-rw-r--r--source/bn-IN/dictionaries/ar.po2
-rw-r--r--source/bn-IN/dictionaries/be_BY.po2
-rw-r--r--source/bn-IN/dictionaries/bg_BG.po2
-rw-r--r--source/bn-IN/dictionaries/bn_BD.po2
-rw-r--r--source/bn-IN/dictionaries/br_FR.po2
-rw-r--r--source/bn-IN/dictionaries/ca.po2
-rw-r--r--source/bn-IN/dictionaries/cs_CZ.po2
-rw-r--r--source/bn-IN/dictionaries/da_DK.po2
-rw-r--r--source/bn-IN/dictionaries/de.po2
-rw-r--r--source/bn-IN/dictionaries/el_GR.po2
-rw-r--r--source/bn-IN/dictionaries/en.po2
-rw-r--r--source/bn-IN/dictionaries/en/dialog.po2
-rw-r--r--source/bn-IN/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn-IN/dictionaries/es.po2
-rw-r--r--source/bn-IN/dictionaries/et_EE.po2
-rw-r--r--source/bn-IN/dictionaries/fr_FR.po2
-rw-r--r--source/bn-IN/dictionaries/gd_GB.po2
-rw-r--r--source/bn-IN/dictionaries/gl.po2
-rw-r--r--source/bn-IN/dictionaries/gu_IN.po2
-rw-r--r--source/bn-IN/dictionaries/he_IL.po2
-rw-r--r--source/bn-IN/dictionaries/hi_IN.po2
-rw-r--r--source/bn-IN/dictionaries/hr_HR.po2
-rw-r--r--source/bn-IN/dictionaries/hu_HU.po2
-rw-r--r--source/bn-IN/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/bn-IN/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn-IN/dictionaries/it_IT.po2
-rw-r--r--source/bn-IN/dictionaries/ku_TR.po2
-rw-r--r--source/bn-IN/dictionaries/lt_LT.po2
-rw-r--r--source/bn-IN/dictionaries/lv_LV.po2
-rw-r--r--source/bn-IN/dictionaries/ne_NP.po2
-rw-r--r--source/bn-IN/dictionaries/nl_NL.po2
-rw-r--r--source/bn-IN/dictionaries/no.po2
-rw-r--r--source/bn-IN/dictionaries/oc_FR.po2
-rw-r--r--source/bn-IN/dictionaries/pl_PL.po2
-rw-r--r--source/bn-IN/dictionaries/pt_BR.po2
-rw-r--r--source/bn-IN/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/bn-IN/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn-IN/dictionaries/pt_PT.po2
-rw-r--r--source/bn-IN/dictionaries/ro.po2
-rw-r--r--source/bn-IN/dictionaries/ru_RU.po2
-rw-r--r--source/bn-IN/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/bn-IN/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn-IN/dictionaries/si_LK.po2
-rw-r--r--source/bn-IN/dictionaries/sk_SK.po2
-rw-r--r--source/bn-IN/dictionaries/sl_SI.po2
-rw-r--r--source/bn-IN/dictionaries/sr.po2
-rw-r--r--source/bn-IN/dictionaries/sv_SE.po2
-rw-r--r--source/bn-IN/dictionaries/sw_TZ.po2
-rw-r--r--source/bn-IN/dictionaries/te_IN.po2
-rw-r--r--source/bn-IN/dictionaries/th_TH.po2
-rw-r--r--source/bn-IN/dictionaries/uk_UA.po2
-rw-r--r--source/bn-IN/dictionaries/vi.po2
-rw-r--r--source/bn-IN/dictionaries/zu_ZA.po2
-rw-r--r--source/bn-IN/editeng/source/accessibility.po2
-rw-r--r--source/bn-IN/editeng/source/editeng.po2
-rw-r--r--source/bn-IN/editeng/source/items.po2
-rw-r--r--source/bn-IN/editeng/source/misc.po2
-rw-r--r--source/bn-IN/editeng/source/outliner.po2
-rw-r--r--source/bn-IN/extensions/source/abpilot.po2
-rw-r--r--source/bn-IN/extensions/source/bibliography.po2
-rw-r--r--source/bn-IN/extensions/source/dbpilots.po2
-rw-r--r--source/bn-IN/extensions/source/propctrlr.po2
-rw-r--r--source/bn-IN/extensions/source/scanner.po2
-rw-r--r--source/bn-IN/extensions/source/update/check.po2
-rw-r--r--source/bn-IN/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/bn-IN/filter/source/config/fragments/filters.po2
-rw-r--r--source/bn-IN/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/bn-IN/filter/source/config/fragments/types.po2
-rw-r--r--source/bn-IN/filter/source/flash.po2
-rw-r--r--source/bn-IN/filter/source/graphicfilter/eps.po2
-rw-r--r--source/bn-IN/filter/source/pdf.po2
-rw-r--r--source/bn-IN/filter/source/t602.po2
-rw-r--r--source/bn-IN/filter/source/xsltdialog.po2
-rw-r--r--source/bn-IN/filter/uiconfig/ui.po2
-rw-r--r--source/bn-IN/forms/source/resource.po2
-rw-r--r--source/bn-IN/formula/source/core/resource.po38
-rw-r--r--source/bn-IN/formula/source/ui/dlg.po2
-rw-r--r--source/bn-IN/fpicker/source/office.po2
-rw-r--r--source/bn-IN/framework/source/classes.po2
-rw-r--r--source/bn-IN/framework/source/services.po2
-rw-r--r--source/bn-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/bn-IN/librelogo/source/pythonpath.po2
-rw-r--r--source/bn-IN/mysqlc/source.po2
-rw-r--r--source/bn-IN/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn-IN/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/bn-IN/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/bn-IN/nlpsolver/src/locale.po2
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/bn-IN/padmin/source.po2
-rw-r--r--source/bn-IN/readlicense_oo/docs.po2
-rw-r--r--source/bn-IN/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/bn-IN/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn-IN/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/bn-IN/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/bn-IN/reportbuilder/util.po2
-rw-r--r--source/bn-IN/reportdesign/source/core/resource.po2
-rw-r--r--source/bn-IN/reportdesign/source/ui/dlg.po2
-rw-r--r--source/bn-IN/reportdesign/source/ui/inspection.po2
-rw-r--r--source/bn-IN/reportdesign/source/ui/report.po2
-rw-r--r--source/bn-IN/sc/source/core/src.po2
-rw-r--r--source/bn-IN/sc/source/ui/cctrl.po2
-rw-r--r--source/bn-IN/sc/source/ui/dbgui.po2
-rw-r--r--source/bn-IN/sc/source/ui/docshell.po2
-rw-r--r--source/bn-IN/sc/source/ui/drawfunc.po2
-rw-r--r--source/bn-IN/sc/source/ui/formdlg.po2
-rw-r--r--source/bn-IN/sc/source/ui/miscdlgs.po2
-rw-r--r--source/bn-IN/sc/source/ui/navipi.po2
-rw-r--r--source/bn-IN/sc/source/ui/optdlg.po2
-rw-r--r--source/bn-IN/sc/source/ui/pagedlg.po2
-rw-r--r--source/bn-IN/sc/source/ui/src.po387
-rw-r--r--source/bn-IN/sc/source/ui/styleui.po2
-rw-r--r--source/bn-IN/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/bn-IN/scaddins/source/analysis.po2
-rw-r--r--source/bn-IN/scaddins/source/datefunc.po2
-rw-r--r--source/bn-IN/scaddins/source/pricing.po2
-rw-r--r--source/bn-IN/sccomp/source/solver.po2
-rw-r--r--source/bn-IN/scp2/source/accessories.po2
-rw-r--r--source/bn-IN/scp2/source/activex.po2
-rw-r--r--source/bn-IN/scp2/source/base.po2
-rw-r--r--source/bn-IN/scp2/source/calc.po2
-rw-r--r--source/bn-IN/scp2/source/draw.po2
-rw-r--r--source/bn-IN/scp2/source/extensions.po2
-rw-r--r--source/bn-IN/scp2/source/gnome.po2
-rw-r--r--source/bn-IN/scp2/source/graphicfilter.po2
-rw-r--r--source/bn-IN/scp2/source/impress.po2
-rw-r--r--source/bn-IN/scp2/source/javafilter.po2
-rw-r--r--source/bn-IN/scp2/source/kde.po2
-rw-r--r--source/bn-IN/scp2/source/math.po2
-rw-r--r--source/bn-IN/scp2/source/onlineupdate.po2
-rw-r--r--source/bn-IN/scp2/source/ooo.po2
-rw-r--r--source/bn-IN/scp2/source/python.po18
-rw-r--r--source/bn-IN/scp2/source/quickstart.po2
-rw-r--r--source/bn-IN/scp2/source/sdkoo.po2
-rw-r--r--source/bn-IN/scp2/source/smoketest.po2
-rw-r--r--source/bn-IN/scp2/source/stdlibs.po2
-rw-r--r--source/bn-IN/scp2/source/tde.po2
-rw-r--r--source/bn-IN/scp2/source/winexplorerext.po2
-rw-r--r--source/bn-IN/scp2/source/writer.po2
-rw-r--r--source/bn-IN/scp2/source/xsltfilter.po2
-rw-r--r--source/bn-IN/sd/source/core.po2
-rw-r--r--source/bn-IN/sd/source/filter/html.po2
-rw-r--r--source/bn-IN/sd/source/ui/accessibility.po2
-rw-r--r--source/bn-IN/sd/source/ui/animations.po2
-rw-r--r--source/bn-IN/sd/source/ui/annotations.po2
-rw-r--r--source/bn-IN/sd/source/ui/app.po2
-rw-r--r--source/bn-IN/sd/source/ui/dlg.po2
-rw-r--r--source/bn-IN/sd/source/ui/slideshow.po2
-rw-r--r--source/bn-IN/sd/source/ui/table.po2
-rw-r--r--source/bn-IN/sd/source/ui/view.po2
-rw-r--r--source/bn-IN/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/bn-IN/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/bn-IN/sdext/source/minimizer.po2
-rw-r--r--source/bn-IN/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn-IN/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/bn-IN/setup_native/source/mac.po2
-rw-r--r--source/bn-IN/sfx2/source/appl.po2
-rw-r--r--source/bn-IN/sfx2/source/bastyp.po2
-rw-r--r--source/bn-IN/sfx2/source/control.po23
-rw-r--r--source/bn-IN/sfx2/source/dialog.po46
-rw-r--r--source/bn-IN/sfx2/source/doc.po126
-rw-r--r--source/bn-IN/sfx2/source/menu.po2
-rw-r--r--source/bn-IN/sfx2/source/view.po2
-rw-r--r--source/bn-IN/sfx2/uiconfig/ui.po2
-rw-r--r--source/bn-IN/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/bn-IN/starmath/source.po2
-rw-r--r--source/bn-IN/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/bn-IN/svl/source/items.po2
-rw-r--r--source/bn-IN/svl/source/misc.po2
-rw-r--r--source/bn-IN/svtools/source/contnr.po2
-rw-r--r--source/bn-IN/svtools/source/control.po2
-rw-r--r--source/bn-IN/svtools/source/dialogs.po2
-rw-r--r--source/bn-IN/svtools/source/java.po2
-rw-r--r--source/bn-IN/svtools/source/misc.po2
-rw-r--r--source/bn-IN/svtools/source/toolpanel.po2
-rw-r--r--source/bn-IN/svtools/uiconfig/ui.po53
-rw-r--r--source/bn-IN/svx/inc.po2
-rw-r--r--source/bn-IN/svx/source/accessibility.po2
-rw-r--r--source/bn-IN/svx/source/core.po2
-rw-r--r--source/bn-IN/svx/source/dialog.po226
-rw-r--r--source/bn-IN/svx/source/engine3d.po2
-rw-r--r--source/bn-IN/svx/source/fmcomp.po2
-rw-r--r--source/bn-IN/svx/source/form.po2
-rw-r--r--source/bn-IN/svx/source/gallery2.po2
-rw-r--r--source/bn-IN/svx/source/items.po2
-rw-r--r--source/bn-IN/svx/source/src.po2
-rw-r--r--source/bn-IN/svx/source/stbctrls.po2
-rw-r--r--source/bn-IN/svx/source/svdraw.po2
-rw-r--r--source/bn-IN/svx/source/table.po2
-rw-r--r--source/bn-IN/svx/source/tbxctrls.po2
-rw-r--r--source/bn-IN/svx/source/toolbars.po2
-rw-r--r--source/bn-IN/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/bn-IN/svx/uiconfig/ui.po204
-rw-r--r--source/bn-IN/sw/source/core/layout.po2
-rw-r--r--source/bn-IN/sw/source/core/undo.po2
-rw-r--r--source/bn-IN/sw/source/core/unocore.po2
-rw-r--r--source/bn-IN/sw/source/ui/app.po2
-rw-r--r--source/bn-IN/sw/source/ui/chrdlg.po2
-rw-r--r--source/bn-IN/sw/source/ui/config.po2
-rw-r--r--source/bn-IN/sw/source/ui/dbui.po2
-rw-r--r--source/bn-IN/sw/source/ui/dialog.po2
-rw-r--r--source/bn-IN/sw/source/ui/dochdl.po2
-rw-r--r--source/bn-IN/sw/source/ui/docvw.po2
-rw-r--r--source/bn-IN/sw/source/ui/envelp.po2
-rw-r--r--source/bn-IN/sw/source/ui/fldui.po2
-rw-r--r--source/bn-IN/sw/source/ui/fmtui.po2
-rw-r--r--source/bn-IN/sw/source/ui/frmdlg.po2
-rw-r--r--source/bn-IN/sw/source/ui/globdoc.po2
-rw-r--r--source/bn-IN/sw/source/ui/index.po2
-rw-r--r--source/bn-IN/sw/source/ui/lingu.po2
-rw-r--r--source/bn-IN/sw/source/ui/misc.po2
-rw-r--r--source/bn-IN/sw/source/ui/ribbar.po2
-rw-r--r--source/bn-IN/sw/source/ui/shells.po2
-rw-r--r--source/bn-IN/sw/source/ui/smartmenu.po2
-rw-r--r--source/bn-IN/sw/source/ui/table.po2
-rw-r--r--source/bn-IN/sw/source/ui/uiview.po2
-rw-r--r--source/bn-IN/sw/source/ui/utlui.po2
-rw-r--r--source/bn-IN/sw/source/ui/web.po2
-rw-r--r--source/bn-IN/sw/source/ui/wrtsh.po2
-rw-r--r--source/bn-IN/sw/uiconfig/sw/ui.po280
-rw-r--r--source/bn-IN/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/bn-IN/swext/mediawiki/help.po2
-rw-r--r--source/bn-IN/swext/mediawiki/src.po2
-rw-r--r--source/bn-IN/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn-IN/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/bn-IN/sysui/desktop/share.po2
-rw-r--r--source/bn-IN/tubes/uiconfig/ui.po2
-rw-r--r--source/bn-IN/uui/source.po2
-rw-r--r--source/bn-IN/vcl/qa/cppunit/builder.po2
-rw-r--r--source/bn-IN/vcl/source/edit.po2
-rw-r--r--source/bn-IN/vcl/source/src.po2
-rw-r--r--source/bn-IN/vcl/uiconfig/ui.po2
-rw-r--r--source/bn-IN/wizards/source/euro.po2
-rw-r--r--source/bn-IN/wizards/source/formwizard.po2
-rw-r--r--source/bn-IN/wizards/source/importwizard.po2
-rw-r--r--source/bn-IN/wizards/source/template.po2
-rw-r--r--source/bn-IN/xmlsecurity/source/component.po2
-rw-r--r--source/bn-IN/xmlsecurity/source/dialogs.po2
-rw-r--r--source/bn/accessibility/source/helper.po2
-rw-r--r--source/bn/android/sdremote/res/values.po2
-rw-r--r--source/bn/avmedia/source/framework.po2
-rw-r--r--source/bn/avmedia/source/viewer.po2
-rw-r--r--source/bn/basctl/source/basicide.po2
-rw-r--r--source/bn/basctl/source/dlged.po2
-rw-r--r--source/bn/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/bn/basic/source/classes.po2
-rw-r--r--source/bn/basic/source/sbx.po2
-rw-r--r--source/bn/chart2/source/controller/dialogs.po2
-rw-r--r--source/bn/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/connectivity/source/resource.po2
-rw-r--r--source/bn/cui/source/customize.po2
-rw-r--r--source/bn/cui/source/dialogs.po2
-rw-r--r--source/bn/cui/source/options.po2
-rw-r--r--source/bn/cui/source/tabpages.po2
-rw-r--r--source/bn/cui/uiconfig/ui.po2
-rw-r--r--source/bn/dbaccess/source/core/resource.po2
-rw-r--r--source/bn/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/bn/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/bn/dbaccess/source/ui/app.po2
-rw-r--r--source/bn/dbaccess/source/ui/browser.po2
-rw-r--r--source/bn/dbaccess/source/ui/control.po2
-rw-r--r--source/bn/dbaccess/source/ui/dlg.po2
-rw-r--r--source/bn/dbaccess/source/ui/inc.po2
-rw-r--r--source/bn/dbaccess/source/ui/misc.po2
-rw-r--r--source/bn/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/bn/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/bn/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/bn/dbaccess/source/ui/uno.po2
-rw-r--r--source/bn/desktop/source/app.po2
-rw-r--r--source/bn/desktop/source/deployment/gui.po2
-rw-r--r--source/bn/desktop/source/deployment/manager.po2
-rw-r--r--source/bn/desktop/source/deployment/misc.po2
-rw-r--r--source/bn/desktop/source/deployment/registry.po2
-rw-r--r--source/bn/desktop/source/deployment/registry/component.po2
-rw-r--r--source/bn/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/bn/desktop/source/deployment/registry/help.po2
-rw-r--r--source/bn/desktop/source/deployment/registry/package.po2
-rw-r--r--source/bn/desktop/source/deployment/registry/script.po2
-rw-r--r--source/bn/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/bn/desktop/source/deployment/unopkg.po2
-rw-r--r--source/bn/desktop/uiconfig/ui.po2
-rw-r--r--source/bn/dictionaries/af_ZA.po2
-rw-r--r--source/bn/dictionaries/an_ES.po2
-rw-r--r--source/bn/dictionaries/ar.po2
-rw-r--r--source/bn/dictionaries/be_BY.po2
-rw-r--r--source/bn/dictionaries/bg_BG.po2
-rw-r--r--source/bn/dictionaries/bn_BD.po2
-rw-r--r--source/bn/dictionaries/br_FR.po2
-rw-r--r--source/bn/dictionaries/ca.po2
-rw-r--r--source/bn/dictionaries/cs_CZ.po2
-rw-r--r--source/bn/dictionaries/da_DK.po2
-rw-r--r--source/bn/dictionaries/de.po2
-rw-r--r--source/bn/dictionaries/el_GR.po2
-rw-r--r--source/bn/dictionaries/en.po2
-rw-r--r--source/bn/dictionaries/en/dialog.po2
-rw-r--r--source/bn/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn/dictionaries/es.po2
-rw-r--r--source/bn/dictionaries/et_EE.po2
-rw-r--r--source/bn/dictionaries/fr_FR.po2
-rw-r--r--source/bn/dictionaries/gd_GB.po2
-rw-r--r--source/bn/dictionaries/gl.po2
-rw-r--r--source/bn/dictionaries/gu_IN.po2
-rw-r--r--source/bn/dictionaries/he_IL.po2
-rw-r--r--source/bn/dictionaries/hi_IN.po2
-rw-r--r--source/bn/dictionaries/hr_HR.po2
-rw-r--r--source/bn/dictionaries/hu_HU.po2
-rw-r--r--source/bn/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/bn/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn/dictionaries/it_IT.po2
-rw-r--r--source/bn/dictionaries/ku_TR.po2
-rw-r--r--source/bn/dictionaries/lt_LT.po2
-rw-r--r--source/bn/dictionaries/lv_LV.po2
-rw-r--r--source/bn/dictionaries/ne_NP.po2
-rw-r--r--source/bn/dictionaries/nl_NL.po2
-rw-r--r--source/bn/dictionaries/no.po2
-rw-r--r--source/bn/dictionaries/oc_FR.po2
-rw-r--r--source/bn/dictionaries/pl_PL.po2
-rw-r--r--source/bn/dictionaries/pt_BR.po2
-rw-r--r--source/bn/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/bn/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn/dictionaries/pt_PT.po2
-rw-r--r--source/bn/dictionaries/ro.po2
-rw-r--r--source/bn/dictionaries/ru_RU.po2
-rw-r--r--source/bn/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/bn/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn/dictionaries/si_LK.po2
-rw-r--r--source/bn/dictionaries/sk_SK.po2
-rw-r--r--source/bn/dictionaries/sl_SI.po2
-rw-r--r--source/bn/dictionaries/sr.po2
-rw-r--r--source/bn/dictionaries/sv_SE.po2
-rw-r--r--source/bn/dictionaries/sw_TZ.po2
-rw-r--r--source/bn/dictionaries/te_IN.po2
-rw-r--r--source/bn/dictionaries/th_TH.po2
-rw-r--r--source/bn/dictionaries/uk_UA.po2
-rw-r--r--source/bn/dictionaries/vi.po2
-rw-r--r--source/bn/dictionaries/zu_ZA.po2
-rw-r--r--source/bn/editeng/source/accessibility.po2
-rw-r--r--source/bn/editeng/source/editeng.po2
-rw-r--r--source/bn/editeng/source/items.po2
-rw-r--r--source/bn/editeng/source/misc.po2
-rw-r--r--source/bn/editeng/source/outliner.po2
-rw-r--r--source/bn/extensions/source/abpilot.po2
-rw-r--r--source/bn/extensions/source/bibliography.po2
-rw-r--r--source/bn/extensions/source/dbpilots.po2
-rw-r--r--source/bn/extensions/source/propctrlr.po2
-rw-r--r--source/bn/extensions/source/scanner.po2
-rw-r--r--source/bn/extensions/source/update/check.po2
-rw-r--r--source/bn/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/bn/filter/source/config/fragments/filters.po2
-rw-r--r--source/bn/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/bn/filter/source/config/fragments/types.po2
-rw-r--r--source/bn/filter/source/flash.po2
-rw-r--r--source/bn/filter/source/graphicfilter/eps.po2
-rw-r--r--source/bn/filter/source/pdf.po2
-rw-r--r--source/bn/filter/source/t602.po2
-rw-r--r--source/bn/filter/source/xsltdialog.po2
-rw-r--r--source/bn/filter/uiconfig/ui.po2
-rw-r--r--source/bn/forms/source/resource.po2
-rw-r--r--source/bn/formula/source/core/resource.po38
-rw-r--r--source/bn/formula/source/ui/dlg.po2
-rw-r--r--source/bn/fpicker/source/office.po2
-rw-r--r--source/bn/framework/source/classes.po2
-rw-r--r--source/bn/framework/source/services.po2
-rw-r--r--source/bn/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/bn/librelogo/source/pythonpath.po2
-rw-r--r--source/bn/mysqlc/source.po2
-rw-r--r--source/bn/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bn/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/bn/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/bn/nlpsolver/src/locale.po2
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/bn/padmin/source.po2
-rw-r--r--source/bn/readlicense_oo/docs.po2
-rw-r--r--source/bn/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/bn/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/bn/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/bn/reportbuilder/util.po2
-rw-r--r--source/bn/reportdesign/source/core/resource.po2
-rw-r--r--source/bn/reportdesign/source/ui/dlg.po2
-rw-r--r--source/bn/reportdesign/source/ui/inspection.po2
-rw-r--r--source/bn/reportdesign/source/ui/report.po2
-rw-r--r--source/bn/sc/source/core/src.po2
-rw-r--r--source/bn/sc/source/ui/cctrl.po2
-rw-r--r--source/bn/sc/source/ui/dbgui.po2
-rw-r--r--source/bn/sc/source/ui/docshell.po2
-rw-r--r--source/bn/sc/source/ui/drawfunc.po2
-rw-r--r--source/bn/sc/source/ui/formdlg.po2
-rw-r--r--source/bn/sc/source/ui/miscdlgs.po2
-rw-r--r--source/bn/sc/source/ui/navipi.po2
-rw-r--r--source/bn/sc/source/ui/optdlg.po2
-rw-r--r--source/bn/sc/source/ui/pagedlg.po2
-rw-r--r--source/bn/sc/source/ui/src.po441
-rw-r--r--source/bn/sc/source/ui/styleui.po2
-rw-r--r--source/bn/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/bn/scaddins/source/analysis.po2
-rw-r--r--source/bn/scaddins/source/datefunc.po2
-rw-r--r--source/bn/scaddins/source/pricing.po2
-rw-r--r--source/bn/sccomp/source/solver.po2
-rw-r--r--source/bn/scp2/source/accessories.po2
-rw-r--r--source/bn/scp2/source/activex.po2
-rw-r--r--source/bn/scp2/source/base.po2
-rw-r--r--source/bn/scp2/source/calc.po2
-rw-r--r--source/bn/scp2/source/draw.po2
-rw-r--r--source/bn/scp2/source/extensions.po2
-rw-r--r--source/bn/scp2/source/gnome.po2
-rw-r--r--source/bn/scp2/source/graphicfilter.po2
-rw-r--r--source/bn/scp2/source/impress.po2
-rw-r--r--source/bn/scp2/source/javafilter.po2
-rw-r--r--source/bn/scp2/source/kde.po2
-rw-r--r--source/bn/scp2/source/math.po2
-rw-r--r--source/bn/scp2/source/onlineupdate.po2
-rw-r--r--source/bn/scp2/source/ooo.po2
-rw-r--r--source/bn/scp2/source/python.po18
-rw-r--r--source/bn/scp2/source/quickstart.po2
-rw-r--r--source/bn/scp2/source/sdkoo.po2
-rw-r--r--source/bn/scp2/source/smoketest.po2
-rw-r--r--source/bn/scp2/source/stdlibs.po2
-rw-r--r--source/bn/scp2/source/tde.po2
-rw-r--r--source/bn/scp2/source/winexplorerext.po2
-rw-r--r--source/bn/scp2/source/writer.po2
-rw-r--r--source/bn/scp2/source/xsltfilter.po2
-rw-r--r--source/bn/sd/source/core.po2
-rw-r--r--source/bn/sd/source/filter/html.po2
-rw-r--r--source/bn/sd/source/ui/accessibility.po2
-rw-r--r--source/bn/sd/source/ui/animations.po2
-rw-r--r--source/bn/sd/source/ui/annotations.po2
-rw-r--r--source/bn/sd/source/ui/app.po2
-rw-r--r--source/bn/sd/source/ui/dlg.po2
-rw-r--r--source/bn/sd/source/ui/slideshow.po2
-rw-r--r--source/bn/sd/source/ui/table.po2
-rw-r--r--source/bn/sd/source/ui/view.po2
-rw-r--r--source/bn/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/bn/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/bn/sdext/source/minimizer.po2
-rw-r--r--source/bn/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/bn/setup_native/source/mac.po2
-rw-r--r--source/bn/sfx2/source/appl.po2
-rw-r--r--source/bn/sfx2/source/bastyp.po2
-rw-r--r--source/bn/sfx2/source/control.po23
-rw-r--r--source/bn/sfx2/source/dialog.po46
-rw-r--r--source/bn/sfx2/source/doc.po126
-rw-r--r--source/bn/sfx2/source/menu.po2
-rw-r--r--source/bn/sfx2/source/view.po2
-rw-r--r--source/bn/sfx2/uiconfig/ui.po2
-rw-r--r--source/bn/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/bn/starmath/source.po2
-rw-r--r--source/bn/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/bn/svl/source/items.po2
-rw-r--r--source/bn/svl/source/misc.po2
-rw-r--r--source/bn/svtools/source/contnr.po2
-rw-r--r--source/bn/svtools/source/control.po2
-rw-r--r--source/bn/svtools/source/dialogs.po2
-rw-r--r--source/bn/svtools/source/java.po2
-rw-r--r--source/bn/svtools/source/misc.po2
-rw-r--r--source/bn/svtools/source/toolpanel.po2
-rw-r--r--source/bn/svtools/uiconfig/ui.po55
-rw-r--r--source/bn/svx/inc.po2
-rw-r--r--source/bn/svx/source/accessibility.po2
-rw-r--r--source/bn/svx/source/core.po2
-rw-r--r--source/bn/svx/source/dialog.po226
-rw-r--r--source/bn/svx/source/engine3d.po2
-rw-r--r--source/bn/svx/source/fmcomp.po2
-rw-r--r--source/bn/svx/source/form.po2
-rw-r--r--source/bn/svx/source/gallery2.po2
-rw-r--r--source/bn/svx/source/items.po2
-rw-r--r--source/bn/svx/source/src.po2
-rw-r--r--source/bn/svx/source/stbctrls.po2
-rw-r--r--source/bn/svx/source/svdraw.po2
-rw-r--r--source/bn/svx/source/table.po2
-rw-r--r--source/bn/svx/source/tbxctrls.po2
-rw-r--r--source/bn/svx/source/toolbars.po2
-rw-r--r--source/bn/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/bn/svx/uiconfig/ui.po204
-rw-r--r--source/bn/sw/source/core/layout.po2
-rw-r--r--source/bn/sw/source/core/undo.po2
-rw-r--r--source/bn/sw/source/core/unocore.po2
-rw-r--r--source/bn/sw/source/ui/app.po2
-rw-r--r--source/bn/sw/source/ui/chrdlg.po2
-rw-r--r--source/bn/sw/source/ui/config.po2
-rw-r--r--source/bn/sw/source/ui/dbui.po2
-rw-r--r--source/bn/sw/source/ui/dialog.po2
-rw-r--r--source/bn/sw/source/ui/dochdl.po2
-rw-r--r--source/bn/sw/source/ui/docvw.po2
-rw-r--r--source/bn/sw/source/ui/envelp.po2
-rw-r--r--source/bn/sw/source/ui/fldui.po2
-rw-r--r--source/bn/sw/source/ui/fmtui.po2
-rw-r--r--source/bn/sw/source/ui/frmdlg.po2
-rw-r--r--source/bn/sw/source/ui/globdoc.po2
-rw-r--r--source/bn/sw/source/ui/index.po2
-rw-r--r--source/bn/sw/source/ui/lingu.po2
-rw-r--r--source/bn/sw/source/ui/misc.po2
-rw-r--r--source/bn/sw/source/ui/ribbar.po2
-rw-r--r--source/bn/sw/source/ui/shells.po2
-rw-r--r--source/bn/sw/source/ui/smartmenu.po2
-rw-r--r--source/bn/sw/source/ui/table.po2
-rw-r--r--source/bn/sw/source/ui/uiview.po2
-rw-r--r--source/bn/sw/source/ui/utlui.po2
-rw-r--r--source/bn/sw/source/ui/web.po2
-rw-r--r--source/bn/sw/source/ui/wrtsh.po2
-rw-r--r--source/bn/sw/uiconfig/sw/ui.po282
-rw-r--r--source/bn/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/bn/swext/mediawiki/help.po2
-rw-r--r--source/bn/swext/mediawiki/src.po2
-rw-r--r--source/bn/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bn/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/bn/sysui/desktop/share.po2
-rw-r--r--source/bn/tubes/uiconfig/ui.po2
-rw-r--r--source/bn/uui/source.po2
-rw-r--r--source/bn/vcl/qa/cppunit/builder.po2
-rw-r--r--source/bn/vcl/source/edit.po2
-rw-r--r--source/bn/vcl/source/src.po2
-rw-r--r--source/bn/vcl/uiconfig/ui.po2
-rw-r--r--source/bn/wizards/source/euro.po2
-rw-r--r--source/bn/wizards/source/formwizard.po2
-rw-r--r--source/bn/wizards/source/importwizard.po2
-rw-r--r--source/bn/wizards/source/template.po2
-rw-r--r--source/bn/xmlsecurity/source/component.po2
-rw-r--r--source/bn/xmlsecurity/source/dialogs.po2
-rw-r--r--source/bo/accessibility/source/helper.po2
-rw-r--r--source/bo/android/sdremote/res/values.po2
-rw-r--r--source/bo/avmedia/source/framework.po2
-rw-r--r--source/bo/avmedia/source/viewer.po2
-rw-r--r--source/bo/basctl/source/basicide.po2
-rw-r--r--source/bo/basctl/source/dlged.po2
-rw-r--r--source/bo/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/bo/basic/source/classes.po2
-rw-r--r--source/bo/basic/source/sbx.po2
-rw-r--r--source/bo/chart2/source/controller/dialogs.po2
-rw-r--r--source/bo/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/connectivity/source/resource.po2
-rw-r--r--source/bo/cui/source/customize.po2
-rw-r--r--source/bo/cui/source/dialogs.po2
-rw-r--r--source/bo/cui/source/options.po2
-rw-r--r--source/bo/cui/source/tabpages.po2
-rw-r--r--source/bo/cui/uiconfig/ui.po2
-rw-r--r--source/bo/dbaccess/source/core/resource.po2
-rw-r--r--source/bo/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/bo/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/bo/dbaccess/source/ui/app.po2
-rw-r--r--source/bo/dbaccess/source/ui/browser.po2
-rw-r--r--source/bo/dbaccess/source/ui/control.po2
-rw-r--r--source/bo/dbaccess/source/ui/dlg.po2
-rw-r--r--source/bo/dbaccess/source/ui/inc.po2
-rw-r--r--source/bo/dbaccess/source/ui/misc.po2
-rw-r--r--source/bo/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/bo/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/bo/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/bo/dbaccess/source/ui/uno.po2
-rw-r--r--source/bo/desktop/source/app.po2
-rw-r--r--source/bo/desktop/source/deployment/gui.po2
-rw-r--r--source/bo/desktop/source/deployment/manager.po2
-rw-r--r--source/bo/desktop/source/deployment/misc.po2
-rw-r--r--source/bo/desktop/source/deployment/registry.po2
-rw-r--r--source/bo/desktop/source/deployment/registry/component.po2
-rw-r--r--source/bo/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/bo/desktop/source/deployment/registry/help.po2
-rw-r--r--source/bo/desktop/source/deployment/registry/package.po2
-rw-r--r--source/bo/desktop/source/deployment/registry/script.po2
-rw-r--r--source/bo/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/bo/desktop/source/deployment/unopkg.po2
-rw-r--r--source/bo/desktop/uiconfig/ui.po2
-rw-r--r--source/bo/dictionaries/af_ZA.po2
-rw-r--r--source/bo/dictionaries/an_ES.po2
-rw-r--r--source/bo/dictionaries/ar.po2
-rw-r--r--source/bo/dictionaries/be_BY.po2
-rw-r--r--source/bo/dictionaries/bg_BG.po2
-rw-r--r--source/bo/dictionaries/bn_BD.po2
-rw-r--r--source/bo/dictionaries/br_FR.po2
-rw-r--r--source/bo/dictionaries/ca.po2
-rw-r--r--source/bo/dictionaries/cs_CZ.po2
-rw-r--r--source/bo/dictionaries/da_DK.po2
-rw-r--r--source/bo/dictionaries/de.po2
-rw-r--r--source/bo/dictionaries/el_GR.po2
-rw-r--r--source/bo/dictionaries/en.po2
-rw-r--r--source/bo/dictionaries/en/dialog.po2
-rw-r--r--source/bo/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bo/dictionaries/es.po2
-rw-r--r--source/bo/dictionaries/et_EE.po2
-rw-r--r--source/bo/dictionaries/fr_FR.po2
-rw-r--r--source/bo/dictionaries/gd_GB.po2
-rw-r--r--source/bo/dictionaries/gl.po2
-rw-r--r--source/bo/dictionaries/gu_IN.po2
-rw-r--r--source/bo/dictionaries/he_IL.po2
-rw-r--r--source/bo/dictionaries/hi_IN.po2
-rw-r--r--source/bo/dictionaries/hr_HR.po2
-rw-r--r--source/bo/dictionaries/hu_HU.po2
-rw-r--r--source/bo/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/bo/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bo/dictionaries/it_IT.po2
-rw-r--r--source/bo/dictionaries/ku_TR.po2
-rw-r--r--source/bo/dictionaries/lt_LT.po2
-rw-r--r--source/bo/dictionaries/lv_LV.po2
-rw-r--r--source/bo/dictionaries/ne_NP.po2
-rw-r--r--source/bo/dictionaries/nl_NL.po2
-rw-r--r--source/bo/dictionaries/no.po2
-rw-r--r--source/bo/dictionaries/oc_FR.po2
-rw-r--r--source/bo/dictionaries/pl_PL.po2
-rw-r--r--source/bo/dictionaries/pt_BR.po2
-rw-r--r--source/bo/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/bo/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bo/dictionaries/pt_PT.po2
-rw-r--r--source/bo/dictionaries/ro.po2
-rw-r--r--source/bo/dictionaries/ru_RU.po2
-rw-r--r--source/bo/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/bo/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bo/dictionaries/si_LK.po2
-rw-r--r--source/bo/dictionaries/sk_SK.po2
-rw-r--r--source/bo/dictionaries/sl_SI.po2
-rw-r--r--source/bo/dictionaries/sr.po2
-rw-r--r--source/bo/dictionaries/sv_SE.po2
-rw-r--r--source/bo/dictionaries/sw_TZ.po2
-rw-r--r--source/bo/dictionaries/te_IN.po2
-rw-r--r--source/bo/dictionaries/th_TH.po2
-rw-r--r--source/bo/dictionaries/uk_UA.po2
-rw-r--r--source/bo/dictionaries/vi.po2
-rw-r--r--source/bo/dictionaries/zu_ZA.po2
-rw-r--r--source/bo/editeng/source/accessibility.po2
-rw-r--r--source/bo/editeng/source/editeng.po2
-rw-r--r--source/bo/editeng/source/items.po2
-rw-r--r--source/bo/editeng/source/misc.po2
-rw-r--r--source/bo/editeng/source/outliner.po2
-rw-r--r--source/bo/extensions/source/abpilot.po2
-rw-r--r--source/bo/extensions/source/bibliography.po2
-rw-r--r--source/bo/extensions/source/dbpilots.po2
-rw-r--r--source/bo/extensions/source/propctrlr.po2
-rw-r--r--source/bo/extensions/source/scanner.po2
-rw-r--r--source/bo/extensions/source/update/check.po2
-rw-r--r--source/bo/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/bo/filter/source/config/fragments/filters.po2
-rw-r--r--source/bo/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/bo/filter/source/config/fragments/types.po2
-rw-r--r--source/bo/filter/source/flash.po2
-rw-r--r--source/bo/filter/source/graphicfilter/eps.po2
-rw-r--r--source/bo/filter/source/pdf.po2
-rw-r--r--source/bo/filter/source/t602.po2
-rw-r--r--source/bo/filter/source/xsltdialog.po2
-rw-r--r--source/bo/filter/uiconfig/ui.po2
-rw-r--r--source/bo/forms/source/resource.po2
-rw-r--r--source/bo/formula/source/core/resource.po38
-rw-r--r--source/bo/formula/source/ui/dlg.po2
-rw-r--r--source/bo/fpicker/source/office.po2
-rw-r--r--source/bo/framework/source/classes.po2
-rw-r--r--source/bo/framework/source/services.po2
-rw-r--r--source/bo/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/bo/librelogo/source/pythonpath.po2
-rw-r--r--source/bo/mysqlc/source.po2
-rw-r--r--source/bo/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bo/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/bo/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/bo/nlpsolver/src/locale.po2
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/bo/padmin/source.po2
-rw-r--r--source/bo/readlicense_oo/docs.po2
-rw-r--r--source/bo/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/bo/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bo/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/bo/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/bo/reportbuilder/util.po2
-rw-r--r--source/bo/reportdesign/source/core/resource.po2
-rw-r--r--source/bo/reportdesign/source/ui/dlg.po2
-rw-r--r--source/bo/reportdesign/source/ui/inspection.po2
-rw-r--r--source/bo/reportdesign/source/ui/report.po2
-rw-r--r--source/bo/sc/source/core/src.po2
-rw-r--r--source/bo/sc/source/ui/cctrl.po2
-rw-r--r--source/bo/sc/source/ui/dbgui.po2
-rw-r--r--source/bo/sc/source/ui/docshell.po2
-rw-r--r--source/bo/sc/source/ui/drawfunc.po2
-rw-r--r--source/bo/sc/source/ui/formdlg.po2
-rw-r--r--source/bo/sc/source/ui/miscdlgs.po2
-rw-r--r--source/bo/sc/source/ui/navipi.po2
-rw-r--r--source/bo/sc/source/ui/optdlg.po2
-rw-r--r--source/bo/sc/source/ui/pagedlg.po2
-rw-r--r--source/bo/sc/source/ui/src.po379
-rw-r--r--source/bo/sc/source/ui/styleui.po2
-rw-r--r--source/bo/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/bo/scaddins/source/analysis.po2
-rw-r--r--source/bo/scaddins/source/datefunc.po2
-rw-r--r--source/bo/scaddins/source/pricing.po2
-rw-r--r--source/bo/sccomp/source/solver.po2
-rw-r--r--source/bo/scp2/source/accessories.po2
-rw-r--r--source/bo/scp2/source/activex.po2
-rw-r--r--source/bo/scp2/source/base.po2
-rw-r--r--source/bo/scp2/source/calc.po2
-rw-r--r--source/bo/scp2/source/draw.po2
-rw-r--r--source/bo/scp2/source/extensions.po2
-rw-r--r--source/bo/scp2/source/gnome.po2
-rw-r--r--source/bo/scp2/source/graphicfilter.po2
-rw-r--r--source/bo/scp2/source/impress.po2
-rw-r--r--source/bo/scp2/source/javafilter.po2
-rw-r--r--source/bo/scp2/source/kde.po2
-rw-r--r--source/bo/scp2/source/math.po2
-rw-r--r--source/bo/scp2/source/onlineupdate.po2
-rw-r--r--source/bo/scp2/source/ooo.po2
-rw-r--r--source/bo/scp2/source/python.po18
-rw-r--r--source/bo/scp2/source/quickstart.po2
-rw-r--r--source/bo/scp2/source/sdkoo.po2
-rw-r--r--source/bo/scp2/source/smoketest.po2
-rw-r--r--source/bo/scp2/source/stdlibs.po2
-rw-r--r--source/bo/scp2/source/tde.po2
-rw-r--r--source/bo/scp2/source/winexplorerext.po2
-rw-r--r--source/bo/scp2/source/writer.po2
-rw-r--r--source/bo/scp2/source/xsltfilter.po2
-rw-r--r--source/bo/sd/source/core.po2
-rw-r--r--source/bo/sd/source/filter/html.po2
-rw-r--r--source/bo/sd/source/ui/accessibility.po2
-rw-r--r--source/bo/sd/source/ui/animations.po2
-rw-r--r--source/bo/sd/source/ui/annotations.po2
-rw-r--r--source/bo/sd/source/ui/app.po2
-rw-r--r--source/bo/sd/source/ui/dlg.po2
-rw-r--r--source/bo/sd/source/ui/slideshow.po2
-rw-r--r--source/bo/sd/source/ui/table.po2
-rw-r--r--source/bo/sd/source/ui/view.po2
-rw-r--r--source/bo/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/bo/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/bo/sdext/source/minimizer.po2
-rw-r--r--source/bo/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bo/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/bo/setup_native/source/mac.po2
-rw-r--r--source/bo/sfx2/source/appl.po2
-rw-r--r--source/bo/sfx2/source/bastyp.po2
-rw-r--r--source/bo/sfx2/source/control.po23
-rw-r--r--source/bo/sfx2/source/dialog.po46
-rw-r--r--source/bo/sfx2/source/doc.po126
-rw-r--r--source/bo/sfx2/source/menu.po2
-rw-r--r--source/bo/sfx2/source/view.po2
-rw-r--r--source/bo/sfx2/uiconfig/ui.po2
-rw-r--r--source/bo/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/bo/starmath/source.po2
-rw-r--r--source/bo/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/bo/svl/source/items.po2
-rw-r--r--source/bo/svl/source/misc.po2
-rw-r--r--source/bo/svtools/source/contnr.po2
-rw-r--r--source/bo/svtools/source/control.po2
-rw-r--r--source/bo/svtools/source/dialogs.po2
-rw-r--r--source/bo/svtools/source/java.po2
-rw-r--r--source/bo/svtools/source/misc.po2
-rw-r--r--source/bo/svtools/source/toolpanel.po2
-rw-r--r--source/bo/svtools/uiconfig/ui.po55
-rw-r--r--source/bo/svx/inc.po2
-rw-r--r--source/bo/svx/source/accessibility.po2
-rw-r--r--source/bo/svx/source/core.po2
-rw-r--r--source/bo/svx/source/dialog.po225
-rw-r--r--source/bo/svx/source/engine3d.po2
-rw-r--r--source/bo/svx/source/fmcomp.po2
-rw-r--r--source/bo/svx/source/form.po2
-rw-r--r--source/bo/svx/source/gallery2.po2
-rw-r--r--source/bo/svx/source/items.po2
-rw-r--r--source/bo/svx/source/src.po2
-rw-r--r--source/bo/svx/source/stbctrls.po2
-rw-r--r--source/bo/svx/source/svdraw.po2
-rw-r--r--source/bo/svx/source/table.po2
-rw-r--r--source/bo/svx/source/tbxctrls.po2
-rw-r--r--source/bo/svx/source/toolbars.po2
-rw-r--r--source/bo/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/bo/svx/uiconfig/ui.po204
-rw-r--r--source/bo/sw/source/core/layout.po2
-rw-r--r--source/bo/sw/source/core/undo.po2
-rw-r--r--source/bo/sw/source/core/unocore.po2
-rw-r--r--source/bo/sw/source/ui/app.po2
-rw-r--r--source/bo/sw/source/ui/chrdlg.po2
-rw-r--r--source/bo/sw/source/ui/config.po2
-rw-r--r--source/bo/sw/source/ui/dbui.po2
-rw-r--r--source/bo/sw/source/ui/dialog.po2
-rw-r--r--source/bo/sw/source/ui/dochdl.po2
-rw-r--r--source/bo/sw/source/ui/docvw.po2
-rw-r--r--source/bo/sw/source/ui/envelp.po2
-rw-r--r--source/bo/sw/source/ui/fldui.po2
-rw-r--r--source/bo/sw/source/ui/fmtui.po2
-rw-r--r--source/bo/sw/source/ui/frmdlg.po2
-rw-r--r--source/bo/sw/source/ui/globdoc.po2
-rw-r--r--source/bo/sw/source/ui/index.po2
-rw-r--r--source/bo/sw/source/ui/lingu.po2
-rw-r--r--source/bo/sw/source/ui/misc.po2
-rw-r--r--source/bo/sw/source/ui/ribbar.po2
-rw-r--r--source/bo/sw/source/ui/shells.po2
-rw-r--r--source/bo/sw/source/ui/smartmenu.po2
-rw-r--r--source/bo/sw/source/ui/table.po2
-rw-r--r--source/bo/sw/source/ui/uiview.po2
-rw-r--r--source/bo/sw/source/ui/utlui.po2
-rw-r--r--source/bo/sw/source/ui/web.po2
-rw-r--r--source/bo/sw/source/ui/wrtsh.po2
-rw-r--r--source/bo/sw/uiconfig/sw/ui.po287
-rw-r--r--source/bo/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/bo/swext/mediawiki/help.po2
-rw-r--r--source/bo/swext/mediawiki/src.po2
-rw-r--r--source/bo/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bo/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/bo/sysui/desktop/share.po2
-rw-r--r--source/bo/tubes/uiconfig/ui.po2
-rw-r--r--source/bo/uui/source.po2
-rw-r--r--source/bo/vcl/qa/cppunit/builder.po2
-rw-r--r--source/bo/vcl/source/edit.po2
-rw-r--r--source/bo/vcl/source/src.po2
-rw-r--r--source/bo/vcl/uiconfig/ui.po2
-rw-r--r--source/bo/wizards/source/euro.po2
-rw-r--r--source/bo/wizards/source/formwizard.po2
-rw-r--r--source/bo/wizards/source/importwizard.po2
-rw-r--r--source/bo/wizards/source/template.po2
-rw-r--r--source/bo/xmlsecurity/source/component.po2
-rw-r--r--source/bo/xmlsecurity/source/dialogs.po2
-rw-r--r--source/br/accessibility/source/helper.po2
-rw-r--r--source/br/android/sdremote/res/values.po113
-rw-r--r--source/br/avmedia/source/framework.po2
-rw-r--r--source/br/avmedia/source/viewer.po2
-rw-r--r--source/br/basctl/source/basicide.po17
-rw-r--r--source/br/basctl/source/dlged.po17
-rw-r--r--source/br/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/br/basic/source/classes.po2
-rw-r--r--source/br/basic/source/sbx.po2
-rw-r--r--source/br/chart2/source/controller/dialogs.po2
-rw-r--r--source/br/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/connectivity/source/resource.po2
-rw-r--r--source/br/cui/source/customize.po2
-rw-r--r--source/br/cui/source/dialogs.po2
-rw-r--r--source/br/cui/source/options.po16
-rw-r--r--source/br/cui/source/tabpages.po22
-rw-r--r--source/br/cui/uiconfig/ui.po60
-rw-r--r--source/br/dbaccess/source/core/resource.po2
-rw-r--r--source/br/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/br/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/br/dbaccess/source/ui/app.po2
-rw-r--r--source/br/dbaccess/source/ui/browser.po2
-rw-r--r--source/br/dbaccess/source/ui/control.po2
-rw-r--r--source/br/dbaccess/source/ui/dlg.po2
-rw-r--r--source/br/dbaccess/source/ui/inc.po2
-rw-r--r--source/br/dbaccess/source/ui/misc.po2
-rw-r--r--source/br/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/br/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/br/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/br/dbaccess/source/ui/uno.po2
-rw-r--r--source/br/desktop/source/app.po2
-rw-r--r--source/br/desktop/source/deployment/gui.po2
-rw-r--r--source/br/desktop/source/deployment/manager.po2
-rw-r--r--source/br/desktop/source/deployment/misc.po2
-rw-r--r--source/br/desktop/source/deployment/registry.po2
-rw-r--r--source/br/desktop/source/deployment/registry/component.po2
-rw-r--r--source/br/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/br/desktop/source/deployment/registry/help.po2
-rw-r--r--source/br/desktop/source/deployment/registry/package.po2
-rw-r--r--source/br/desktop/source/deployment/registry/script.po2
-rw-r--r--source/br/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/br/desktop/source/deployment/unopkg.po2
-rw-r--r--source/br/desktop/uiconfig/ui.po2
-rw-r--r--source/br/dictionaries/af_ZA.po2
-rw-r--r--source/br/dictionaries/an_ES.po2
-rw-r--r--source/br/dictionaries/ar.po2
-rw-r--r--source/br/dictionaries/be_BY.po2
-rw-r--r--source/br/dictionaries/bg_BG.po2
-rw-r--r--source/br/dictionaries/bn_BD.po2
-rw-r--r--source/br/dictionaries/br_FR.po2
-rw-r--r--source/br/dictionaries/ca.po2
-rw-r--r--source/br/dictionaries/cs_CZ.po2
-rw-r--r--source/br/dictionaries/da_DK.po2
-rw-r--r--source/br/dictionaries/de.po2
-rw-r--r--source/br/dictionaries/el_GR.po2
-rw-r--r--source/br/dictionaries/en.po2
-rw-r--r--source/br/dictionaries/en/dialog.po2
-rw-r--r--source/br/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/br/dictionaries/es.po2
-rw-r--r--source/br/dictionaries/et_EE.po2
-rw-r--r--source/br/dictionaries/fr_FR.po2
-rw-r--r--source/br/dictionaries/gd_GB.po2
-rw-r--r--source/br/dictionaries/gl.po2
-rw-r--r--source/br/dictionaries/gu_IN.po2
-rw-r--r--source/br/dictionaries/he_IL.po2
-rw-r--r--source/br/dictionaries/hi_IN.po2
-rw-r--r--source/br/dictionaries/hr_HR.po2
-rw-r--r--source/br/dictionaries/hu_HU.po2
-rw-r--r--source/br/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/br/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/br/dictionaries/it_IT.po2
-rw-r--r--source/br/dictionaries/ku_TR.po2
-rw-r--r--source/br/dictionaries/lt_LT.po2
-rw-r--r--source/br/dictionaries/lv_LV.po2
-rw-r--r--source/br/dictionaries/ne_NP.po2
-rw-r--r--source/br/dictionaries/nl_NL.po2
-rw-r--r--source/br/dictionaries/no.po2
-rw-r--r--source/br/dictionaries/oc_FR.po2
-rw-r--r--source/br/dictionaries/pl_PL.po2
-rw-r--r--source/br/dictionaries/pt_BR.po9
-rw-r--r--source/br/dictionaries/pt_BR/dialog.po84
-rw-r--r--source/br/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po14
-rw-r--r--source/br/dictionaries/pt_PT.po2
-rw-r--r--source/br/dictionaries/ro.po2
-rw-r--r--source/br/dictionaries/ru_RU.po2
-rw-r--r--source/br/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/br/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/br/dictionaries/si_LK.po2
-rw-r--r--source/br/dictionaries/sk_SK.po2
-rw-r--r--source/br/dictionaries/sl_SI.po2
-rw-r--r--source/br/dictionaries/sr.po2
-rw-r--r--source/br/dictionaries/sv_SE.po2
-rw-r--r--source/br/dictionaries/sw_TZ.po2
-rw-r--r--source/br/dictionaries/te_IN.po2
-rw-r--r--source/br/dictionaries/th_TH.po2
-rw-r--r--source/br/dictionaries/uk_UA.po2
-rw-r--r--source/br/dictionaries/vi.po2
-rw-r--r--source/br/dictionaries/zu_ZA.po2
-rw-r--r--source/br/editeng/source/accessibility.po2
-rw-r--r--source/br/editeng/source/editeng.po2
-rw-r--r--source/br/editeng/source/items.po2
-rw-r--r--source/br/editeng/source/misc.po2
-rw-r--r--source/br/editeng/source/outliner.po2
-rw-r--r--source/br/extensions/source/abpilot.po2
-rw-r--r--source/br/extensions/source/bibliography.po2
-rw-r--r--source/br/extensions/source/dbpilots.po2
-rw-r--r--source/br/extensions/source/propctrlr.po2
-rw-r--r--source/br/extensions/source/scanner.po2
-rw-r--r--source/br/extensions/source/update/check.po2
-rw-r--r--source/br/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/br/filter/source/config/fragments/filters.po2
-rw-r--r--source/br/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/br/filter/source/config/fragments/types.po2
-rw-r--r--source/br/filter/source/flash.po2
-rw-r--r--source/br/filter/source/graphicfilter/eps.po2
-rw-r--r--source/br/filter/source/pdf.po2
-rw-r--r--source/br/filter/source/t602.po2
-rw-r--r--source/br/filter/source/xsltdialog.po4
-rw-r--r--source/br/filter/uiconfig/ui.po4
-rw-r--r--source/br/forms/source/resource.po2
-rw-r--r--source/br/formula/source/core/resource.po44
-rw-r--r--source/br/formula/source/ui/dlg.po2
-rw-r--r--source/br/fpicker/source/office.po2
-rw-r--r--source/br/framework/source/classes.po2
-rw-r--r--source/br/framework/source/services.po2
-rw-r--r--source/br/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/br/librelogo/source/pythonpath.po235
-rw-r--r--source/br/mysqlc/source.po2
-rw-r--r--source/br/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/br/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po4
-rw-r--r--source/br/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/br/nlpsolver/src/locale.po2
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office.po167
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po82
-rw-r--r--source/br/padmin/source.po4
-rw-r--r--source/br/readlicense_oo/docs.po2
-rw-r--r--source/br/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/br/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/br/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/br/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/br/reportbuilder/util.po2
-rw-r--r--source/br/reportdesign/source/core/resource.po2
-rw-r--r--source/br/reportdesign/source/ui/dlg.po2
-rw-r--r--source/br/reportdesign/source/ui/inspection.po2
-rw-r--r--source/br/reportdesign/source/ui/report.po2
-rw-r--r--source/br/sc/source/core/src.po2
-rw-r--r--source/br/sc/source/ui/cctrl.po2
-rw-r--r--source/br/sc/source/ui/dbgui.po2
-rw-r--r--source/br/sc/source/ui/docshell.po2
-rw-r--r--source/br/sc/source/ui/drawfunc.po2
-rw-r--r--source/br/sc/source/ui/formdlg.po2
-rw-r--r--source/br/sc/source/ui/miscdlgs.po2
-rw-r--r--source/br/sc/source/ui/navipi.po2
-rw-r--r--source/br/sc/source/ui/optdlg.po10
-rw-r--r--source/br/sc/source/ui/pagedlg.po2
-rw-r--r--source/br/sc/source/ui/src.po570
-rw-r--r--source/br/sc/source/ui/styleui.po17
-rw-r--r--source/br/sc/uiconfig/scalc/ui.po51
-rw-r--r--source/br/scaddins/source/analysis.po2
-rw-r--r--source/br/scaddins/source/datefunc.po2
-rw-r--r--source/br/scaddins/source/pricing.po178
-rw-r--r--source/br/sccomp/source/solver.po2
-rw-r--r--source/br/scp2/source/accessories.po2
-rw-r--r--source/br/scp2/source/activex.po2
-rw-r--r--source/br/scp2/source/base.po2
-rw-r--r--source/br/scp2/source/calc.po2
-rw-r--r--source/br/scp2/source/draw.po2
-rw-r--r--source/br/scp2/source/extensions.po2
-rw-r--r--source/br/scp2/source/gnome.po2
-rw-r--r--source/br/scp2/source/graphicfilter.po2
-rw-r--r--source/br/scp2/source/impress.po2
-rw-r--r--source/br/scp2/source/javafilter.po2
-rw-r--r--source/br/scp2/source/kde.po2
-rw-r--r--source/br/scp2/source/math.po2
-rw-r--r--source/br/scp2/source/onlineupdate.po2
-rw-r--r--source/br/scp2/source/ooo.po4
-rw-r--r--source/br/scp2/source/python.po22
-rw-r--r--source/br/scp2/source/quickstart.po2
-rw-r--r--source/br/scp2/source/sdkoo.po2
-rw-r--r--source/br/scp2/source/smoketest.po2
-rw-r--r--source/br/scp2/source/stdlibs.po2
-rw-r--r--source/br/scp2/source/tde.po2
-rw-r--r--source/br/scp2/source/winexplorerext.po2
-rw-r--r--source/br/scp2/source/writer.po2
-rw-r--r--source/br/scp2/source/xsltfilter.po2
-rw-r--r--source/br/sd/source/core.po2
-rw-r--r--source/br/sd/source/filter/html.po2
-rw-r--r--source/br/sd/source/ui/accessibility.po2
-rw-r--r--source/br/sd/source/ui/animations.po4
-rw-r--r--source/br/sd/source/ui/annotations.po2
-rw-r--r--source/br/sd/source/ui/app.po4
-rw-r--r--source/br/sd/source/ui/dlg.po4
-rw-r--r--source/br/sd/source/ui/slideshow.po2
-rw-r--r--source/br/sd/source/ui/table.po4
-rw-r--r--source/br/sd/source/ui/view.po2
-rw-r--r--source/br/sd/uiconfig/sdraw/ui.po4
-rw-r--r--source/br/sd/uiconfig/simpress/ui.po4
-rw-r--r--source/br/sdext/source/minimizer.po2
-rw-r--r--source/br/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/br/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/br/setup_native/source/mac.po2
-rw-r--r--source/br/sfx2/source/appl.po13
-rw-r--r--source/br/sfx2/source/bastyp.po2
-rw-r--r--source/br/sfx2/source/control.po25
-rw-r--r--source/br/sfx2/source/dialog.po61
-rw-r--r--source/br/sfx2/source/doc.po196
-rw-r--r--source/br/sfx2/source/menu.po2
-rw-r--r--source/br/sfx2/source/view.po11
-rw-r--r--source/br/sfx2/uiconfig/ui.po25
-rw-r--r--source/br/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/br/starmath/source.po2
-rw-r--r--source/br/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/br/svl/source/items.po2
-rw-r--r--source/br/svl/source/misc.po2
-rw-r--r--source/br/svtools/source/contnr.po7
-rw-r--r--source/br/svtools/source/control.po2
-rw-r--r--source/br/svtools/source/dialogs.po2
-rw-r--r--source/br/svtools/source/java.po2
-rw-r--r--source/br/svtools/source/misc.po69
-rw-r--r--source/br/svtools/source/toolpanel.po2
-rw-r--r--source/br/svtools/uiconfig/ui.po87
-rw-r--r--source/br/svx/inc.po15
-rw-r--r--source/br/svx/source/accessibility.po2
-rw-r--r--source/br/svx/source/core.po2
-rw-r--r--source/br/svx/source/dialog.po254
-rw-r--r--source/br/svx/source/engine3d.po2
-rw-r--r--source/br/svx/source/fmcomp.po2
-rw-r--r--source/br/svx/source/form.po2
-rw-r--r--source/br/svx/source/gallery2.po2
-rw-r--r--source/br/svx/source/items.po2
-rw-r--r--source/br/svx/source/src.po9
-rw-r--r--source/br/svx/source/stbctrls.po2
-rw-r--r--source/br/svx/source/svdraw.po11
-rw-r--r--source/br/svx/source/table.po2
-rw-r--r--source/br/svx/source/tbxctrls.po2
-rw-r--r--source/br/svx/source/toolbars.po2
-rw-r--r--source/br/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/br/svx/uiconfig/ui.po206
-rw-r--r--source/br/sw/source/core/layout.po2
-rw-r--r--source/br/sw/source/core/undo.po2
-rw-r--r--source/br/sw/source/core/unocore.po2
-rw-r--r--source/br/sw/source/ui/app.po60
-rw-r--r--source/br/sw/source/ui/chrdlg.po2
-rw-r--r--source/br/sw/source/ui/config.po2
-rw-r--r--source/br/sw/source/ui/dbui.po2
-rw-r--r--source/br/sw/source/ui/dialog.po2
-rw-r--r--source/br/sw/source/ui/dochdl.po2
-rw-r--r--source/br/sw/source/ui/docvw.po2
-rw-r--r--source/br/sw/source/ui/envelp.po2
-rw-r--r--source/br/sw/source/ui/fldui.po2
-rw-r--r--source/br/sw/source/ui/fmtui.po2
-rw-r--r--source/br/sw/source/ui/frmdlg.po2
-rw-r--r--source/br/sw/source/ui/globdoc.po2
-rw-r--r--source/br/sw/source/ui/index.po2
-rw-r--r--source/br/sw/source/ui/lingu.po2
-rw-r--r--source/br/sw/source/ui/misc.po2
-rw-r--r--source/br/sw/source/ui/ribbar.po2
-rw-r--r--source/br/sw/source/ui/shells.po2
-rw-r--r--source/br/sw/source/ui/smartmenu.po2
-rw-r--r--source/br/sw/source/ui/table.po9
-rw-r--r--source/br/sw/source/ui/uiview.po2
-rw-r--r--source/br/sw/source/ui/utlui.po35
-rw-r--r--source/br/sw/source/ui/web.po2
-rw-r--r--source/br/sw/source/ui/wrtsh.po2
-rw-r--r--source/br/sw/uiconfig/sw/ui.po278
-rw-r--r--source/br/sw/uiconfig/swriter/ui.po216
-rw-r--r--source/br/swext/mediawiki/help.po4
-rw-r--r--source/br/swext/mediawiki/src.po2
-rw-r--r--source/br/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/br/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/br/sysui/desktop/share.po2
-rw-r--r--source/br/tubes/uiconfig/ui.po4
-rw-r--r--source/br/uui/source.po2
-rw-r--r--source/br/vcl/qa/cppunit/builder.po107
-rw-r--r--source/br/vcl/source/edit.po20
-rw-r--r--source/br/vcl/source/src.po9
-rw-r--r--source/br/vcl/uiconfig/ui.po69
-rw-r--r--source/br/wizards/source/euro.po2
-rw-r--r--source/br/wizards/source/formwizard.po138
-rw-r--r--source/br/wizards/source/importwizard.po2
-rw-r--r--source/br/wizards/source/template.po45
-rw-r--r--source/br/xmlsecurity/source/component.po2
-rw-r--r--source/br/xmlsecurity/source/dialogs.po2
-rw-r--r--source/brx/accessibility/source/helper.po2
-rw-r--r--source/brx/android/sdremote/res/values.po2
-rw-r--r--source/brx/avmedia/source/framework.po2
-rw-r--r--source/brx/avmedia/source/viewer.po2
-rw-r--r--source/brx/basctl/source/basicide.po2
-rw-r--r--source/brx/basctl/source/dlged.po2
-rw-r--r--source/brx/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/brx/basic/source/classes.po2
-rw-r--r--source/brx/basic/source/sbx.po2
-rw-r--r--source/brx/chart2/source/controller/dialogs.po2
-rw-r--r--source/brx/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/connectivity/source/resource.po2
-rw-r--r--source/brx/cui/source/customize.po2
-rw-r--r--source/brx/cui/source/dialogs.po2
-rw-r--r--source/brx/cui/source/options.po2
-rw-r--r--source/brx/cui/source/tabpages.po2
-rw-r--r--source/brx/cui/uiconfig/ui.po2
-rw-r--r--source/brx/dbaccess/source/core/resource.po2
-rw-r--r--source/brx/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/brx/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/brx/dbaccess/source/ui/app.po2
-rw-r--r--source/brx/dbaccess/source/ui/browser.po2
-rw-r--r--source/brx/dbaccess/source/ui/control.po2
-rw-r--r--source/brx/dbaccess/source/ui/dlg.po2
-rw-r--r--source/brx/dbaccess/source/ui/inc.po2
-rw-r--r--source/brx/dbaccess/source/ui/misc.po2
-rw-r--r--source/brx/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/brx/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/brx/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/brx/dbaccess/source/ui/uno.po2
-rw-r--r--source/brx/desktop/source/app.po2
-rw-r--r--source/brx/desktop/source/deployment/gui.po2
-rw-r--r--source/brx/desktop/source/deployment/manager.po2
-rw-r--r--source/brx/desktop/source/deployment/misc.po2
-rw-r--r--source/brx/desktop/source/deployment/registry.po2
-rw-r--r--source/brx/desktop/source/deployment/registry/component.po2
-rw-r--r--source/brx/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/brx/desktop/source/deployment/registry/help.po2
-rw-r--r--source/brx/desktop/source/deployment/registry/package.po2
-rw-r--r--source/brx/desktop/source/deployment/registry/script.po2
-rw-r--r--source/brx/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/brx/desktop/source/deployment/unopkg.po2
-rw-r--r--source/brx/desktop/uiconfig/ui.po2
-rw-r--r--source/brx/dictionaries/af_ZA.po2
-rw-r--r--source/brx/dictionaries/an_ES.po2
-rw-r--r--source/brx/dictionaries/ar.po2
-rw-r--r--source/brx/dictionaries/be_BY.po2
-rw-r--r--source/brx/dictionaries/bg_BG.po2
-rw-r--r--source/brx/dictionaries/bn_BD.po2
-rw-r--r--source/brx/dictionaries/br_FR.po2
-rw-r--r--source/brx/dictionaries/ca.po2
-rw-r--r--source/brx/dictionaries/cs_CZ.po2
-rw-r--r--source/brx/dictionaries/da_DK.po2
-rw-r--r--source/brx/dictionaries/de.po2
-rw-r--r--source/brx/dictionaries/el_GR.po2
-rw-r--r--source/brx/dictionaries/en.po2
-rw-r--r--source/brx/dictionaries/en/dialog.po2
-rw-r--r--source/brx/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/brx/dictionaries/es.po2
-rw-r--r--source/brx/dictionaries/et_EE.po2
-rw-r--r--source/brx/dictionaries/fr_FR.po2
-rw-r--r--source/brx/dictionaries/gd_GB.po2
-rw-r--r--source/brx/dictionaries/gl.po2
-rw-r--r--source/brx/dictionaries/gu_IN.po2
-rw-r--r--source/brx/dictionaries/he_IL.po2
-rw-r--r--source/brx/dictionaries/hi_IN.po2
-rw-r--r--source/brx/dictionaries/hr_HR.po2
-rw-r--r--source/brx/dictionaries/hu_HU.po2
-rw-r--r--source/brx/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/brx/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/brx/dictionaries/it_IT.po2
-rw-r--r--source/brx/dictionaries/ku_TR.po2
-rw-r--r--source/brx/dictionaries/lt_LT.po2
-rw-r--r--source/brx/dictionaries/lv_LV.po2
-rw-r--r--source/brx/dictionaries/ne_NP.po2
-rw-r--r--source/brx/dictionaries/nl_NL.po2
-rw-r--r--source/brx/dictionaries/no.po2
-rw-r--r--source/brx/dictionaries/oc_FR.po2
-rw-r--r--source/brx/dictionaries/pl_PL.po2
-rw-r--r--source/brx/dictionaries/pt_BR.po2
-rw-r--r--source/brx/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/brx/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/brx/dictionaries/pt_PT.po2
-rw-r--r--source/brx/dictionaries/ro.po2
-rw-r--r--source/brx/dictionaries/ru_RU.po2
-rw-r--r--source/brx/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/brx/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/brx/dictionaries/si_LK.po2
-rw-r--r--source/brx/dictionaries/sk_SK.po2
-rw-r--r--source/brx/dictionaries/sl_SI.po2
-rw-r--r--source/brx/dictionaries/sr.po2
-rw-r--r--source/brx/dictionaries/sv_SE.po2
-rw-r--r--source/brx/dictionaries/sw_TZ.po2
-rw-r--r--source/brx/dictionaries/te_IN.po2
-rw-r--r--source/brx/dictionaries/th_TH.po2
-rw-r--r--source/brx/dictionaries/uk_UA.po2
-rw-r--r--source/brx/dictionaries/vi.po2
-rw-r--r--source/brx/dictionaries/zu_ZA.po2
-rw-r--r--source/brx/editeng/source/accessibility.po2
-rw-r--r--source/brx/editeng/source/editeng.po2
-rw-r--r--source/brx/editeng/source/items.po2
-rw-r--r--source/brx/editeng/source/misc.po2
-rw-r--r--source/brx/editeng/source/outliner.po2
-rw-r--r--source/brx/extensions/source/abpilot.po2
-rw-r--r--source/brx/extensions/source/bibliography.po2
-rw-r--r--source/brx/extensions/source/dbpilots.po2
-rw-r--r--source/brx/extensions/source/propctrlr.po2
-rw-r--r--source/brx/extensions/source/scanner.po2
-rw-r--r--source/brx/extensions/source/update/check.po2
-rw-r--r--source/brx/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/brx/filter/source/config/fragments/filters.po2
-rw-r--r--source/brx/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/brx/filter/source/config/fragments/types.po2
-rw-r--r--source/brx/filter/source/flash.po2
-rw-r--r--source/brx/filter/source/graphicfilter/eps.po2
-rw-r--r--source/brx/filter/source/pdf.po2
-rw-r--r--source/brx/filter/source/t602.po2
-rw-r--r--source/brx/filter/source/xsltdialog.po2
-rw-r--r--source/brx/filter/uiconfig/ui.po2
-rw-r--r--source/brx/forms/source/resource.po2
-rw-r--r--source/brx/formula/source/core/resource.po38
-rw-r--r--source/brx/formula/source/ui/dlg.po2
-rw-r--r--source/brx/fpicker/source/office.po2
-rw-r--r--source/brx/framework/source/classes.po2
-rw-r--r--source/brx/framework/source/services.po2
-rw-r--r--source/brx/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/brx/librelogo/source/pythonpath.po2
-rw-r--r--source/brx/mysqlc/source.po2
-rw-r--r--source/brx/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/brx/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/brx/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/brx/nlpsolver/src/locale.po2
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/brx/padmin/source.po2
-rw-r--r--source/brx/readlicense_oo/docs.po2
-rw-r--r--source/brx/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/brx/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/brx/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/brx/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/brx/reportbuilder/util.po2
-rw-r--r--source/brx/reportdesign/source/core/resource.po2
-rw-r--r--source/brx/reportdesign/source/ui/dlg.po2
-rw-r--r--source/brx/reportdesign/source/ui/inspection.po2
-rw-r--r--source/brx/reportdesign/source/ui/report.po2
-rw-r--r--source/brx/sc/source/core/src.po2
-rw-r--r--source/brx/sc/source/ui/cctrl.po2
-rw-r--r--source/brx/sc/source/ui/dbgui.po2
-rw-r--r--source/brx/sc/source/ui/docshell.po2
-rw-r--r--source/brx/sc/source/ui/drawfunc.po2
-rw-r--r--source/brx/sc/source/ui/formdlg.po2
-rw-r--r--source/brx/sc/source/ui/miscdlgs.po2
-rw-r--r--source/brx/sc/source/ui/navipi.po2
-rw-r--r--source/brx/sc/source/ui/optdlg.po2
-rw-r--r--source/brx/sc/source/ui/pagedlg.po2
-rw-r--r--source/brx/sc/source/ui/src.po393
-rw-r--r--source/brx/sc/source/ui/styleui.po2
-rw-r--r--source/brx/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/brx/scaddins/source/analysis.po2
-rw-r--r--source/brx/scaddins/source/datefunc.po2
-rw-r--r--source/brx/scaddins/source/pricing.po2
-rw-r--r--source/brx/sccomp/source/solver.po2
-rw-r--r--source/brx/scp2/source/accessories.po2
-rw-r--r--source/brx/scp2/source/activex.po2
-rw-r--r--source/brx/scp2/source/base.po2
-rw-r--r--source/brx/scp2/source/calc.po2
-rw-r--r--source/brx/scp2/source/draw.po2
-rw-r--r--source/brx/scp2/source/extensions.po2
-rw-r--r--source/brx/scp2/source/gnome.po2
-rw-r--r--source/brx/scp2/source/graphicfilter.po2
-rw-r--r--source/brx/scp2/source/impress.po2
-rw-r--r--source/brx/scp2/source/javafilter.po2
-rw-r--r--source/brx/scp2/source/kde.po2
-rw-r--r--source/brx/scp2/source/math.po2
-rw-r--r--source/brx/scp2/source/onlineupdate.po2
-rw-r--r--source/brx/scp2/source/ooo.po2
-rw-r--r--source/brx/scp2/source/python.po18
-rw-r--r--source/brx/scp2/source/quickstart.po2
-rw-r--r--source/brx/scp2/source/sdkoo.po2
-rw-r--r--source/brx/scp2/source/smoketest.po2
-rw-r--r--source/brx/scp2/source/stdlibs.po2
-rw-r--r--source/brx/scp2/source/tde.po2
-rw-r--r--source/brx/scp2/source/winexplorerext.po2
-rw-r--r--source/brx/scp2/source/writer.po2
-rw-r--r--source/brx/scp2/source/xsltfilter.po2
-rw-r--r--source/brx/sd/source/core.po2
-rw-r--r--source/brx/sd/source/filter/html.po2
-rw-r--r--source/brx/sd/source/ui/accessibility.po2
-rw-r--r--source/brx/sd/source/ui/animations.po2
-rw-r--r--source/brx/sd/source/ui/annotations.po2
-rw-r--r--source/brx/sd/source/ui/app.po2
-rw-r--r--source/brx/sd/source/ui/dlg.po2
-rw-r--r--source/brx/sd/source/ui/slideshow.po2
-rw-r--r--source/brx/sd/source/ui/table.po2
-rw-r--r--source/brx/sd/source/ui/view.po2
-rw-r--r--source/brx/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/brx/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/brx/sdext/source/minimizer.po2
-rw-r--r--source/brx/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/brx/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/brx/setup_native/source/mac.po2
-rw-r--r--source/brx/sfx2/source/appl.po2
-rw-r--r--source/brx/sfx2/source/bastyp.po2
-rw-r--r--source/brx/sfx2/source/control.po23
-rw-r--r--source/brx/sfx2/source/dialog.po46
-rw-r--r--source/brx/sfx2/source/doc.po126
-rw-r--r--source/brx/sfx2/source/menu.po2
-rw-r--r--source/brx/sfx2/source/view.po2
-rw-r--r--source/brx/sfx2/uiconfig/ui.po2
-rw-r--r--source/brx/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/brx/starmath/source.po2
-rw-r--r--source/brx/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/brx/svl/source/items.po2
-rw-r--r--source/brx/svl/source/misc.po2
-rw-r--r--source/brx/svtools/source/contnr.po2
-rw-r--r--source/brx/svtools/source/control.po2
-rw-r--r--source/brx/svtools/source/dialogs.po2
-rw-r--r--source/brx/svtools/source/java.po2
-rw-r--r--source/brx/svtools/source/misc.po2
-rw-r--r--source/brx/svtools/source/toolpanel.po2
-rw-r--r--source/brx/svtools/uiconfig/ui.po55
-rw-r--r--source/brx/svx/inc.po2
-rw-r--r--source/brx/svx/source/accessibility.po2
-rw-r--r--source/brx/svx/source/core.po2
-rw-r--r--source/brx/svx/source/dialog.po225
-rw-r--r--source/brx/svx/source/engine3d.po2
-rw-r--r--source/brx/svx/source/fmcomp.po2
-rw-r--r--source/brx/svx/source/form.po2
-rw-r--r--source/brx/svx/source/gallery2.po2
-rw-r--r--source/brx/svx/source/items.po2
-rw-r--r--source/brx/svx/source/src.po2
-rw-r--r--source/brx/svx/source/stbctrls.po2
-rw-r--r--source/brx/svx/source/svdraw.po2
-rw-r--r--source/brx/svx/source/table.po2
-rw-r--r--source/brx/svx/source/tbxctrls.po2
-rw-r--r--source/brx/svx/source/toolbars.po2
-rw-r--r--source/brx/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/brx/svx/uiconfig/ui.po204
-rw-r--r--source/brx/sw/source/core/layout.po2
-rw-r--r--source/brx/sw/source/core/undo.po2
-rw-r--r--source/brx/sw/source/core/unocore.po2
-rw-r--r--source/brx/sw/source/ui/app.po2
-rw-r--r--source/brx/sw/source/ui/chrdlg.po2
-rw-r--r--source/brx/sw/source/ui/config.po2
-rw-r--r--source/brx/sw/source/ui/dbui.po2
-rw-r--r--source/brx/sw/source/ui/dialog.po2
-rw-r--r--source/brx/sw/source/ui/dochdl.po2
-rw-r--r--source/brx/sw/source/ui/docvw.po2
-rw-r--r--source/brx/sw/source/ui/envelp.po2
-rw-r--r--source/brx/sw/source/ui/fldui.po2
-rw-r--r--source/brx/sw/source/ui/fmtui.po2
-rw-r--r--source/brx/sw/source/ui/frmdlg.po2
-rw-r--r--source/brx/sw/source/ui/globdoc.po2
-rw-r--r--source/brx/sw/source/ui/index.po2
-rw-r--r--source/brx/sw/source/ui/lingu.po2
-rw-r--r--source/brx/sw/source/ui/misc.po2
-rw-r--r--source/brx/sw/source/ui/ribbar.po2
-rw-r--r--source/brx/sw/source/ui/shells.po2
-rw-r--r--source/brx/sw/source/ui/smartmenu.po2
-rw-r--r--source/brx/sw/source/ui/table.po2
-rw-r--r--source/brx/sw/source/ui/uiview.po2
-rw-r--r--source/brx/sw/source/ui/utlui.po2
-rw-r--r--source/brx/sw/source/ui/web.po2
-rw-r--r--source/brx/sw/source/ui/wrtsh.po2
-rw-r--r--source/brx/sw/uiconfig/sw/ui.po281
-rw-r--r--source/brx/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/brx/swext/mediawiki/help.po2
-rw-r--r--source/brx/swext/mediawiki/src.po2
-rw-r--r--source/brx/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/brx/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/brx/sysui/desktop/share.po2
-rw-r--r--source/brx/tubes/uiconfig/ui.po2
-rw-r--r--source/brx/uui/source.po2
-rw-r--r--source/brx/vcl/qa/cppunit/builder.po2
-rw-r--r--source/brx/vcl/source/edit.po2
-rw-r--r--source/brx/vcl/source/src.po2
-rw-r--r--source/brx/vcl/uiconfig/ui.po2
-rw-r--r--source/brx/wizards/source/euro.po2
-rw-r--r--source/brx/wizards/source/formwizard.po2
-rw-r--r--source/brx/wizards/source/importwizard.po2
-rw-r--r--source/brx/wizards/source/template.po2
-rw-r--r--source/brx/xmlsecurity/source/component.po2
-rw-r--r--source/brx/xmlsecurity/source/dialogs.po2
-rw-r--r--source/bs/accessibility/source/helper.po2
-rw-r--r--source/bs/android/sdremote/res/values.po2
-rw-r--r--source/bs/avmedia/source/framework.po2
-rw-r--r--source/bs/avmedia/source/viewer.po2
-rw-r--r--source/bs/basctl/source/basicide.po2
-rw-r--r--source/bs/basctl/source/dlged.po2
-rw-r--r--source/bs/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/bs/basic/source/classes.po2
-rw-r--r--source/bs/basic/source/sbx.po2
-rw-r--r--source/bs/chart2/source/controller/dialogs.po2
-rw-r--r--source/bs/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/connectivity/source/resource.po2
-rw-r--r--source/bs/cui/source/customize.po2
-rw-r--r--source/bs/cui/source/dialogs.po2
-rw-r--r--source/bs/cui/source/options.po2
-rw-r--r--source/bs/cui/source/tabpages.po2
-rw-r--r--source/bs/cui/uiconfig/ui.po2
-rw-r--r--source/bs/dbaccess/source/core/resource.po2
-rw-r--r--source/bs/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/bs/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/bs/dbaccess/source/ui/app.po2
-rw-r--r--source/bs/dbaccess/source/ui/browser.po2
-rw-r--r--source/bs/dbaccess/source/ui/control.po2
-rw-r--r--source/bs/dbaccess/source/ui/dlg.po2
-rw-r--r--source/bs/dbaccess/source/ui/inc.po2
-rw-r--r--source/bs/dbaccess/source/ui/misc.po2
-rw-r--r--source/bs/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/bs/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/bs/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/bs/dbaccess/source/ui/uno.po2
-rw-r--r--source/bs/desktop/source/app.po2
-rw-r--r--source/bs/desktop/source/deployment/gui.po2
-rw-r--r--source/bs/desktop/source/deployment/manager.po2
-rw-r--r--source/bs/desktop/source/deployment/misc.po2
-rw-r--r--source/bs/desktop/source/deployment/registry.po2
-rw-r--r--source/bs/desktop/source/deployment/registry/component.po2
-rw-r--r--source/bs/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/bs/desktop/source/deployment/registry/help.po2
-rw-r--r--source/bs/desktop/source/deployment/registry/package.po2
-rw-r--r--source/bs/desktop/source/deployment/registry/script.po2
-rw-r--r--source/bs/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/bs/desktop/source/deployment/unopkg.po2
-rw-r--r--source/bs/desktop/uiconfig/ui.po2
-rw-r--r--source/bs/dictionaries/af_ZA.po2
-rw-r--r--source/bs/dictionaries/an_ES.po2
-rw-r--r--source/bs/dictionaries/ar.po2
-rw-r--r--source/bs/dictionaries/be_BY.po2
-rw-r--r--source/bs/dictionaries/bg_BG.po2
-rw-r--r--source/bs/dictionaries/bn_BD.po2
-rw-r--r--source/bs/dictionaries/br_FR.po2
-rw-r--r--source/bs/dictionaries/ca.po2
-rw-r--r--source/bs/dictionaries/cs_CZ.po2
-rw-r--r--source/bs/dictionaries/da_DK.po2
-rw-r--r--source/bs/dictionaries/de.po2
-rw-r--r--source/bs/dictionaries/el_GR.po2
-rw-r--r--source/bs/dictionaries/en.po2
-rw-r--r--source/bs/dictionaries/en/dialog.po2
-rw-r--r--source/bs/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bs/dictionaries/es.po2
-rw-r--r--source/bs/dictionaries/et_EE.po2
-rw-r--r--source/bs/dictionaries/fr_FR.po2
-rw-r--r--source/bs/dictionaries/gd_GB.po2
-rw-r--r--source/bs/dictionaries/gl.po2
-rw-r--r--source/bs/dictionaries/gu_IN.po2
-rw-r--r--source/bs/dictionaries/he_IL.po2
-rw-r--r--source/bs/dictionaries/hi_IN.po2
-rw-r--r--source/bs/dictionaries/hr_HR.po2
-rw-r--r--source/bs/dictionaries/hu_HU.po2
-rw-r--r--source/bs/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/bs/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bs/dictionaries/it_IT.po2
-rw-r--r--source/bs/dictionaries/ku_TR.po2
-rw-r--r--source/bs/dictionaries/lt_LT.po2
-rw-r--r--source/bs/dictionaries/lv_LV.po2
-rw-r--r--source/bs/dictionaries/ne_NP.po2
-rw-r--r--source/bs/dictionaries/nl_NL.po2
-rw-r--r--source/bs/dictionaries/no.po2
-rw-r--r--source/bs/dictionaries/oc_FR.po2
-rw-r--r--source/bs/dictionaries/pl_PL.po2
-rw-r--r--source/bs/dictionaries/pt_BR.po2
-rw-r--r--source/bs/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/bs/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bs/dictionaries/pt_PT.po2
-rw-r--r--source/bs/dictionaries/ro.po2
-rw-r--r--source/bs/dictionaries/ru_RU.po2
-rw-r--r--source/bs/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/bs/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bs/dictionaries/si_LK.po2
-rw-r--r--source/bs/dictionaries/sk_SK.po2
-rw-r--r--source/bs/dictionaries/sl_SI.po2
-rw-r--r--source/bs/dictionaries/sr.po2
-rw-r--r--source/bs/dictionaries/sv_SE.po2
-rw-r--r--source/bs/dictionaries/sw_TZ.po2
-rw-r--r--source/bs/dictionaries/te_IN.po2
-rw-r--r--source/bs/dictionaries/th_TH.po2
-rw-r--r--source/bs/dictionaries/uk_UA.po2
-rw-r--r--source/bs/dictionaries/vi.po2
-rw-r--r--source/bs/dictionaries/zu_ZA.po2
-rw-r--r--source/bs/editeng/source/accessibility.po2
-rw-r--r--source/bs/editeng/source/editeng.po2
-rw-r--r--source/bs/editeng/source/items.po2
-rw-r--r--source/bs/editeng/source/misc.po2
-rw-r--r--source/bs/editeng/source/outliner.po2
-rw-r--r--source/bs/extensions/source/abpilot.po2
-rw-r--r--source/bs/extensions/source/bibliography.po2
-rw-r--r--source/bs/extensions/source/dbpilots.po2
-rw-r--r--source/bs/extensions/source/propctrlr.po2
-rw-r--r--source/bs/extensions/source/scanner.po2
-rw-r--r--source/bs/extensions/source/update/check.po2
-rw-r--r--source/bs/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/bs/filter/source/config/fragments/filters.po2
-rw-r--r--source/bs/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/bs/filter/source/config/fragments/types.po2
-rw-r--r--source/bs/filter/source/flash.po2
-rw-r--r--source/bs/filter/source/graphicfilter/eps.po2
-rw-r--r--source/bs/filter/source/pdf.po2
-rw-r--r--source/bs/filter/source/t602.po2
-rw-r--r--source/bs/filter/source/xsltdialog.po2
-rw-r--r--source/bs/filter/uiconfig/ui.po2
-rw-r--r--source/bs/forms/source/resource.po2
-rw-r--r--source/bs/formula/source/core/resource.po38
-rw-r--r--source/bs/formula/source/ui/dlg.po2
-rw-r--r--source/bs/fpicker/source/office.po2
-rw-r--r--source/bs/framework/source/classes.po2
-rw-r--r--source/bs/framework/source/services.po2
-rw-r--r--source/bs/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/bs/librelogo/source/pythonpath.po2
-rw-r--r--source/bs/mysqlc/source.po2
-rw-r--r--source/bs/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/bs/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/bs/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/bs/nlpsolver/src/locale.po2
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/bs/padmin/source.po2
-rw-r--r--source/bs/readlicense_oo/docs.po2
-rw-r--r--source/bs/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/bs/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bs/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/bs/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/bs/reportbuilder/util.po2
-rw-r--r--source/bs/reportdesign/source/core/resource.po2
-rw-r--r--source/bs/reportdesign/source/ui/dlg.po2
-rw-r--r--source/bs/reportdesign/source/ui/inspection.po2
-rw-r--r--source/bs/reportdesign/source/ui/report.po2
-rw-r--r--source/bs/sc/source/core/src.po2
-rw-r--r--source/bs/sc/source/ui/cctrl.po2
-rw-r--r--source/bs/sc/source/ui/dbgui.po2
-rw-r--r--source/bs/sc/source/ui/docshell.po2
-rw-r--r--source/bs/sc/source/ui/drawfunc.po2
-rw-r--r--source/bs/sc/source/ui/formdlg.po2
-rw-r--r--source/bs/sc/source/ui/miscdlgs.po2
-rw-r--r--source/bs/sc/source/ui/navipi.po2
-rw-r--r--source/bs/sc/source/ui/optdlg.po2
-rw-r--r--source/bs/sc/source/ui/pagedlg.po2
-rw-r--r--source/bs/sc/source/ui/src.po379
-rw-r--r--source/bs/sc/source/ui/styleui.po2
-rw-r--r--source/bs/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/bs/scaddins/source/analysis.po2
-rw-r--r--source/bs/scaddins/source/datefunc.po2
-rw-r--r--source/bs/scaddins/source/pricing.po2
-rw-r--r--source/bs/sccomp/source/solver.po2
-rw-r--r--source/bs/scp2/source/accessories.po2
-rw-r--r--source/bs/scp2/source/activex.po2
-rw-r--r--source/bs/scp2/source/base.po2
-rw-r--r--source/bs/scp2/source/calc.po2
-rw-r--r--source/bs/scp2/source/draw.po2
-rw-r--r--source/bs/scp2/source/extensions.po2
-rw-r--r--source/bs/scp2/source/gnome.po2
-rw-r--r--source/bs/scp2/source/graphicfilter.po2
-rw-r--r--source/bs/scp2/source/impress.po2
-rw-r--r--source/bs/scp2/source/javafilter.po2
-rw-r--r--source/bs/scp2/source/kde.po2
-rw-r--r--source/bs/scp2/source/math.po2
-rw-r--r--source/bs/scp2/source/onlineupdate.po2
-rw-r--r--source/bs/scp2/source/ooo.po2
-rw-r--r--source/bs/scp2/source/python.po18
-rw-r--r--source/bs/scp2/source/quickstart.po2
-rw-r--r--source/bs/scp2/source/sdkoo.po2
-rw-r--r--source/bs/scp2/source/smoketest.po2
-rw-r--r--source/bs/scp2/source/stdlibs.po2
-rw-r--r--source/bs/scp2/source/tde.po2
-rw-r--r--source/bs/scp2/source/winexplorerext.po2
-rw-r--r--source/bs/scp2/source/writer.po2
-rw-r--r--source/bs/scp2/source/xsltfilter.po2
-rw-r--r--source/bs/sd/source/core.po2
-rw-r--r--source/bs/sd/source/filter/html.po2
-rw-r--r--source/bs/sd/source/ui/accessibility.po2
-rw-r--r--source/bs/sd/source/ui/animations.po2
-rw-r--r--source/bs/sd/source/ui/annotations.po2
-rw-r--r--source/bs/sd/source/ui/app.po2
-rw-r--r--source/bs/sd/source/ui/dlg.po2
-rw-r--r--source/bs/sd/source/ui/slideshow.po2
-rw-r--r--source/bs/sd/source/ui/table.po2
-rw-r--r--source/bs/sd/source/ui/view.po2
-rw-r--r--source/bs/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/bs/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/bs/sdext/source/minimizer.po2
-rw-r--r--source/bs/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bs/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/bs/setup_native/source/mac.po2
-rw-r--r--source/bs/sfx2/source/appl.po2
-rw-r--r--source/bs/sfx2/source/bastyp.po2
-rw-r--r--source/bs/sfx2/source/control.po23
-rw-r--r--source/bs/sfx2/source/dialog.po46
-rw-r--r--source/bs/sfx2/source/doc.po126
-rw-r--r--source/bs/sfx2/source/menu.po2
-rw-r--r--source/bs/sfx2/source/view.po2
-rw-r--r--source/bs/sfx2/uiconfig/ui.po2
-rw-r--r--source/bs/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/bs/starmath/source.po2
-rw-r--r--source/bs/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/bs/svl/source/items.po2
-rw-r--r--source/bs/svl/source/misc.po2
-rw-r--r--source/bs/svtools/source/contnr.po2
-rw-r--r--source/bs/svtools/source/control.po2
-rw-r--r--source/bs/svtools/source/dialogs.po2
-rw-r--r--source/bs/svtools/source/java.po2
-rw-r--r--source/bs/svtools/source/misc.po2
-rw-r--r--source/bs/svtools/source/toolpanel.po2
-rw-r--r--source/bs/svtools/uiconfig/ui.po55
-rw-r--r--source/bs/svx/inc.po2
-rw-r--r--source/bs/svx/source/accessibility.po2
-rw-r--r--source/bs/svx/source/core.po2
-rw-r--r--source/bs/svx/source/dialog.po224
-rw-r--r--source/bs/svx/source/engine3d.po2
-rw-r--r--source/bs/svx/source/fmcomp.po2
-rw-r--r--source/bs/svx/source/form.po2
-rw-r--r--source/bs/svx/source/gallery2.po2
-rw-r--r--source/bs/svx/source/items.po2
-rw-r--r--source/bs/svx/source/src.po2
-rw-r--r--source/bs/svx/source/stbctrls.po2
-rw-r--r--source/bs/svx/source/svdraw.po2
-rw-r--r--source/bs/svx/source/table.po2
-rw-r--r--source/bs/svx/source/tbxctrls.po2
-rw-r--r--source/bs/svx/source/toolbars.po2
-rw-r--r--source/bs/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/bs/svx/uiconfig/ui.po204
-rw-r--r--source/bs/sw/source/core/layout.po2
-rw-r--r--source/bs/sw/source/core/undo.po2
-rw-r--r--source/bs/sw/source/core/unocore.po2
-rw-r--r--source/bs/sw/source/ui/app.po2
-rw-r--r--source/bs/sw/source/ui/chrdlg.po2
-rw-r--r--source/bs/sw/source/ui/config.po2
-rw-r--r--source/bs/sw/source/ui/dbui.po2
-rw-r--r--source/bs/sw/source/ui/dialog.po2
-rw-r--r--source/bs/sw/source/ui/dochdl.po2
-rw-r--r--source/bs/sw/source/ui/docvw.po2
-rw-r--r--source/bs/sw/source/ui/envelp.po2
-rw-r--r--source/bs/sw/source/ui/fldui.po2
-rw-r--r--source/bs/sw/source/ui/fmtui.po2
-rw-r--r--source/bs/sw/source/ui/frmdlg.po2
-rw-r--r--source/bs/sw/source/ui/globdoc.po2
-rw-r--r--source/bs/sw/source/ui/index.po2
-rw-r--r--source/bs/sw/source/ui/lingu.po2
-rw-r--r--source/bs/sw/source/ui/misc.po2
-rw-r--r--source/bs/sw/source/ui/ribbar.po2
-rw-r--r--source/bs/sw/source/ui/shells.po2
-rw-r--r--source/bs/sw/source/ui/smartmenu.po2
-rw-r--r--source/bs/sw/source/ui/table.po2
-rw-r--r--source/bs/sw/source/ui/uiview.po2
-rw-r--r--source/bs/sw/source/ui/utlui.po2
-rw-r--r--source/bs/sw/source/ui/web.po2
-rw-r--r--source/bs/sw/source/ui/wrtsh.po2
-rw-r--r--source/bs/sw/uiconfig/sw/ui.po285
-rw-r--r--source/bs/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/bs/swext/mediawiki/help.po2
-rw-r--r--source/bs/swext/mediawiki/src.po2
-rw-r--r--source/bs/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/bs/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/bs/sysui/desktop/share.po2
-rw-r--r--source/bs/tubes/uiconfig/ui.po2
-rw-r--r--source/bs/uui/source.po2
-rw-r--r--source/bs/vcl/qa/cppunit/builder.po2
-rw-r--r--source/bs/vcl/source/edit.po2
-rw-r--r--source/bs/vcl/source/src.po2
-rw-r--r--source/bs/vcl/uiconfig/ui.po2
-rw-r--r--source/bs/wizards/source/euro.po2
-rw-r--r--source/bs/wizards/source/formwizard.po2
-rw-r--r--source/bs/wizards/source/importwizard.po2
-rw-r--r--source/bs/wizards/source/template.po2
-rw-r--r--source/bs/xmlsecurity/source/component.po2
-rw-r--r--source/bs/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ca-XV/accessibility/source/helper.po4
-rw-r--r--source/ca-XV/android/sdremote/res/values.po19
-rw-r--r--source/ca-XV/avmedia/source/framework.po6
-rw-r--r--source/ca-XV/avmedia/source/viewer.po11
-rw-r--r--source/ca-XV/basctl/source/basicide.po4
-rw-r--r--source/ca-XV/basctl/source/dlged.po4
-rw-r--r--source/ca-XV/basctl/uiconfig/basicide/ui.po4
-rw-r--r--source/ca-XV/basic/source/classes.po6
-rw-r--r--source/ca-XV/basic/source/sbx.po4
-rw-r--r--source/ca-XV/chart2/source/controller/dialogs.po4
-rw-r--r--source/ca-XV/connectivity/registry/ado/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/calc/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/flat/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/kab/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/macab/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/mork/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/connectivity/source/resource.po4
-rw-r--r--source/ca-XV/cui/source/customize.po6
-rw-r--r--source/ca-XV/cui/source/dialogs.po6
-rw-r--r--source/ca-XV/cui/source/options.po26
-rw-r--r--source/ca-XV/cui/source/tabpages.po4
-rw-r--r--source/ca-XV/cui/uiconfig/ui.po38
-rw-r--r--source/ca-XV/dbaccess/source/core/resource.po4
-rw-r--r--source/ca-XV/dbaccess/source/ext/macromigration.po4
-rw-r--r--source/ca-XV/dbaccess/source/sdbtools/resource.po4
-rw-r--r--source/ca-XV/dbaccess/source/ui/app.po4
-rw-r--r--source/ca-XV/dbaccess/source/ui/browser.po4
-rw-r--r--source/ca-XV/dbaccess/source/ui/control.po4
-rw-r--r--source/ca-XV/dbaccess/source/ui/dlg.po4
-rw-r--r--source/ca-XV/dbaccess/source/ui/inc.po4
-rw-r--r--source/ca-XV/dbaccess/source/ui/misc.po4
-rw-r--r--source/ca-XV/dbaccess/source/ui/querydesign.po4
-rw-r--r--source/ca-XV/dbaccess/source/ui/relationdesign.po4
-rw-r--r--source/ca-XV/dbaccess/source/ui/tabledesign.po4
-rw-r--r--source/ca-XV/dbaccess/source/ui/uno.po4
-rw-r--r--source/ca-XV/desktop/source/app.po4
-rw-r--r--source/ca-XV/desktop/source/deployment/gui.po28
-rw-r--r--source/ca-XV/desktop/source/deployment/manager.po4
-rw-r--r--source/ca-XV/desktop/source/deployment/misc.po4
-rw-r--r--source/ca-XV/desktop/source/deployment/registry.po4
-rw-r--r--source/ca-XV/desktop/source/deployment/registry/component.po4
-rw-r--r--source/ca-XV/desktop/source/deployment/registry/configuration.po4
-rw-r--r--source/ca-XV/desktop/source/deployment/registry/help.po4
-rw-r--r--source/ca-XV/desktop/source/deployment/registry/package.po4
-rw-r--r--source/ca-XV/desktop/source/deployment/registry/script.po4
-rw-r--r--source/ca-XV/desktop/source/deployment/registry/sfwk.po4
-rw-r--r--source/ca-XV/desktop/source/deployment/unopkg.po4
-rw-r--r--source/ca-XV/desktop/uiconfig/ui.po4
-rw-r--r--source/ca-XV/dictionaries/af_ZA.po4
-rw-r--r--source/ca-XV/dictionaries/an_ES.po4
-rw-r--r--source/ca-XV/dictionaries/ar.po4
-rw-r--r--source/ca-XV/dictionaries/be_BY.po4
-rw-r--r--source/ca-XV/dictionaries/bg_BG.po4
-rw-r--r--source/ca-XV/dictionaries/bn_BD.po4
-rw-r--r--source/ca-XV/dictionaries/br_FR.po4
-rw-r--r--source/ca-XV/dictionaries/ca.po4
-rw-r--r--source/ca-XV/dictionaries/cs_CZ.po4
-rw-r--r--source/ca-XV/dictionaries/da_DK.po4
-rw-r--r--source/ca-XV/dictionaries/de.po4
-rw-r--r--source/ca-XV/dictionaries/el_GR.po4
-rw-r--r--source/ca-XV/dictionaries/en.po4
-rw-r--r--source/ca-XV/dictionaries/en/dialog.po4
-rw-r--r--source/ca-XV/dictionaries/en/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/ca-XV/dictionaries/es.po4
-rw-r--r--source/ca-XV/dictionaries/et_EE.po4
-rw-r--r--source/ca-XV/dictionaries/fr_FR.po4
-rw-r--r--source/ca-XV/dictionaries/gd_GB.po4
-rw-r--r--source/ca-XV/dictionaries/gl.po4
-rw-r--r--source/ca-XV/dictionaries/gu_IN.po4
-rw-r--r--source/ca-XV/dictionaries/he_IL.po4
-rw-r--r--source/ca-XV/dictionaries/hi_IN.po4
-rw-r--r--source/ca-XV/dictionaries/hr_HR.po4
-rw-r--r--source/ca-XV/dictionaries/hu_HU.po4
-rw-r--r--source/ca-XV/dictionaries/hu_HU/dialog.po4
-rw-r--r--source/ca-XV/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/ca-XV/dictionaries/it_IT.po4
-rw-r--r--source/ca-XV/dictionaries/ku_TR.po4
-rw-r--r--source/ca-XV/dictionaries/lt_LT.po4
-rw-r--r--source/ca-XV/dictionaries/lv_LV.po4
-rw-r--r--source/ca-XV/dictionaries/ne_NP.po4
-rw-r--r--source/ca-XV/dictionaries/nl_NL.po4
-rw-r--r--source/ca-XV/dictionaries/no.po4
-rw-r--r--source/ca-XV/dictionaries/oc_FR.po4
-rw-r--r--source/ca-XV/dictionaries/pl_PL.po4
-rw-r--r--source/ca-XV/dictionaries/pt_BR.po4
-rw-r--r--source/ca-XV/dictionaries/pt_BR/dialog.po4
-rw-r--r--source/ca-XV/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/ca-XV/dictionaries/pt_PT.po4
-rw-r--r--source/ca-XV/dictionaries/ro.po4
-rw-r--r--source/ca-XV/dictionaries/ru_RU.po4
-rw-r--r--source/ca-XV/dictionaries/ru_RU/dialog.po4
-rw-r--r--source/ca-XV/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/ca-XV/dictionaries/si_LK.po4
-rw-r--r--source/ca-XV/dictionaries/sk_SK.po4
-rw-r--r--source/ca-XV/dictionaries/sl_SI.po4
-rw-r--r--source/ca-XV/dictionaries/sr.po4
-rw-r--r--source/ca-XV/dictionaries/sv_SE.po4
-rw-r--r--source/ca-XV/dictionaries/sw_TZ.po4
-rw-r--r--source/ca-XV/dictionaries/te_IN.po4
-rw-r--r--source/ca-XV/dictionaries/th_TH.po4
-rw-r--r--source/ca-XV/dictionaries/uk_UA.po4
-rw-r--r--source/ca-XV/dictionaries/vi.po4
-rw-r--r--source/ca-XV/dictionaries/zu_ZA.po4
-rw-r--r--source/ca-XV/editeng/source/accessibility.po4
-rw-r--r--source/ca-XV/editeng/source/editeng.po4
-rw-r--r--source/ca-XV/editeng/source/items.po4
-rw-r--r--source/ca-XV/editeng/source/misc.po4
-rw-r--r--source/ca-XV/editeng/source/outliner.po4
-rw-r--r--source/ca-XV/extensions/source/abpilot.po4
-rw-r--r--source/ca-XV/extensions/source/bibliography.po13
-rw-r--r--source/ca-XV/extensions/source/dbpilots.po4
-rw-r--r--source/ca-XV/extensions/source/propctrlr.po6
-rw-r--r--source/ca-XV/extensions/source/scanner.po4
-rw-r--r--source/ca-XV/extensions/source/update/check.po4
-rw-r--r--source/ca-XV/extensions/source/update/check/org/openoffice/Office.po4
-rw-r--r--source/ca-XV/filter/source/config/fragments/filters.po4
-rw-r--r--source/ca-XV/filter/source/config/fragments/internalgraphicfilters.po4
-rw-r--r--source/ca-XV/filter/source/config/fragments/types.po4
-rw-r--r--source/ca-XV/filter/source/flash.po4
-rw-r--r--source/ca-XV/filter/source/graphicfilter/eps.po4
-rw-r--r--source/ca-XV/filter/source/pdf.po6
-rw-r--r--source/ca-XV/filter/source/t602.po4
-rw-r--r--source/ca-XV/filter/source/xsltdialog.po4
-rw-r--r--source/ca-XV/filter/uiconfig/ui.po4
-rw-r--r--source/ca-XV/forms/source/resource.po4
-rw-r--r--source/ca-XV/formula/source/core/resource.po40
-rw-r--r--source/ca-XV/formula/source/ui/dlg.po4
-rw-r--r--source/ca-XV/fpicker/source/office.po6
-rw-r--r--source/ca-XV/framework/source/classes.po6
-rw-r--r--source/ca-XV/framework/source/services.po4
-rw-r--r--source/ca-XV/instsetoo_native/inc_openoffice/windows/msi_languages.po32
-rw-r--r--source/ca-XV/librelogo/source/pythonpath.po6
-rw-r--r--source/ca-XV/mysqlc/source.po4
-rw-r--r--source/ca-XV/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ca-XV/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po8
-rw-r--r--source/ca-XV/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po4
-rw-r--r--source/ca-XV/nlpsolver/src/locale.po12
-rw-r--r--source/ca-XV/officecfg/registry/data/org/openoffice/Office.po32
-rw-r--r--source/ca-XV/officecfg/registry/data/org/openoffice/Office/UI.po55
-rw-r--r--source/ca-XV/padmin/source.po20
-rw-r--r--source/ca-XV/readlicense_oo/docs.po12
-rw-r--r--source/ca-XV/reportbuilder/java/com/sun/star/report/function/metadata.po4
-rw-r--r--source/ca-XV/reportbuilder/registry/data/org/openoffice/Office.po4
-rw-r--r--source/ca-XV/reportbuilder/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/ca-XV/reportbuilder/registry/data/org/openoffice/TypeDetection.po4
-rw-r--r--source/ca-XV/reportbuilder/util.po4
-rw-r--r--source/ca-XV/reportdesign/source/core/resource.po4
-rw-r--r--source/ca-XV/reportdesign/source/ui/dlg.po4
-rw-r--r--source/ca-XV/reportdesign/source/ui/inspection.po4
-rw-r--r--source/ca-XV/reportdesign/source/ui/report.po8
-rw-r--r--source/ca-XV/sc/source/core/src.po4
-rw-r--r--source/ca-XV/sc/source/ui/cctrl.po4
-rw-r--r--source/ca-XV/sc/source/ui/dbgui.po6
-rw-r--r--source/ca-XV/sc/source/ui/docshell.po4
-rw-r--r--source/ca-XV/sc/source/ui/drawfunc.po4
-rw-r--r--source/ca-XV/sc/source/ui/formdlg.po4
-rw-r--r--source/ca-XV/sc/source/ui/miscdlgs.po4
-rw-r--r--source/ca-XV/sc/source/ui/navipi.po4
-rw-r--r--source/ca-XV/sc/source/ui/optdlg.po4
-rw-r--r--source/ca-XV/sc/source/ui/pagedlg.po4
-rw-r--r--source/ca-XV/sc/source/ui/src.po472
-rw-r--r--source/ca-XV/sc/source/ui/styleui.po19
-rw-r--r--source/ca-XV/sc/uiconfig/scalc/ui.po40
-rw-r--r--source/ca-XV/scaddins/source/analysis.po4
-rw-r--r--source/ca-XV/scaddins/source/datefunc.po4
-rw-r--r--source/ca-XV/scaddins/source/pricing.po12
-rw-r--r--source/ca-XV/sccomp/source/solver.po4
-rw-r--r--source/ca-XV/scp2/source/accessories.po4
-rw-r--r--source/ca-XV/scp2/source/activex.po4
-rw-r--r--source/ca-XV/scp2/source/base.po4
-rw-r--r--source/ca-XV/scp2/source/calc.po4
-rw-r--r--source/ca-XV/scp2/source/draw.po4
-rw-r--r--source/ca-XV/scp2/source/extensions.po13
-rw-r--r--source/ca-XV/scp2/source/gnome.po4
-rw-r--r--source/ca-XV/scp2/source/graphicfilter.po4
-rw-r--r--source/ca-XV/scp2/source/impress.po4
-rw-r--r--source/ca-XV/scp2/source/javafilter.po4
-rw-r--r--source/ca-XV/scp2/source/kde.po4
-rw-r--r--source/ca-XV/scp2/source/math.po4
-rw-r--r--source/ca-XV/scp2/source/onlineupdate.po4
-rw-r--r--source/ca-XV/scp2/source/ooo.po20
-rw-r--r--source/ca-XV/scp2/source/python.po24
-rw-r--r--source/ca-XV/scp2/source/quickstart.po4
-rw-r--r--source/ca-XV/scp2/source/sdkoo.po4
-rw-r--r--source/ca-XV/scp2/source/smoketest.po4
-rw-r--r--source/ca-XV/scp2/source/stdlibs.po4
-rw-r--r--source/ca-XV/scp2/source/tde.po4
-rw-r--r--source/ca-XV/scp2/source/winexplorerext.po4
-rw-r--r--source/ca-XV/scp2/source/writer.po4
-rw-r--r--source/ca-XV/scp2/source/xsltfilter.po4
-rw-r--r--source/ca-XV/sd/source/core.po4
-rw-r--r--source/ca-XV/sd/source/filter/html.po12
-rw-r--r--source/ca-XV/sd/source/ui/accessibility.po4
-rw-r--r--source/ca-XV/sd/source/ui/animations.po25
-rw-r--r--source/ca-XV/sd/source/ui/annotations.po6
-rw-r--r--source/ca-XV/sd/source/ui/app.po21
-rw-r--r--source/ca-XV/sd/source/ui/dlg.po20
-rw-r--r--source/ca-XV/sd/source/ui/slideshow.po4
-rw-r--r--source/ca-XV/sd/source/ui/table.po17
-rw-r--r--source/ca-XV/sd/source/ui/view.po4
-rw-r--r--source/ca-XV/sd/uiconfig/sdraw/ui.po12
-rw-r--r--source/ca-XV/sd/uiconfig/simpress/ui.po12
-rw-r--r--source/ca-XV/sdext/source/minimizer.po4
-rw-r--r--source/ca-XV/sdext/source/minimizer/registry/data/org/openoffice/Office.po4
-rw-r--r--source/ca-XV/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po6
-rw-r--r--source/ca-XV/setup_native/source/mac.po4
-rw-r--r--source/ca-XV/sfx2/source/appl.po6
-rw-r--r--source/ca-XV/sfx2/source/bastyp.po4
-rw-r--r--source/ca-XV/sfx2/source/control.po25
-rw-r--r--source/ca-XV/sfx2/source/dialog.po64
-rw-r--r--source/ca-XV/sfx2/source/doc.po134
-rw-r--r--source/ca-XV/sfx2/source/menu.po6
-rw-r--r--source/ca-XV/sfx2/source/view.po4
-rw-r--r--source/ca-XV/sfx2/uiconfig/ui.po12
-rw-r--r--source/ca-XV/shell/source/win32/shlxthandler/res.po4
-rw-r--r--source/ca-XV/starmath/source.po6
-rw-r--r--source/ca-XV/starmath/uiconfig/smath/ui.po4
-rw-r--r--source/ca-XV/svl/source/items.po4
-rw-r--r--source/ca-XV/svl/source/misc.po4
-rw-r--r--source/ca-XV/svtools/source/contnr.po4
-rw-r--r--source/ca-XV/svtools/source/control.po4
-rw-r--r--source/ca-XV/svtools/source/dialogs.po6
-rw-r--r--source/ca-XV/svtools/source/java.po4
-rw-r--r--source/ca-XV/svtools/source/misc.po4
-rw-r--r--source/ca-XV/svtools/source/toolpanel.po4
-rw-r--r--source/ca-XV/svtools/uiconfig/ui.po76
-rw-r--r--source/ca-XV/svx/inc.po14
-rw-r--r--source/ca-XV/svx/source/accessibility.po4
-rw-r--r--source/ca-XV/svx/source/core.po4
-rw-r--r--source/ca-XV/svx/source/dialog.po237
-rw-r--r--source/ca-XV/svx/source/engine3d.po4
-rw-r--r--source/ca-XV/svx/source/fmcomp.po4
-rw-r--r--source/ca-XV/svx/source/form.po4
-rw-r--r--source/ca-XV/svx/source/gallery2.po4
-rw-r--r--source/ca-XV/svx/source/items.po4
-rw-r--r--source/ca-XV/svx/source/src.po4
-rw-r--r--source/ca-XV/svx/source/stbctrls.po4
-rw-r--r--source/ca-XV/svx/source/svdraw.po8
-rw-r--r--source/ca-XV/svx/source/table.po4
-rw-r--r--source/ca-XV/svx/source/tbxctrls.po4
-rw-r--r--source/ca-XV/svx/source/toolbars.po4
-rw-r--r--source/ca-XV/svx/source/unodialogs/textconversiondlgs.po4
-rw-r--r--source/ca-XV/svx/uiconfig/ui.po206
-rw-r--r--source/ca-XV/sw/source/core/layout.po4
-rw-r--r--source/ca-XV/sw/source/core/undo.po8
-rw-r--r--source/ca-XV/sw/source/core/unocore.po4
-rw-r--r--source/ca-XV/sw/source/ui/app.po75
-rw-r--r--source/ca-XV/sw/source/ui/chrdlg.po4
-rw-r--r--source/ca-XV/sw/source/ui/config.po6
-rw-r--r--source/ca-XV/sw/source/ui/dbui.po14
-rw-r--r--source/ca-XV/sw/source/ui/dialog.po4
-rw-r--r--source/ca-XV/sw/source/ui/dochdl.po6
-rw-r--r--source/ca-XV/sw/source/ui/docvw.po4
-rw-r--r--source/ca-XV/sw/source/ui/envelp.po11
-rw-r--r--source/ca-XV/sw/source/ui/fldui.po4
-rw-r--r--source/ca-XV/sw/source/ui/fmtui.po4
-rw-r--r--source/ca-XV/sw/source/ui/frmdlg.po4
-rw-r--r--source/ca-XV/sw/source/ui/globdoc.po4
-rw-r--r--source/ca-XV/sw/source/ui/index.po4
-rw-r--r--source/ca-XV/sw/source/ui/lingu.po4
-rw-r--r--source/ca-XV/sw/source/ui/misc.po4
-rw-r--r--source/ca-XV/sw/source/ui/ribbar.po4
-rw-r--r--source/ca-XV/sw/source/ui/shells.po4
-rw-r--r--source/ca-XV/sw/source/ui/smartmenu.po4
-rw-r--r--source/ca-XV/sw/source/ui/table.po14
-rw-r--r--source/ca-XV/sw/source/ui/uiview.po4
-rw-r--r--source/ca-XV/sw/source/ui/utlui.po52
-rw-r--r--source/ca-XV/sw/source/ui/web.po4
-rw-r--r--source/ca-XV/sw/source/ui/wrtsh.po4
-rw-r--r--source/ca-XV/sw/uiconfig/sw/ui.po278
-rw-r--r--source/ca-XV/sw/uiconfig/swriter/ui.po157
-rw-r--r--source/ca-XV/swext/mediawiki/help.po8
-rw-r--r--source/ca-XV/swext/mediawiki/src.po4
-rw-r--r--source/ca-XV/swext/mediawiki/src/registry/data/org/openoffice/Office.po4
-rw-r--r--source/ca-XV/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po6
-rw-r--r--source/ca-XV/sysui/desktop/share.po4
-rw-r--r--source/ca-XV/tubes/uiconfig/ui.po22
-rw-r--r--source/ca-XV/uui/source.po12
-rw-r--r--source/ca-XV/vcl/qa/cppunit/builder.po4
-rw-r--r--source/ca-XV/vcl/source/edit.po4
-rw-r--r--source/ca-XV/vcl/source/src.po4
-rw-r--r--source/ca-XV/vcl/uiconfig/ui.po4
-rw-r--r--source/ca-XV/wizards/source/euro.po4
-rw-r--r--source/ca-XV/wizards/source/formwizard.po10
-rw-r--r--source/ca-XV/wizards/source/importwizard.po4
-rw-r--r--source/ca-XV/wizards/source/template.po4
-rw-r--r--source/ca-XV/xmlsecurity/source/component.po4
-rw-r--r--source/ca-XV/xmlsecurity/source/dialogs.po4
-rw-r--r--source/ca/accessibility/source/helper.po2
-rw-r--r--source/ca/android/sdremote/res/values.po17
-rw-r--r--source/ca/avmedia/source/framework.po2
-rw-r--r--source/ca/avmedia/source/viewer.po9
-rw-r--r--source/ca/basctl/source/basicide.po2
-rw-r--r--source/ca/basctl/source/dlged.po2
-rw-r--r--source/ca/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ca/basic/source/classes.po2
-rw-r--r--source/ca/basic/source/sbx.po2
-rw-r--r--source/ca/chart2/source/controller/dialogs.po2
-rw-r--r--source/ca/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/connectivity/source/resource.po2
-rw-r--r--source/ca/cui/source/customize.po2
-rw-r--r--source/ca/cui/source/dialogs.po2
-rw-r--r--source/ca/cui/source/options.po4
-rw-r--r--source/ca/cui/source/tabpages.po2
-rw-r--r--source/ca/cui/uiconfig/ui.po4
-rw-r--r--source/ca/dbaccess/source/core/resource.po2
-rw-r--r--source/ca/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ca/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ca/dbaccess/source/ui/app.po2
-rw-r--r--source/ca/dbaccess/source/ui/browser.po2
-rw-r--r--source/ca/dbaccess/source/ui/control.po2
-rw-r--r--source/ca/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ca/dbaccess/source/ui/inc.po2
-rw-r--r--source/ca/dbaccess/source/ui/misc.po2
-rw-r--r--source/ca/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ca/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ca/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ca/dbaccess/source/ui/uno.po2
-rw-r--r--source/ca/desktop/source/app.po2
-rw-r--r--source/ca/desktop/source/deployment/gui.po61
-rw-r--r--source/ca/desktop/source/deployment/manager.po2
-rw-r--r--source/ca/desktop/source/deployment/misc.po2
-rw-r--r--source/ca/desktop/source/deployment/registry.po2
-rw-r--r--source/ca/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ca/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ca/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ca/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ca/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ca/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ca/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ca/desktop/uiconfig/ui.po2
-rw-r--r--source/ca/dictionaries/af_ZA.po2
-rw-r--r--source/ca/dictionaries/an_ES.po2
-rw-r--r--source/ca/dictionaries/ar.po2
-rw-r--r--source/ca/dictionaries/be_BY.po2
-rw-r--r--source/ca/dictionaries/bg_BG.po2
-rw-r--r--source/ca/dictionaries/bn_BD.po2
-rw-r--r--source/ca/dictionaries/br_FR.po2
-rw-r--r--source/ca/dictionaries/ca.po2
-rw-r--r--source/ca/dictionaries/cs_CZ.po2
-rw-r--r--source/ca/dictionaries/da_DK.po2
-rw-r--r--source/ca/dictionaries/de.po2
-rw-r--r--source/ca/dictionaries/el_GR.po2
-rw-r--r--source/ca/dictionaries/en.po2
-rw-r--r--source/ca/dictionaries/en/dialog.po2
-rw-r--r--source/ca/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ca/dictionaries/es.po2
-rw-r--r--source/ca/dictionaries/et_EE.po2
-rw-r--r--source/ca/dictionaries/fr_FR.po2
-rw-r--r--source/ca/dictionaries/gd_GB.po2
-rw-r--r--source/ca/dictionaries/gl.po2
-rw-r--r--source/ca/dictionaries/gu_IN.po2
-rw-r--r--source/ca/dictionaries/he_IL.po2
-rw-r--r--source/ca/dictionaries/hi_IN.po2
-rw-r--r--source/ca/dictionaries/hr_HR.po2
-rw-r--r--source/ca/dictionaries/hu_HU.po2
-rw-r--r--source/ca/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ca/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ca/dictionaries/it_IT.po2
-rw-r--r--source/ca/dictionaries/ku_TR.po2
-rw-r--r--source/ca/dictionaries/lt_LT.po2
-rw-r--r--source/ca/dictionaries/lv_LV.po2
-rw-r--r--source/ca/dictionaries/ne_NP.po2
-rw-r--r--source/ca/dictionaries/nl_NL.po2
-rw-r--r--source/ca/dictionaries/no.po2
-rw-r--r--source/ca/dictionaries/oc_FR.po2
-rw-r--r--source/ca/dictionaries/pl_PL.po2
-rw-r--r--source/ca/dictionaries/pt_BR.po2
-rw-r--r--source/ca/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ca/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ca/dictionaries/pt_PT.po2
-rw-r--r--source/ca/dictionaries/ro.po2
-rw-r--r--source/ca/dictionaries/ru_RU.po2
-rw-r--r--source/ca/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ca/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ca/dictionaries/si_LK.po2
-rw-r--r--source/ca/dictionaries/sk_SK.po2
-rw-r--r--source/ca/dictionaries/sl_SI.po2
-rw-r--r--source/ca/dictionaries/sr.po2
-rw-r--r--source/ca/dictionaries/sv_SE.po2
-rw-r--r--source/ca/dictionaries/sw_TZ.po2
-rw-r--r--source/ca/dictionaries/te_IN.po2
-rw-r--r--source/ca/dictionaries/th_TH.po2
-rw-r--r--source/ca/dictionaries/uk_UA.po2
-rw-r--r--source/ca/dictionaries/vi.po2
-rw-r--r--source/ca/dictionaries/zu_ZA.po2
-rw-r--r--source/ca/editeng/source/accessibility.po2
-rw-r--r--source/ca/editeng/source/editeng.po2
-rw-r--r--source/ca/editeng/source/items.po2
-rw-r--r--source/ca/editeng/source/misc.po2
-rw-r--r--source/ca/editeng/source/outliner.po2
-rw-r--r--source/ca/extensions/source/abpilot.po2
-rw-r--r--source/ca/extensions/source/bibliography.po11
-rw-r--r--source/ca/extensions/source/dbpilots.po2
-rw-r--r--source/ca/extensions/source/propctrlr.po2
-rw-r--r--source/ca/extensions/source/scanner.po2
-rw-r--r--source/ca/extensions/source/update/check.po2
-rw-r--r--source/ca/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ca/filter/source/config/fragments/filters.po2
-rw-r--r--source/ca/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ca/filter/source/config/fragments/types.po2
-rw-r--r--source/ca/filter/source/flash.po2
-rw-r--r--source/ca/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ca/filter/source/pdf.po2
-rw-r--r--source/ca/filter/source/t602.po2
-rw-r--r--source/ca/filter/source/xsltdialog.po2
-rw-r--r--source/ca/filter/uiconfig/ui.po2
-rw-r--r--source/ca/forms/source/resource.po2
-rw-r--r--source/ca/formula/source/core/resource.po46
-rw-r--r--source/ca/formula/source/ui/dlg.po2
-rw-r--r--source/ca/fpicker/source/office.po2
-rw-r--r--source/ca/framework/source/classes.po2
-rw-r--r--source/ca/framework/source/services.po2
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/02.po8
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po27
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po35
-rw-r--r--source/ca/instsetoo_native/inc_openoffice/windows/msi_languages.po24
-rw-r--r--source/ca/librelogo/source/pythonpath.po61
-rw-r--r--source/ca/mysqlc/source.po2
-rw-r--r--source/ca/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ca/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ca/nlpsolver/src/locale.po2
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office.po28
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/ca/padmin/source.po4
-rw-r--r--source/ca/readlicense_oo/docs.po10
-rw-r--r--source/ca/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ca/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ca/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ca/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ca/reportbuilder/util.po2
-rw-r--r--source/ca/reportdesign/source/core/resource.po2
-rw-r--r--source/ca/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ca/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ca/reportdesign/source/ui/report.po2
-rw-r--r--source/ca/sc/source/core/src.po2
-rw-r--r--source/ca/sc/source/ui/cctrl.po2
-rw-r--r--source/ca/sc/source/ui/dbgui.po2
-rw-r--r--source/ca/sc/source/ui/docshell.po2
-rw-r--r--source/ca/sc/source/ui/drawfunc.po2
-rw-r--r--source/ca/sc/source/ui/formdlg.po2
-rw-r--r--source/ca/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ca/sc/source/ui/navipi.po2
-rw-r--r--source/ca/sc/source/ui/optdlg.po2
-rw-r--r--source/ca/sc/source/ui/pagedlg.po2
-rw-r--r--source/ca/sc/source/ui/src.po455
-rw-r--r--source/ca/sc/source/ui/styleui.po17
-rw-r--r--source/ca/sc/uiconfig/scalc/ui.po16
-rw-r--r--source/ca/scaddins/source/analysis.po2
-rw-r--r--source/ca/scaddins/source/datefunc.po2
-rw-r--r--source/ca/scaddins/source/pricing.po135
-rw-r--r--source/ca/sccomp/source/solver.po2
-rw-r--r--source/ca/scp2/source/accessories.po2
-rw-r--r--source/ca/scp2/source/activex.po2
-rw-r--r--source/ca/scp2/source/base.po2
-rw-r--r--source/ca/scp2/source/calc.po2
-rw-r--r--source/ca/scp2/source/draw.po2
-rw-r--r--source/ca/scp2/source/extensions.po11
-rw-r--r--source/ca/scp2/source/gnome.po2
-rw-r--r--source/ca/scp2/source/graphicfilter.po2
-rw-r--r--source/ca/scp2/source/impress.po2
-rw-r--r--source/ca/scp2/source/javafilter.po2
-rw-r--r--source/ca/scp2/source/kde.po2
-rw-r--r--source/ca/scp2/source/math.po2
-rw-r--r--source/ca/scp2/source/onlineupdate.po2
-rw-r--r--source/ca/scp2/source/ooo.po24
-rw-r--r--source/ca/scp2/source/python.po26
-rw-r--r--source/ca/scp2/source/quickstart.po2
-rw-r--r--source/ca/scp2/source/sdkoo.po2
-rw-r--r--source/ca/scp2/source/smoketest.po2
-rw-r--r--source/ca/scp2/source/stdlibs.po2
-rw-r--r--source/ca/scp2/source/tde.po2
-rw-r--r--source/ca/scp2/source/winexplorerext.po2
-rw-r--r--source/ca/scp2/source/writer.po2
-rw-r--r--source/ca/scp2/source/xsltfilter.po2
-rw-r--r--source/ca/sd/source/core.po2
-rw-r--r--source/ca/sd/source/filter/html.po10
-rw-r--r--source/ca/sd/source/ui/accessibility.po2
-rw-r--r--source/ca/sd/source/ui/animations.po19
-rw-r--r--source/ca/sd/source/ui/annotations.po2
-rw-r--r--source/ca/sd/source/ui/app.po11
-rw-r--r--source/ca/sd/source/ui/dlg.po18
-rw-r--r--source/ca/sd/source/ui/slideshow.po2
-rw-r--r--source/ca/sd/source/ui/table.po15
-rw-r--r--source/ca/sd/source/ui/view.po2
-rw-r--r--source/ca/sd/uiconfig/sdraw/ui.po10
-rw-r--r--source/ca/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/ca/sdext/source/minimizer.po2
-rw-r--r--source/ca/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ca/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ca/setup_native/source/mac.po2
-rw-r--r--source/ca/sfx2/source/appl.po2
-rw-r--r--source/ca/sfx2/source/bastyp.po2
-rw-r--r--source/ca/sfx2/source/control.po25
-rw-r--r--source/ca/sfx2/source/dialog.po56
-rw-r--r--source/ca/sfx2/source/doc.po132
-rw-r--r--source/ca/sfx2/source/menu.po2
-rw-r--r--source/ca/sfx2/source/view.po2
-rw-r--r--source/ca/sfx2/uiconfig/ui.po10
-rw-r--r--source/ca/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ca/starmath/source.po2
-rw-r--r--source/ca/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ca/svl/source/items.po2
-rw-r--r--source/ca/svl/source/misc.po2
-rw-r--r--source/ca/svtools/source/contnr.po2
-rw-r--r--source/ca/svtools/source/control.po2
-rw-r--r--source/ca/svtools/source/dialogs.po2
-rw-r--r--source/ca/svtools/source/java.po2
-rw-r--r--source/ca/svtools/source/misc.po50
-rw-r--r--source/ca/svtools/source/toolpanel.po2
-rw-r--r--source/ca/svtools/uiconfig/ui.po64
-rw-r--r--source/ca/svx/inc.po4
-rw-r--r--source/ca/svx/source/accessibility.po2
-rw-r--r--source/ca/svx/source/core.po2
-rw-r--r--source/ca/svx/source/dialog.po231
-rw-r--r--source/ca/svx/source/engine3d.po2
-rw-r--r--source/ca/svx/source/fmcomp.po2
-rw-r--r--source/ca/svx/source/form.po12
-rw-r--r--source/ca/svx/source/gallery2.po2
-rw-r--r--source/ca/svx/source/items.po2
-rw-r--r--source/ca/svx/source/src.po2
-rw-r--r--source/ca/svx/source/stbctrls.po2
-rw-r--r--source/ca/svx/source/svdraw.po2
-rw-r--r--source/ca/svx/source/table.po2
-rw-r--r--source/ca/svx/source/tbxctrls.po2
-rw-r--r--source/ca/svx/source/toolbars.po2
-rw-r--r--source/ca/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ca/svx/uiconfig/ui.po206
-rw-r--r--source/ca/sw/source/core/layout.po2
-rw-r--r--source/ca/sw/source/core/undo.po2
-rw-r--r--source/ca/sw/source/core/unocore.po2
-rw-r--r--source/ca/sw/source/ui/app.po13
-rw-r--r--source/ca/sw/source/ui/chrdlg.po2
-rw-r--r--source/ca/sw/source/ui/config.po2
-rw-r--r--source/ca/sw/source/ui/dbui.po2
-rw-r--r--source/ca/sw/source/ui/dialog.po2
-rw-r--r--source/ca/sw/source/ui/dochdl.po2
-rw-r--r--source/ca/sw/source/ui/docvw.po2
-rw-r--r--source/ca/sw/source/ui/envelp.po9
-rw-r--r--source/ca/sw/source/ui/fldui.po2
-rw-r--r--source/ca/sw/source/ui/fmtui.po2
-rw-r--r--source/ca/sw/source/ui/frmdlg.po2
-rw-r--r--source/ca/sw/source/ui/globdoc.po2
-rw-r--r--source/ca/sw/source/ui/index.po2
-rw-r--r--source/ca/sw/source/ui/lingu.po2
-rw-r--r--source/ca/sw/source/ui/misc.po2
-rw-r--r--source/ca/sw/source/ui/ribbar.po2
-rw-r--r--source/ca/sw/source/ui/shells.po2
-rw-r--r--source/ca/sw/source/ui/smartmenu.po2
-rw-r--r--source/ca/sw/source/ui/table.po12
-rw-r--r--source/ca/sw/source/ui/uiview.po2
-rw-r--r--source/ca/sw/source/ui/utlui.po32
-rw-r--r--source/ca/sw/source/ui/web.po2
-rw-r--r--source/ca/sw/source/ui/wrtsh.po2
-rw-r--r--source/ca/sw/uiconfig/sw/ui.po278
-rw-r--r--source/ca/sw/uiconfig/swriter/ui.po39
-rw-r--r--source/ca/swext/mediawiki/help.po13
-rw-r--r--source/ca/swext/mediawiki/src.po2
-rw-r--r--source/ca/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ca/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ca/sysui/desktop/share.po2
-rw-r--r--source/ca/tubes/uiconfig/ui.po13
-rw-r--r--source/ca/uui/source.po2
-rw-r--r--source/ca/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ca/vcl/source/edit.po2
-rw-r--r--source/ca/vcl/source/src.po2
-rw-r--r--source/ca/vcl/uiconfig/ui.po2
-rw-r--r--source/ca/wizards/source/euro.po2
-rw-r--r--source/ca/wizards/source/formwizard.po2
-rw-r--r--source/ca/wizards/source/importwizard.po2
-rw-r--r--source/ca/wizards/source/template.po2
-rw-r--r--source/ca/xmlsecurity/source/component.po2
-rw-r--r--source/ca/xmlsecurity/source/dialogs.po2
-rw-r--r--source/cs/accessibility/source/helper.po2
-rw-r--r--source/cs/android/sdremote/res/values.po2
-rw-r--r--source/cs/avmedia/source/framework.po2
-rw-r--r--source/cs/avmedia/source/viewer.po2
-rw-r--r--source/cs/basctl/source/basicide.po2
-rw-r--r--source/cs/basctl/source/dlged.po2
-rw-r--r--source/cs/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/cs/basic/source/classes.po2
-rw-r--r--source/cs/basic/source/sbx.po2
-rw-r--r--source/cs/chart2/source/controller/dialogs.po2
-rw-r--r--source/cs/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/connectivity/source/resource.po2
-rw-r--r--source/cs/cui/source/customize.po2
-rw-r--r--source/cs/cui/source/dialogs.po2
-rw-r--r--source/cs/cui/source/options.po4
-rw-r--r--source/cs/cui/source/tabpages.po2
-rw-r--r--source/cs/cui/uiconfig/ui.po4
-rw-r--r--source/cs/dbaccess/source/core/resource.po2
-rw-r--r--source/cs/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/cs/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/cs/dbaccess/source/ui/app.po2
-rw-r--r--source/cs/dbaccess/source/ui/browser.po2
-rw-r--r--source/cs/dbaccess/source/ui/control.po2
-rw-r--r--source/cs/dbaccess/source/ui/dlg.po2
-rw-r--r--source/cs/dbaccess/source/ui/inc.po2
-rw-r--r--source/cs/dbaccess/source/ui/misc.po2
-rw-r--r--source/cs/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/cs/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/cs/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/cs/dbaccess/source/ui/uno.po2
-rw-r--r--source/cs/desktop/source/app.po2
-rw-r--r--source/cs/desktop/source/deployment/gui.po2
-rw-r--r--source/cs/desktop/source/deployment/manager.po2
-rw-r--r--source/cs/desktop/source/deployment/misc.po2
-rw-r--r--source/cs/desktop/source/deployment/registry.po2
-rw-r--r--source/cs/desktop/source/deployment/registry/component.po2
-rw-r--r--source/cs/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/cs/desktop/source/deployment/registry/help.po2
-rw-r--r--source/cs/desktop/source/deployment/registry/package.po2
-rw-r--r--source/cs/desktop/source/deployment/registry/script.po2
-rw-r--r--source/cs/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/cs/desktop/source/deployment/unopkg.po2
-rw-r--r--source/cs/desktop/uiconfig/ui.po2
-rw-r--r--source/cs/dictionaries/af_ZA.po2
-rw-r--r--source/cs/dictionaries/an_ES.po2
-rw-r--r--source/cs/dictionaries/ar.po2
-rw-r--r--source/cs/dictionaries/be_BY.po2
-rw-r--r--source/cs/dictionaries/bg_BG.po2
-rw-r--r--source/cs/dictionaries/bn_BD.po2
-rw-r--r--source/cs/dictionaries/br_FR.po2
-rw-r--r--source/cs/dictionaries/ca.po2
-rw-r--r--source/cs/dictionaries/cs_CZ.po2
-rw-r--r--source/cs/dictionaries/da_DK.po2
-rw-r--r--source/cs/dictionaries/de.po2
-rw-r--r--source/cs/dictionaries/el_GR.po2
-rw-r--r--source/cs/dictionaries/en.po2
-rw-r--r--source/cs/dictionaries/en/dialog.po2
-rw-r--r--source/cs/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cs/dictionaries/es.po2
-rw-r--r--source/cs/dictionaries/et_EE.po2
-rw-r--r--source/cs/dictionaries/fr_FR.po2
-rw-r--r--source/cs/dictionaries/gd_GB.po2
-rw-r--r--source/cs/dictionaries/gl.po2
-rw-r--r--source/cs/dictionaries/gu_IN.po2
-rw-r--r--source/cs/dictionaries/he_IL.po2
-rw-r--r--source/cs/dictionaries/hi_IN.po2
-rw-r--r--source/cs/dictionaries/hr_HR.po2
-rw-r--r--source/cs/dictionaries/hu_HU.po2
-rw-r--r--source/cs/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/cs/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cs/dictionaries/it_IT.po2
-rw-r--r--source/cs/dictionaries/ku_TR.po2
-rw-r--r--source/cs/dictionaries/lt_LT.po2
-rw-r--r--source/cs/dictionaries/lv_LV.po2
-rw-r--r--source/cs/dictionaries/ne_NP.po2
-rw-r--r--source/cs/dictionaries/nl_NL.po2
-rw-r--r--source/cs/dictionaries/no.po2
-rw-r--r--source/cs/dictionaries/oc_FR.po2
-rw-r--r--source/cs/dictionaries/pl_PL.po2
-rw-r--r--source/cs/dictionaries/pt_BR.po2
-rw-r--r--source/cs/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/cs/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cs/dictionaries/pt_PT.po2
-rw-r--r--source/cs/dictionaries/ro.po2
-rw-r--r--source/cs/dictionaries/ru_RU.po2
-rw-r--r--source/cs/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/cs/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cs/dictionaries/si_LK.po2
-rw-r--r--source/cs/dictionaries/sk_SK.po2
-rw-r--r--source/cs/dictionaries/sl_SI.po2
-rw-r--r--source/cs/dictionaries/sr.po2
-rw-r--r--source/cs/dictionaries/sv_SE.po2
-rw-r--r--source/cs/dictionaries/sw_TZ.po2
-rw-r--r--source/cs/dictionaries/te_IN.po2
-rw-r--r--source/cs/dictionaries/th_TH.po2
-rw-r--r--source/cs/dictionaries/uk_UA.po2
-rw-r--r--source/cs/dictionaries/vi.po2
-rw-r--r--source/cs/dictionaries/zu_ZA.po2
-rw-r--r--source/cs/editeng/source/accessibility.po2
-rw-r--r--source/cs/editeng/source/editeng.po2
-rw-r--r--source/cs/editeng/source/items.po2
-rw-r--r--source/cs/editeng/source/misc.po2
-rw-r--r--source/cs/editeng/source/outliner.po2
-rw-r--r--source/cs/extensions/source/abpilot.po2
-rw-r--r--source/cs/extensions/source/bibliography.po2
-rw-r--r--source/cs/extensions/source/dbpilots.po2
-rw-r--r--source/cs/extensions/source/propctrlr.po2
-rw-r--r--source/cs/extensions/source/scanner.po2
-rw-r--r--source/cs/extensions/source/update/check.po2
-rw-r--r--source/cs/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/cs/filter/source/config/fragments/filters.po2
-rw-r--r--source/cs/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/cs/filter/source/config/fragments/types.po2
-rw-r--r--source/cs/filter/source/flash.po2
-rw-r--r--source/cs/filter/source/graphicfilter/eps.po2
-rw-r--r--source/cs/filter/source/pdf.po2
-rw-r--r--source/cs/filter/source/t602.po2
-rw-r--r--source/cs/filter/source/xsltdialog.po2
-rw-r--r--source/cs/filter/uiconfig/ui.po2
-rw-r--r--source/cs/forms/source/resource.po2
-rw-r--r--source/cs/formula/source/core/resource.po46
-rw-r--r--source/cs/formula/source/ui/dlg.po2
-rw-r--r--source/cs/fpicker/source/office.po2
-rw-r--r--source/cs/framework/source/classes.po2
-rw-r--r--source/cs/framework/source/services.po2
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/cs/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/cs/librelogo/source/pythonpath.po2
-rw-r--r--source/cs/mysqlc/source.po2
-rw-r--r--source/cs/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cs/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/cs/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/cs/nlpsolver/src/locale.po2
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/cs/padmin/source.po4
-rw-r--r--source/cs/readlicense_oo/docs.po2
-rw-r--r--source/cs/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/cs/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cs/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/cs/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/cs/reportbuilder/util.po2
-rw-r--r--source/cs/reportdesign/source/core/resource.po2
-rw-r--r--source/cs/reportdesign/source/ui/dlg.po2
-rw-r--r--source/cs/reportdesign/source/ui/inspection.po2
-rw-r--r--source/cs/reportdesign/source/ui/report.po2
-rw-r--r--source/cs/sc/source/core/src.po2
-rw-r--r--source/cs/sc/source/ui/cctrl.po2
-rw-r--r--source/cs/sc/source/ui/dbgui.po2
-rw-r--r--source/cs/sc/source/ui/docshell.po2
-rw-r--r--source/cs/sc/source/ui/drawfunc.po2
-rw-r--r--source/cs/sc/source/ui/formdlg.po2
-rw-r--r--source/cs/sc/source/ui/miscdlgs.po2
-rw-r--r--source/cs/sc/source/ui/navipi.po2
-rw-r--r--source/cs/sc/source/ui/optdlg.po2
-rw-r--r--source/cs/sc/source/ui/pagedlg.po2
-rw-r--r--source/cs/sc/source/ui/src.po393
-rw-r--r--source/cs/sc/source/ui/styleui.po4
-rw-r--r--source/cs/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/cs/scaddins/source/analysis.po2
-rw-r--r--source/cs/scaddins/source/datefunc.po2
-rw-r--r--source/cs/scaddins/source/pricing.po176
-rw-r--r--source/cs/sccomp/source/solver.po2
-rw-r--r--source/cs/scp2/source/accessories.po2
-rw-r--r--source/cs/scp2/source/activex.po2
-rw-r--r--source/cs/scp2/source/base.po2
-rw-r--r--source/cs/scp2/source/calc.po2
-rw-r--r--source/cs/scp2/source/draw.po2
-rw-r--r--source/cs/scp2/source/extensions.po2
-rw-r--r--source/cs/scp2/source/gnome.po2
-rw-r--r--source/cs/scp2/source/graphicfilter.po2
-rw-r--r--source/cs/scp2/source/impress.po2
-rw-r--r--source/cs/scp2/source/javafilter.po2
-rw-r--r--source/cs/scp2/source/kde.po2
-rw-r--r--source/cs/scp2/source/math.po2
-rw-r--r--source/cs/scp2/source/onlineupdate.po2
-rw-r--r--source/cs/scp2/source/ooo.po4
-rw-r--r--source/cs/scp2/source/python.po26
-rw-r--r--source/cs/scp2/source/quickstart.po2
-rw-r--r--source/cs/scp2/source/sdkoo.po2
-rw-r--r--source/cs/scp2/source/smoketest.po2
-rw-r--r--source/cs/scp2/source/stdlibs.po2
-rw-r--r--source/cs/scp2/source/tde.po2
-rw-r--r--source/cs/scp2/source/winexplorerext.po2
-rw-r--r--source/cs/scp2/source/writer.po2
-rw-r--r--source/cs/scp2/source/xsltfilter.po2
-rw-r--r--source/cs/sd/source/core.po2
-rw-r--r--source/cs/sd/source/filter/html.po2
-rw-r--r--source/cs/sd/source/ui/accessibility.po2
-rw-r--r--source/cs/sd/source/ui/animations.po2
-rw-r--r--source/cs/sd/source/ui/annotations.po2
-rw-r--r--source/cs/sd/source/ui/app.po4
-rw-r--r--source/cs/sd/source/ui/dlg.po4
-rw-r--r--source/cs/sd/source/ui/slideshow.po2
-rw-r--r--source/cs/sd/source/ui/table.po2
-rw-r--r--source/cs/sd/source/ui/view.po2
-rw-r--r--source/cs/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/cs/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/cs/sdext/source/minimizer.po2
-rw-r--r--source/cs/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cs/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/cs/setup_native/source/mac.po2
-rw-r--r--source/cs/sfx2/source/appl.po2
-rw-r--r--source/cs/sfx2/source/bastyp.po2
-rw-r--r--source/cs/sfx2/source/control.po25
-rw-r--r--source/cs/sfx2/source/dialog.po48
-rw-r--r--source/cs/sfx2/source/doc.po134
-rw-r--r--source/cs/sfx2/source/menu.po2
-rw-r--r--source/cs/sfx2/source/view.po2
-rw-r--r--source/cs/sfx2/uiconfig/ui.po4
-rw-r--r--source/cs/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/cs/starmath/source.po2
-rw-r--r--source/cs/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/cs/svl/source/items.po2
-rw-r--r--source/cs/svl/source/misc.po2
-rw-r--r--source/cs/svtools/source/contnr.po2
-rw-r--r--source/cs/svtools/source/control.po2
-rw-r--r--source/cs/svtools/source/dialogs.po2
-rw-r--r--source/cs/svtools/source/java.po2
-rw-r--r--source/cs/svtools/source/misc.po4
-rw-r--r--source/cs/svtools/source/toolpanel.po2
-rw-r--r--source/cs/svtools/uiconfig/ui.po51
-rw-r--r--source/cs/svx/inc.po4
-rw-r--r--source/cs/svx/source/accessibility.po2
-rw-r--r--source/cs/svx/source/core.po2
-rw-r--r--source/cs/svx/source/dialog.po217
-rw-r--r--source/cs/svx/source/engine3d.po2
-rw-r--r--source/cs/svx/source/fmcomp.po2
-rw-r--r--source/cs/svx/source/form.po2
-rw-r--r--source/cs/svx/source/gallery2.po2
-rw-r--r--source/cs/svx/source/items.po2
-rw-r--r--source/cs/svx/source/src.po2
-rw-r--r--source/cs/svx/source/stbctrls.po2
-rw-r--r--source/cs/svx/source/svdraw.po2
-rw-r--r--source/cs/svx/source/table.po2
-rw-r--r--source/cs/svx/source/tbxctrls.po2
-rw-r--r--source/cs/svx/source/toolbars.po2
-rw-r--r--source/cs/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/cs/svx/uiconfig/ui.po206
-rw-r--r--source/cs/sw/source/core/layout.po2
-rw-r--r--source/cs/sw/source/core/undo.po2
-rw-r--r--source/cs/sw/source/core/unocore.po2
-rw-r--r--source/cs/sw/source/ui/app.po9
-rw-r--r--source/cs/sw/source/ui/chrdlg.po2
-rw-r--r--source/cs/sw/source/ui/config.po2
-rw-r--r--source/cs/sw/source/ui/dbui.po2
-rw-r--r--source/cs/sw/source/ui/dialog.po2
-rw-r--r--source/cs/sw/source/ui/dochdl.po2
-rw-r--r--source/cs/sw/source/ui/docvw.po2
-rw-r--r--source/cs/sw/source/ui/envelp.po2
-rw-r--r--source/cs/sw/source/ui/fldui.po2
-rw-r--r--source/cs/sw/source/ui/fmtui.po2
-rw-r--r--source/cs/sw/source/ui/frmdlg.po2
-rw-r--r--source/cs/sw/source/ui/globdoc.po2
-rw-r--r--source/cs/sw/source/ui/index.po15
-rw-r--r--source/cs/sw/source/ui/lingu.po2
-rw-r--r--source/cs/sw/source/ui/misc.po2
-rw-r--r--source/cs/sw/source/ui/ribbar.po2
-rw-r--r--source/cs/sw/source/ui/shells.po2
-rw-r--r--source/cs/sw/source/ui/smartmenu.po2
-rw-r--r--source/cs/sw/source/ui/table.po2
-rw-r--r--source/cs/sw/source/ui/uiview.po2
-rw-r--r--source/cs/sw/source/ui/utlui.po2
-rw-r--r--source/cs/sw/source/ui/web.po2
-rw-r--r--source/cs/sw/source/ui/wrtsh.po2
-rw-r--r--source/cs/sw/uiconfig/sw/ui.po278
-rw-r--r--source/cs/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/cs/swext/mediawiki/help.po2
-rw-r--r--source/cs/swext/mediawiki/src.po2
-rw-r--r--source/cs/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cs/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/cs/sysui/desktop/share.po2
-rw-r--r--source/cs/tubes/uiconfig/ui.po2
-rw-r--r--source/cs/uui/source.po2
-rw-r--r--source/cs/vcl/qa/cppunit/builder.po2
-rw-r--r--source/cs/vcl/source/edit.po2
-rw-r--r--source/cs/vcl/source/src.po2
-rw-r--r--source/cs/vcl/uiconfig/ui.po2
-rw-r--r--source/cs/wizards/source/euro.po2
-rw-r--r--source/cs/wizards/source/formwizard.po8
-rw-r--r--source/cs/wizards/source/importwizard.po2
-rw-r--r--source/cs/wizards/source/template.po2
-rw-r--r--source/cs/xmlsecurity/source/component.po2
-rw-r--r--source/cs/xmlsecurity/source/dialogs.po2
-rw-r--r--source/cy/accessibility/source/helper.po2
-rw-r--r--source/cy/android/sdremote/res/values.po2
-rw-r--r--source/cy/avmedia/source/framework.po2
-rw-r--r--source/cy/avmedia/source/viewer.po2
-rw-r--r--source/cy/basctl/source/basicide.po2
-rw-r--r--source/cy/basctl/source/dlged.po2
-rw-r--r--source/cy/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/cy/basic/source/classes.po2
-rw-r--r--source/cy/basic/source/sbx.po2
-rw-r--r--source/cy/chart2/source/controller/dialogs.po2
-rw-r--r--source/cy/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/connectivity/source/resource.po2
-rw-r--r--source/cy/cui/source/customize.po2
-rw-r--r--source/cy/cui/source/dialogs.po2
-rw-r--r--source/cy/cui/source/options.po4
-rw-r--r--source/cy/cui/source/tabpages.po2
-rw-r--r--source/cy/cui/uiconfig/ui.po4
-rw-r--r--source/cy/dbaccess/source/core/resource.po2
-rw-r--r--source/cy/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/cy/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/cy/dbaccess/source/ui/app.po2
-rw-r--r--source/cy/dbaccess/source/ui/browser.po2
-rw-r--r--source/cy/dbaccess/source/ui/control.po2
-rw-r--r--source/cy/dbaccess/source/ui/dlg.po2
-rw-r--r--source/cy/dbaccess/source/ui/inc.po2
-rw-r--r--source/cy/dbaccess/source/ui/misc.po2
-rw-r--r--source/cy/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/cy/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/cy/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/cy/dbaccess/source/ui/uno.po2
-rw-r--r--source/cy/desktop/source/app.po2
-rw-r--r--source/cy/desktop/source/deployment/gui.po2
-rw-r--r--source/cy/desktop/source/deployment/manager.po2
-rw-r--r--source/cy/desktop/source/deployment/misc.po2
-rw-r--r--source/cy/desktop/source/deployment/registry.po2
-rw-r--r--source/cy/desktop/source/deployment/registry/component.po2
-rw-r--r--source/cy/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/cy/desktop/source/deployment/registry/help.po2
-rw-r--r--source/cy/desktop/source/deployment/registry/package.po2
-rw-r--r--source/cy/desktop/source/deployment/registry/script.po2
-rw-r--r--source/cy/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/cy/desktop/source/deployment/unopkg.po2
-rw-r--r--source/cy/desktop/uiconfig/ui.po2
-rw-r--r--source/cy/dictionaries/af_ZA.po2
-rw-r--r--source/cy/dictionaries/an_ES.po2
-rw-r--r--source/cy/dictionaries/ar.po2
-rw-r--r--source/cy/dictionaries/be_BY.po2
-rw-r--r--source/cy/dictionaries/bg_BG.po2
-rw-r--r--source/cy/dictionaries/bn_BD.po2
-rw-r--r--source/cy/dictionaries/br_FR.po2
-rw-r--r--source/cy/dictionaries/ca.po2
-rw-r--r--source/cy/dictionaries/cs_CZ.po2
-rw-r--r--source/cy/dictionaries/da_DK.po2
-rw-r--r--source/cy/dictionaries/de.po2
-rw-r--r--source/cy/dictionaries/el_GR.po2
-rw-r--r--source/cy/dictionaries/en.po2
-rw-r--r--source/cy/dictionaries/en/dialog.po2
-rw-r--r--source/cy/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cy/dictionaries/es.po2
-rw-r--r--source/cy/dictionaries/et_EE.po2
-rw-r--r--source/cy/dictionaries/fr_FR.po2
-rw-r--r--source/cy/dictionaries/gd_GB.po2
-rw-r--r--source/cy/dictionaries/gl.po2
-rw-r--r--source/cy/dictionaries/gu_IN.po2
-rw-r--r--source/cy/dictionaries/he_IL.po2
-rw-r--r--source/cy/dictionaries/hi_IN.po2
-rw-r--r--source/cy/dictionaries/hr_HR.po2
-rw-r--r--source/cy/dictionaries/hu_HU.po2
-rw-r--r--source/cy/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/cy/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cy/dictionaries/it_IT.po2
-rw-r--r--source/cy/dictionaries/ku_TR.po2
-rw-r--r--source/cy/dictionaries/lt_LT.po2
-rw-r--r--source/cy/dictionaries/lv_LV.po2
-rw-r--r--source/cy/dictionaries/ne_NP.po2
-rw-r--r--source/cy/dictionaries/nl_NL.po2
-rw-r--r--source/cy/dictionaries/no.po2
-rw-r--r--source/cy/dictionaries/oc_FR.po2
-rw-r--r--source/cy/dictionaries/pl_PL.po2
-rw-r--r--source/cy/dictionaries/pt_BR.po2
-rw-r--r--source/cy/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/cy/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cy/dictionaries/pt_PT.po2
-rw-r--r--source/cy/dictionaries/ro.po2
-rw-r--r--source/cy/dictionaries/ru_RU.po2
-rw-r--r--source/cy/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/cy/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cy/dictionaries/si_LK.po2
-rw-r--r--source/cy/dictionaries/sk_SK.po2
-rw-r--r--source/cy/dictionaries/sl_SI.po2
-rw-r--r--source/cy/dictionaries/sr.po2
-rw-r--r--source/cy/dictionaries/sv_SE.po2
-rw-r--r--source/cy/dictionaries/sw_TZ.po2
-rw-r--r--source/cy/dictionaries/te_IN.po2
-rw-r--r--source/cy/dictionaries/th_TH.po2
-rw-r--r--source/cy/dictionaries/uk_UA.po2
-rw-r--r--source/cy/dictionaries/vi.po2
-rw-r--r--source/cy/dictionaries/zu_ZA.po2
-rw-r--r--source/cy/editeng/source/accessibility.po2
-rw-r--r--source/cy/editeng/source/editeng.po2
-rw-r--r--source/cy/editeng/source/items.po2
-rw-r--r--source/cy/editeng/source/misc.po2
-rw-r--r--source/cy/editeng/source/outliner.po2
-rw-r--r--source/cy/extensions/source/abpilot.po2
-rw-r--r--source/cy/extensions/source/bibliography.po2
-rw-r--r--source/cy/extensions/source/dbpilots.po2
-rw-r--r--source/cy/extensions/source/propctrlr.po2
-rw-r--r--source/cy/extensions/source/scanner.po2
-rw-r--r--source/cy/extensions/source/update/check.po2
-rw-r--r--source/cy/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/cy/filter/source/config/fragments/filters.po2
-rw-r--r--source/cy/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/cy/filter/source/config/fragments/types.po2
-rw-r--r--source/cy/filter/source/flash.po2
-rw-r--r--source/cy/filter/source/graphicfilter/eps.po2
-rw-r--r--source/cy/filter/source/pdf.po2
-rw-r--r--source/cy/filter/source/t602.po2
-rw-r--r--source/cy/filter/source/xsltdialog.po2
-rw-r--r--source/cy/filter/uiconfig/ui.po2
-rw-r--r--source/cy/forms/source/resource.po2
-rw-r--r--source/cy/formula/source/core/resource.po44
-rw-r--r--source/cy/formula/source/ui/dlg.po2
-rw-r--r--source/cy/fpicker/source/office.po2
-rw-r--r--source/cy/framework/source/classes.po2
-rw-r--r--source/cy/framework/source/services.po2
-rw-r--r--source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/cy/librelogo/source/pythonpath.po4
-rw-r--r--source/cy/mysqlc/source.po2
-rw-r--r--source/cy/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/cy/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/cy/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/cy/nlpsolver/src/locale.po2
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/cy/padmin/source.po4
-rw-r--r--source/cy/readlicense_oo/docs.po2
-rw-r--r--source/cy/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/cy/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cy/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/cy/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/cy/reportbuilder/util.po2
-rw-r--r--source/cy/reportdesign/source/core/resource.po2
-rw-r--r--source/cy/reportdesign/source/ui/dlg.po2
-rw-r--r--source/cy/reportdesign/source/ui/inspection.po2
-rw-r--r--source/cy/reportdesign/source/ui/report.po2
-rw-r--r--source/cy/sc/source/core/src.po2
-rw-r--r--source/cy/sc/source/ui/cctrl.po2
-rw-r--r--source/cy/sc/source/ui/dbgui.po2
-rw-r--r--source/cy/sc/source/ui/docshell.po2
-rw-r--r--source/cy/sc/source/ui/drawfunc.po2
-rw-r--r--source/cy/sc/source/ui/formdlg.po2
-rw-r--r--source/cy/sc/source/ui/miscdlgs.po2
-rw-r--r--source/cy/sc/source/ui/navipi.po2
-rw-r--r--source/cy/sc/source/ui/optdlg.po2
-rw-r--r--source/cy/sc/source/ui/pagedlg.po2
-rw-r--r--source/cy/sc/source/ui/src.po389
-rw-r--r--source/cy/sc/source/ui/styleui.po4
-rw-r--r--source/cy/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/cy/scaddins/source/analysis.po2
-rw-r--r--source/cy/scaddins/source/datefunc.po2
-rw-r--r--source/cy/scaddins/source/pricing.po6
-rw-r--r--source/cy/sccomp/source/solver.po2
-rw-r--r--source/cy/scp2/source/accessories.po2
-rw-r--r--source/cy/scp2/source/activex.po2
-rw-r--r--source/cy/scp2/source/base.po2
-rw-r--r--source/cy/scp2/source/calc.po2
-rw-r--r--source/cy/scp2/source/draw.po2
-rw-r--r--source/cy/scp2/source/extensions.po2
-rw-r--r--source/cy/scp2/source/gnome.po2
-rw-r--r--source/cy/scp2/source/graphicfilter.po2
-rw-r--r--source/cy/scp2/source/impress.po2
-rw-r--r--source/cy/scp2/source/javafilter.po2
-rw-r--r--source/cy/scp2/source/kde.po2
-rw-r--r--source/cy/scp2/source/math.po2
-rw-r--r--source/cy/scp2/source/onlineupdate.po2
-rw-r--r--source/cy/scp2/source/ooo.po4
-rw-r--r--source/cy/scp2/source/python.po24
-rw-r--r--source/cy/scp2/source/quickstart.po2
-rw-r--r--source/cy/scp2/source/sdkoo.po2
-rw-r--r--source/cy/scp2/source/smoketest.po2
-rw-r--r--source/cy/scp2/source/stdlibs.po2
-rw-r--r--source/cy/scp2/source/tde.po2
-rw-r--r--source/cy/scp2/source/winexplorerext.po2
-rw-r--r--source/cy/scp2/source/writer.po2
-rw-r--r--source/cy/scp2/source/xsltfilter.po2
-rw-r--r--source/cy/sd/source/core.po2
-rw-r--r--source/cy/sd/source/filter/html.po2
-rw-r--r--source/cy/sd/source/ui/accessibility.po2
-rw-r--r--source/cy/sd/source/ui/animations.po2
-rw-r--r--source/cy/sd/source/ui/annotations.po2
-rw-r--r--source/cy/sd/source/ui/app.po4
-rw-r--r--source/cy/sd/source/ui/dlg.po2
-rw-r--r--source/cy/sd/source/ui/slideshow.po2
-rw-r--r--source/cy/sd/source/ui/table.po2
-rw-r--r--source/cy/sd/source/ui/view.po2
-rw-r--r--source/cy/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/cy/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/cy/sdext/source/minimizer.po2
-rw-r--r--source/cy/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cy/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/cy/setup_native/source/mac.po2
-rw-r--r--source/cy/sfx2/source/appl.po2
-rw-r--r--source/cy/sfx2/source/bastyp.po2
-rw-r--r--source/cy/sfx2/source/control.po25
-rw-r--r--source/cy/sfx2/source/dialog.po48
-rw-r--r--source/cy/sfx2/source/doc.po126
-rw-r--r--source/cy/sfx2/source/menu.po2
-rw-r--r--source/cy/sfx2/source/view.po2
-rw-r--r--source/cy/sfx2/uiconfig/ui.po4
-rw-r--r--source/cy/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/cy/starmath/source.po2
-rw-r--r--source/cy/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/cy/svl/source/items.po2
-rw-r--r--source/cy/svl/source/misc.po2
-rw-r--r--source/cy/svtools/source/contnr.po2
-rw-r--r--source/cy/svtools/source/control.po2
-rw-r--r--source/cy/svtools/source/dialogs.po2
-rw-r--r--source/cy/svtools/source/java.po2
-rw-r--r--source/cy/svtools/source/misc.po4
-rw-r--r--source/cy/svtools/source/toolpanel.po2
-rw-r--r--source/cy/svtools/uiconfig/ui.po51
-rw-r--r--source/cy/svx/inc.po4
-rw-r--r--source/cy/svx/source/accessibility.po2
-rw-r--r--source/cy/svx/source/core.po2
-rw-r--r--source/cy/svx/source/dialog.po217
-rw-r--r--source/cy/svx/source/engine3d.po2
-rw-r--r--source/cy/svx/source/fmcomp.po2
-rw-r--r--source/cy/svx/source/form.po2
-rw-r--r--source/cy/svx/source/gallery2.po2
-rw-r--r--source/cy/svx/source/items.po2
-rw-r--r--source/cy/svx/source/src.po2
-rw-r--r--source/cy/svx/source/stbctrls.po2
-rw-r--r--source/cy/svx/source/svdraw.po2
-rw-r--r--source/cy/svx/source/table.po2
-rw-r--r--source/cy/svx/source/tbxctrls.po2
-rw-r--r--source/cy/svx/source/toolbars.po2
-rw-r--r--source/cy/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/cy/svx/uiconfig/ui.po206
-rw-r--r--source/cy/sw/source/core/layout.po2
-rw-r--r--source/cy/sw/source/core/undo.po2
-rw-r--r--source/cy/sw/source/core/unocore.po2
-rw-r--r--source/cy/sw/source/ui/app.po4
-rw-r--r--source/cy/sw/source/ui/chrdlg.po2
-rw-r--r--source/cy/sw/source/ui/config.po2
-rw-r--r--source/cy/sw/source/ui/dbui.po2
-rw-r--r--source/cy/sw/source/ui/dialog.po2
-rw-r--r--source/cy/sw/source/ui/dochdl.po2
-rw-r--r--source/cy/sw/source/ui/docvw.po2
-rw-r--r--source/cy/sw/source/ui/envelp.po2
-rw-r--r--source/cy/sw/source/ui/fldui.po2
-rw-r--r--source/cy/sw/source/ui/fmtui.po2
-rw-r--r--source/cy/sw/source/ui/frmdlg.po2
-rw-r--r--source/cy/sw/source/ui/globdoc.po2
-rw-r--r--source/cy/sw/source/ui/index.po2
-rw-r--r--source/cy/sw/source/ui/lingu.po2
-rw-r--r--source/cy/sw/source/ui/misc.po2
-rw-r--r--source/cy/sw/source/ui/ribbar.po2
-rw-r--r--source/cy/sw/source/ui/shells.po2
-rw-r--r--source/cy/sw/source/ui/smartmenu.po2
-rw-r--r--source/cy/sw/source/ui/table.po2
-rw-r--r--source/cy/sw/source/ui/uiview.po2
-rw-r--r--source/cy/sw/source/ui/utlui.po2
-rw-r--r--source/cy/sw/source/ui/web.po2
-rw-r--r--source/cy/sw/source/ui/wrtsh.po2
-rw-r--r--source/cy/sw/uiconfig/sw/ui.po278
-rw-r--r--source/cy/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/cy/swext/mediawiki/help.po2
-rw-r--r--source/cy/swext/mediawiki/src.po2
-rw-r--r--source/cy/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/cy/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/cy/sysui/desktop/share.po2
-rw-r--r--source/cy/tubes/uiconfig/ui.po2
-rw-r--r--source/cy/uui/source.po2
-rw-r--r--source/cy/vcl/qa/cppunit/builder.po2
-rw-r--r--source/cy/vcl/source/edit.po2
-rw-r--r--source/cy/vcl/source/src.po2
-rw-r--r--source/cy/vcl/uiconfig/ui.po2
-rw-r--r--source/cy/wizards/source/euro.po2
-rw-r--r--source/cy/wizards/source/formwizard.po2
-rw-r--r--source/cy/wizards/source/importwizard.po2
-rw-r--r--source/cy/wizards/source/template.po2
-rw-r--r--source/cy/xmlsecurity/source/component.po2
-rw-r--r--source/cy/xmlsecurity/source/dialogs.po2
-rw-r--r--source/da/accessibility/source/helper.po2
-rw-r--r--source/da/android/sdremote/res/values.po2
-rw-r--r--source/da/avmedia/source/framework.po2
-rw-r--r--source/da/avmedia/source/viewer.po2
-rw-r--r--source/da/basctl/source/basicide.po2
-rw-r--r--source/da/basctl/source/dlged.po2
-rw-r--r--source/da/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/da/basic/source/classes.po2
-rw-r--r--source/da/basic/source/sbx.po2
-rw-r--r--source/da/chart2/source/controller/dialogs.po2
-rw-r--r--source/da/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/connectivity/source/resource.po2
-rw-r--r--source/da/cui/source/customize.po2
-rw-r--r--source/da/cui/source/dialogs.po2
-rw-r--r--source/da/cui/source/options.po4
-rw-r--r--source/da/cui/source/tabpages.po2
-rw-r--r--source/da/cui/uiconfig/ui.po4
-rw-r--r--source/da/dbaccess/source/core/resource.po2
-rw-r--r--source/da/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/da/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/da/dbaccess/source/ui/app.po2
-rw-r--r--source/da/dbaccess/source/ui/browser.po2
-rw-r--r--source/da/dbaccess/source/ui/control.po2
-rw-r--r--source/da/dbaccess/source/ui/dlg.po2
-rw-r--r--source/da/dbaccess/source/ui/inc.po2
-rw-r--r--source/da/dbaccess/source/ui/misc.po2
-rw-r--r--source/da/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/da/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/da/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/da/dbaccess/source/ui/uno.po2
-rw-r--r--source/da/desktop/source/app.po2
-rw-r--r--source/da/desktop/source/deployment/gui.po2
-rw-r--r--source/da/desktop/source/deployment/manager.po2
-rw-r--r--source/da/desktop/source/deployment/misc.po2
-rw-r--r--source/da/desktop/source/deployment/registry.po2
-rw-r--r--source/da/desktop/source/deployment/registry/component.po2
-rw-r--r--source/da/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/da/desktop/source/deployment/registry/help.po2
-rw-r--r--source/da/desktop/source/deployment/registry/package.po2
-rw-r--r--source/da/desktop/source/deployment/registry/script.po2
-rw-r--r--source/da/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/da/desktop/source/deployment/unopkg.po2
-rw-r--r--source/da/desktop/uiconfig/ui.po2
-rw-r--r--source/da/dictionaries/af_ZA.po2
-rw-r--r--source/da/dictionaries/an_ES.po2
-rw-r--r--source/da/dictionaries/ar.po2
-rw-r--r--source/da/dictionaries/be_BY.po2
-rw-r--r--source/da/dictionaries/bg_BG.po2
-rw-r--r--source/da/dictionaries/bn_BD.po2
-rw-r--r--source/da/dictionaries/br_FR.po2
-rw-r--r--source/da/dictionaries/ca.po2
-rw-r--r--source/da/dictionaries/cs_CZ.po2
-rw-r--r--source/da/dictionaries/da_DK.po2
-rw-r--r--source/da/dictionaries/de.po2
-rw-r--r--source/da/dictionaries/el_GR.po2
-rw-r--r--source/da/dictionaries/en.po2
-rw-r--r--source/da/dictionaries/en/dialog.po2
-rw-r--r--source/da/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/da/dictionaries/es.po2
-rw-r--r--source/da/dictionaries/et_EE.po2
-rw-r--r--source/da/dictionaries/fr_FR.po2
-rw-r--r--source/da/dictionaries/gd_GB.po2
-rw-r--r--source/da/dictionaries/gl.po2
-rw-r--r--source/da/dictionaries/gu_IN.po2
-rw-r--r--source/da/dictionaries/he_IL.po2
-rw-r--r--source/da/dictionaries/hi_IN.po2
-rw-r--r--source/da/dictionaries/hr_HR.po2
-rw-r--r--source/da/dictionaries/hu_HU.po2
-rw-r--r--source/da/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/da/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/da/dictionaries/it_IT.po2
-rw-r--r--source/da/dictionaries/ku_TR.po2
-rw-r--r--source/da/dictionaries/lt_LT.po2
-rw-r--r--source/da/dictionaries/lv_LV.po2
-rw-r--r--source/da/dictionaries/ne_NP.po2
-rw-r--r--source/da/dictionaries/nl_NL.po2
-rw-r--r--source/da/dictionaries/no.po2
-rw-r--r--source/da/dictionaries/oc_FR.po2
-rw-r--r--source/da/dictionaries/pl_PL.po2
-rw-r--r--source/da/dictionaries/pt_BR.po2
-rw-r--r--source/da/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/da/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/da/dictionaries/pt_PT.po2
-rw-r--r--source/da/dictionaries/ro.po2
-rw-r--r--source/da/dictionaries/ru_RU.po2
-rw-r--r--source/da/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/da/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/da/dictionaries/si_LK.po2
-rw-r--r--source/da/dictionaries/sk_SK.po2
-rw-r--r--source/da/dictionaries/sl_SI.po2
-rw-r--r--source/da/dictionaries/sr.po2
-rw-r--r--source/da/dictionaries/sv_SE.po2
-rw-r--r--source/da/dictionaries/sw_TZ.po2
-rw-r--r--source/da/dictionaries/te_IN.po2
-rw-r--r--source/da/dictionaries/th_TH.po2
-rw-r--r--source/da/dictionaries/uk_UA.po2
-rw-r--r--source/da/dictionaries/vi.po2
-rw-r--r--source/da/dictionaries/zu_ZA.po2
-rw-r--r--source/da/editeng/source/accessibility.po2
-rw-r--r--source/da/editeng/source/editeng.po2
-rw-r--r--source/da/editeng/source/items.po2
-rw-r--r--source/da/editeng/source/misc.po2
-rw-r--r--source/da/editeng/source/outliner.po2
-rw-r--r--source/da/extensions/source/abpilot.po2
-rw-r--r--source/da/extensions/source/bibliography.po2
-rw-r--r--source/da/extensions/source/dbpilots.po2
-rw-r--r--source/da/extensions/source/propctrlr.po2
-rw-r--r--source/da/extensions/source/scanner.po2
-rw-r--r--source/da/extensions/source/update/check.po2
-rw-r--r--source/da/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/da/filter/source/config/fragments/filters.po2
-rw-r--r--source/da/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/da/filter/source/config/fragments/types.po2
-rw-r--r--source/da/filter/source/flash.po2
-rw-r--r--source/da/filter/source/graphicfilter/eps.po2
-rw-r--r--source/da/filter/source/pdf.po2
-rw-r--r--source/da/filter/source/t602.po2
-rw-r--r--source/da/filter/source/xsltdialog.po2
-rw-r--r--source/da/filter/uiconfig/ui.po2
-rw-r--r--source/da/forms/source/resource.po2
-rw-r--r--source/da/formula/source/core/resource.po47
-rw-r--r--source/da/formula/source/ui/dlg.po2
-rw-r--r--source/da/fpicker/source/office.po2
-rw-r--r--source/da/framework/source/classes.po2
-rw-r--r--source/da/framework/source/services.po2
-rw-r--r--source/da/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/da/librelogo/source/pythonpath.po2
-rw-r--r--source/da/mysqlc/source.po2
-rw-r--r--source/da/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/da/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/da/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/da/nlpsolver/src/locale.po2
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po43
-rw-r--r--source/da/padmin/source.po4
-rw-r--r--source/da/readlicense_oo/docs.po2
-rw-r--r--source/da/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/da/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/da/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/da/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/da/reportbuilder/util.po2
-rw-r--r--source/da/reportdesign/source/core/resource.po2
-rw-r--r--source/da/reportdesign/source/ui/dlg.po2
-rw-r--r--source/da/reportdesign/source/ui/inspection.po2
-rw-r--r--source/da/reportdesign/source/ui/report.po2
-rw-r--r--source/da/sc/source/core/src.po2
-rw-r--r--source/da/sc/source/ui/cctrl.po2
-rw-r--r--source/da/sc/source/ui/dbgui.po2
-rw-r--r--source/da/sc/source/ui/docshell.po2
-rw-r--r--source/da/sc/source/ui/drawfunc.po2
-rw-r--r--source/da/sc/source/ui/formdlg.po2
-rw-r--r--source/da/sc/source/ui/miscdlgs.po9
-rw-r--r--source/da/sc/source/ui/navipi.po2
-rw-r--r--source/da/sc/source/ui/optdlg.po2
-rw-r--r--source/da/sc/source/ui/pagedlg.po2
-rw-r--r--source/da/sc/source/ui/src.po391
-rw-r--r--source/da/sc/source/ui/styleui.po4
-rw-r--r--source/da/sc/uiconfig/scalc/ui.po8
-rw-r--r--source/da/scaddins/source/analysis.po2
-rw-r--r--source/da/scaddins/source/datefunc.po2
-rw-r--r--source/da/scaddins/source/pricing.po4
-rw-r--r--source/da/sccomp/source/solver.po2
-rw-r--r--source/da/scp2/source/accessories.po2
-rw-r--r--source/da/scp2/source/activex.po2
-rw-r--r--source/da/scp2/source/base.po2
-rw-r--r--source/da/scp2/source/calc.po2
-rw-r--r--source/da/scp2/source/draw.po2
-rw-r--r--source/da/scp2/source/extensions.po2
-rw-r--r--source/da/scp2/source/gnome.po2
-rw-r--r--source/da/scp2/source/graphicfilter.po2
-rw-r--r--source/da/scp2/source/impress.po2
-rw-r--r--source/da/scp2/source/javafilter.po2
-rw-r--r--source/da/scp2/source/kde.po2
-rw-r--r--source/da/scp2/source/math.po2
-rw-r--r--source/da/scp2/source/onlineupdate.po2
-rw-r--r--source/da/scp2/source/ooo.po4
-rw-r--r--source/da/scp2/source/python.po26
-rw-r--r--source/da/scp2/source/quickstart.po2
-rw-r--r--source/da/scp2/source/sdkoo.po2
-rw-r--r--source/da/scp2/source/smoketest.po2
-rw-r--r--source/da/scp2/source/stdlibs.po2
-rw-r--r--source/da/scp2/source/tde.po2
-rw-r--r--source/da/scp2/source/winexplorerext.po2
-rw-r--r--source/da/scp2/source/writer.po2
-rw-r--r--source/da/scp2/source/xsltfilter.po2
-rw-r--r--source/da/sd/source/core.po2
-rw-r--r--source/da/sd/source/filter/html.po2
-rw-r--r--source/da/sd/source/ui/accessibility.po2
-rw-r--r--source/da/sd/source/ui/animations.po2
-rw-r--r--source/da/sd/source/ui/annotations.po2
-rw-r--r--source/da/sd/source/ui/app.po4
-rw-r--r--source/da/sd/source/ui/dlg.po2
-rw-r--r--source/da/sd/source/ui/slideshow.po2
-rw-r--r--source/da/sd/source/ui/table.po2
-rw-r--r--source/da/sd/source/ui/view.po2
-rw-r--r--source/da/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/da/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/da/sdext/source/minimizer.po2
-rw-r--r--source/da/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/da/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/da/setup_native/source/mac.po2
-rw-r--r--source/da/sfx2/source/appl.po2
-rw-r--r--source/da/sfx2/source/bastyp.po2
-rw-r--r--source/da/sfx2/source/control.po25
-rw-r--r--source/da/sfx2/source/dialog.po48
-rw-r--r--source/da/sfx2/source/doc.po126
-rw-r--r--source/da/sfx2/source/menu.po2
-rw-r--r--source/da/sfx2/source/view.po2
-rw-r--r--source/da/sfx2/uiconfig/ui.po4
-rw-r--r--source/da/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/da/starmath/source.po2
-rw-r--r--source/da/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/da/svl/source/items.po2
-rw-r--r--source/da/svl/source/misc.po2
-rw-r--r--source/da/svtools/source/contnr.po2
-rw-r--r--source/da/svtools/source/control.po2
-rw-r--r--source/da/svtools/source/dialogs.po2
-rw-r--r--source/da/svtools/source/java.po2
-rw-r--r--source/da/svtools/source/misc.po4
-rw-r--r--source/da/svtools/source/toolpanel.po2
-rw-r--r--source/da/svtools/uiconfig/ui.po51
-rw-r--r--source/da/svx/inc.po4
-rw-r--r--source/da/svx/source/accessibility.po2
-rw-r--r--source/da/svx/source/core.po2
-rw-r--r--source/da/svx/source/dialog.po217
-rw-r--r--source/da/svx/source/engine3d.po2
-rw-r--r--source/da/svx/source/fmcomp.po2
-rw-r--r--source/da/svx/source/form.po2
-rw-r--r--source/da/svx/source/gallery2.po2
-rw-r--r--source/da/svx/source/items.po2
-rw-r--r--source/da/svx/source/src.po2
-rw-r--r--source/da/svx/source/stbctrls.po2
-rw-r--r--source/da/svx/source/svdraw.po2
-rw-r--r--source/da/svx/source/table.po2
-rw-r--r--source/da/svx/source/tbxctrls.po2
-rw-r--r--source/da/svx/source/toolbars.po2
-rw-r--r--source/da/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/da/svx/uiconfig/ui.po206
-rw-r--r--source/da/sw/source/core/layout.po2
-rw-r--r--source/da/sw/source/core/undo.po2
-rw-r--r--source/da/sw/source/core/unocore.po2
-rw-r--r--source/da/sw/source/ui/app.po4
-rw-r--r--source/da/sw/source/ui/chrdlg.po2
-rw-r--r--source/da/sw/source/ui/config.po2
-rw-r--r--source/da/sw/source/ui/dbui.po2
-rw-r--r--source/da/sw/source/ui/dialog.po2
-rw-r--r--source/da/sw/source/ui/dochdl.po2
-rw-r--r--source/da/sw/source/ui/docvw.po2
-rw-r--r--source/da/sw/source/ui/envelp.po2
-rw-r--r--source/da/sw/source/ui/fldui.po2
-rw-r--r--source/da/sw/source/ui/fmtui.po2
-rw-r--r--source/da/sw/source/ui/frmdlg.po2
-rw-r--r--source/da/sw/source/ui/globdoc.po2
-rw-r--r--source/da/sw/source/ui/index.po2
-rw-r--r--source/da/sw/source/ui/lingu.po2
-rw-r--r--source/da/sw/source/ui/misc.po2
-rw-r--r--source/da/sw/source/ui/ribbar.po2
-rw-r--r--source/da/sw/source/ui/shells.po2
-rw-r--r--source/da/sw/source/ui/smartmenu.po2
-rw-r--r--source/da/sw/source/ui/table.po2
-rw-r--r--source/da/sw/source/ui/uiview.po2
-rw-r--r--source/da/sw/source/ui/utlui.po2
-rw-r--r--source/da/sw/source/ui/web.po2
-rw-r--r--source/da/sw/source/ui/wrtsh.po2
-rw-r--r--source/da/sw/uiconfig/sw/ui.po278
-rw-r--r--source/da/sw/uiconfig/swriter/ui.po10
-rw-r--r--source/da/swext/mediawiki/help.po2
-rw-r--r--source/da/swext/mediawiki/src.po2
-rw-r--r--source/da/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/da/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/da/sysui/desktop/share.po2
-rw-r--r--source/da/tubes/uiconfig/ui.po2
-rw-r--r--source/da/uui/source.po2
-rw-r--r--source/da/vcl/qa/cppunit/builder.po2
-rw-r--r--source/da/vcl/source/edit.po2
-rw-r--r--source/da/vcl/source/src.po2
-rw-r--r--source/da/vcl/uiconfig/ui.po2
-rw-r--r--source/da/wizards/source/euro.po2
-rw-r--r--source/da/wizards/source/formwizard.po2
-rw-r--r--source/da/wizards/source/importwizard.po2
-rw-r--r--source/da/wizards/source/template.po2
-rw-r--r--source/da/xmlsecurity/source/component.po2
-rw-r--r--source/da/xmlsecurity/source/dialogs.po2
-rw-r--r--source/de/accessibility/source/helper.po2
-rw-r--r--source/de/android/sdremote/res/values.po11
-rw-r--r--source/de/avmedia/source/framework.po2
-rw-r--r--source/de/avmedia/source/viewer.po2
-rw-r--r--source/de/basctl/source/basicide.po2
-rw-r--r--source/de/basctl/source/dlged.po2
-rw-r--r--source/de/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/de/basic/source/classes.po2
-rw-r--r--source/de/basic/source/sbx.po2
-rw-r--r--source/de/chart2/source/controller/dialogs.po2
-rw-r--r--source/de/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/connectivity/source/resource.po2
-rw-r--r--source/de/cui/source/customize.po2
-rw-r--r--source/de/cui/source/dialogs.po2
-rw-r--r--source/de/cui/source/options.po15
-rw-r--r--source/de/cui/source/tabpages.po2
-rw-r--r--source/de/cui/uiconfig/ui.po4
-rw-r--r--source/de/dbaccess/source/core/resource.po2
-rw-r--r--source/de/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/de/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/de/dbaccess/source/ui/app.po2
-rw-r--r--source/de/dbaccess/source/ui/browser.po2
-rw-r--r--source/de/dbaccess/source/ui/control.po2
-rw-r--r--source/de/dbaccess/source/ui/dlg.po2
-rw-r--r--source/de/dbaccess/source/ui/inc.po2
-rw-r--r--source/de/dbaccess/source/ui/misc.po2
-rw-r--r--source/de/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/de/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/de/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/de/dbaccess/source/ui/uno.po2
-rw-r--r--source/de/desktop/source/app.po2
-rw-r--r--source/de/desktop/source/deployment/gui.po2
-rw-r--r--source/de/desktop/source/deployment/manager.po2
-rw-r--r--source/de/desktop/source/deployment/misc.po2
-rw-r--r--source/de/desktop/source/deployment/registry.po2
-rw-r--r--source/de/desktop/source/deployment/registry/component.po2
-rw-r--r--source/de/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/de/desktop/source/deployment/registry/help.po2
-rw-r--r--source/de/desktop/source/deployment/registry/package.po2
-rw-r--r--source/de/desktop/source/deployment/registry/script.po2
-rw-r--r--source/de/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/de/desktop/source/deployment/unopkg.po2
-rw-r--r--source/de/desktop/uiconfig/ui.po2
-rw-r--r--source/de/dictionaries/af_ZA.po2
-rw-r--r--source/de/dictionaries/an_ES.po2
-rw-r--r--source/de/dictionaries/ar.po2
-rw-r--r--source/de/dictionaries/be_BY.po2
-rw-r--r--source/de/dictionaries/bg_BG.po2
-rw-r--r--source/de/dictionaries/bn_BD.po2
-rw-r--r--source/de/dictionaries/br_FR.po2
-rw-r--r--source/de/dictionaries/ca.po2
-rw-r--r--source/de/dictionaries/cs_CZ.po2
-rw-r--r--source/de/dictionaries/da_DK.po2
-rw-r--r--source/de/dictionaries/de.po2
-rw-r--r--source/de/dictionaries/el_GR.po2
-rw-r--r--source/de/dictionaries/en.po2
-rw-r--r--source/de/dictionaries/en/dialog.po2
-rw-r--r--source/de/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/de/dictionaries/es.po2
-rw-r--r--source/de/dictionaries/et_EE.po2
-rw-r--r--source/de/dictionaries/fr_FR.po2
-rw-r--r--source/de/dictionaries/gd_GB.po2
-rw-r--r--source/de/dictionaries/gl.po2
-rw-r--r--source/de/dictionaries/gu_IN.po2
-rw-r--r--source/de/dictionaries/he_IL.po2
-rw-r--r--source/de/dictionaries/hi_IN.po2
-rw-r--r--source/de/dictionaries/hr_HR.po2
-rw-r--r--source/de/dictionaries/hu_HU.po2
-rw-r--r--source/de/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/de/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/de/dictionaries/it_IT.po2
-rw-r--r--source/de/dictionaries/ku_TR.po2
-rw-r--r--source/de/dictionaries/lt_LT.po2
-rw-r--r--source/de/dictionaries/lv_LV.po2
-rw-r--r--source/de/dictionaries/ne_NP.po2
-rw-r--r--source/de/dictionaries/nl_NL.po2
-rw-r--r--source/de/dictionaries/no.po2
-rw-r--r--source/de/dictionaries/oc_FR.po2
-rw-r--r--source/de/dictionaries/pl_PL.po2
-rw-r--r--source/de/dictionaries/pt_BR.po2
-rw-r--r--source/de/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/de/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/de/dictionaries/pt_PT.po2
-rw-r--r--source/de/dictionaries/ro.po2
-rw-r--r--source/de/dictionaries/ru_RU.po2
-rw-r--r--source/de/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/de/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/de/dictionaries/si_LK.po2
-rw-r--r--source/de/dictionaries/sk_SK.po2
-rw-r--r--source/de/dictionaries/sl_SI.po2
-rw-r--r--source/de/dictionaries/sr.po2
-rw-r--r--source/de/dictionaries/sv_SE.po2
-rw-r--r--source/de/dictionaries/sw_TZ.po2
-rw-r--r--source/de/dictionaries/te_IN.po2
-rw-r--r--source/de/dictionaries/th_TH.po2
-rw-r--r--source/de/dictionaries/uk_UA.po2
-rw-r--r--source/de/dictionaries/vi.po2
-rw-r--r--source/de/dictionaries/zu_ZA.po2
-rw-r--r--source/de/editeng/source/accessibility.po2
-rw-r--r--source/de/editeng/source/editeng.po2
-rw-r--r--source/de/editeng/source/items.po2
-rw-r--r--source/de/editeng/source/misc.po2
-rw-r--r--source/de/editeng/source/outliner.po2
-rw-r--r--source/de/extensions/source/abpilot.po2
-rw-r--r--source/de/extensions/source/bibliography.po2
-rw-r--r--source/de/extensions/source/dbpilots.po2
-rw-r--r--source/de/extensions/source/propctrlr.po2
-rw-r--r--source/de/extensions/source/scanner.po2
-rw-r--r--source/de/extensions/source/update/check.po2
-rw-r--r--source/de/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/de/filter/source/config/fragments/filters.po2
-rw-r--r--source/de/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/de/filter/source/config/fragments/types.po2
-rw-r--r--source/de/filter/source/flash.po2
-rw-r--r--source/de/filter/source/graphicfilter/eps.po2
-rw-r--r--source/de/filter/source/pdf.po2
-rw-r--r--source/de/filter/source/t602.po2
-rw-r--r--source/de/filter/source/xsltdialog.po10
-rw-r--r--source/de/filter/uiconfig/ui.po12
-rw-r--r--source/de/forms/source/resource.po2
-rw-r--r--source/de/formula/source/core/resource.po44
-rw-r--r--source/de/formula/source/ui/dlg.po2
-rw-r--r--source/de/fpicker/source/office.po2
-rw-r--r--source/de/framework/source/classes.po2
-rw-r--r--source/de/framework/source/services.po2
-rw-r--r--source/de/helpcontent2/source/auxiliary.po58
-rw-r--r--source/de/helpcontent2/source/text/sbasic/guide.po20
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po58
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/01.po10
-rw-r--r--source/de/helpcontent2/source/text/scalc/00.po12
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po20
-rw-r--r--source/de/helpcontent2/source/text/scalc/05.po12
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/de/helpcontent2/source/text/schart.po9
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po16
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po152
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po20
-rw-r--r--source/de/helpcontent2/source/text/shared/05.po7
-rw-r--r--source/de/helpcontent2/source/text/shared/autopi.po7
-rw-r--r--source/de/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po64
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/de/helpcontent2/source/text/simpress/02.po14
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/de/helpcontent2/source/text/smath/01.po14
-rw-r--r--source/de/helpcontent2/source/text/smath/guide.po7
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po170
-rw-r--r--source/de/helpcontent2/source/text/swriter/04.po12
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/de/helpcontent2/source/text/swriter/librelogo.po370
-rw-r--r--source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/de/librelogo/source/pythonpath.po242
-rw-r--r--source/de/mysqlc/source.po2
-rw-r--r--source/de/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/de/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/de/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/de/nlpsolver/src/locale.po2
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office.po13
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po48
-rw-r--r--source/de/padmin/source.po4
-rw-r--r--source/de/readlicense_oo/docs.po2
-rw-r--r--source/de/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/de/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/de/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/de/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/de/reportbuilder/util.po2
-rw-r--r--source/de/reportdesign/source/core/resource.po2
-rw-r--r--source/de/reportdesign/source/ui/dlg.po2
-rw-r--r--source/de/reportdesign/source/ui/inspection.po2
-rw-r--r--source/de/reportdesign/source/ui/report.po2
-rw-r--r--source/de/sc/source/core/src.po2
-rw-r--r--source/de/sc/source/ui/cctrl.po2
-rw-r--r--source/de/sc/source/ui/dbgui.po2
-rw-r--r--source/de/sc/source/ui/docshell.po2
-rw-r--r--source/de/sc/source/ui/drawfunc.po2
-rw-r--r--source/de/sc/source/ui/formdlg.po2
-rw-r--r--source/de/sc/source/ui/miscdlgs.po10
-rw-r--r--source/de/sc/source/ui/navipi.po2
-rw-r--r--source/de/sc/source/ui/optdlg.po2
-rw-r--r--source/de/sc/source/ui/pagedlg.po2
-rw-r--r--source/de/sc/source/ui/src.po406
-rw-r--r--source/de/sc/source/ui/styleui.po4
-rw-r--r--source/de/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/de/scaddins/source/analysis.po2
-rw-r--r--source/de/scaddins/source/datefunc.po2
-rw-r--r--source/de/scaddins/source/pricing.po122
-rw-r--r--source/de/sccomp/source/solver.po2
-rw-r--r--source/de/scp2/source/accessories.po2
-rw-r--r--source/de/scp2/source/activex.po2
-rw-r--r--source/de/scp2/source/base.po2
-rw-r--r--source/de/scp2/source/calc.po2
-rw-r--r--source/de/scp2/source/draw.po2
-rw-r--r--source/de/scp2/source/extensions.po2
-rw-r--r--source/de/scp2/source/gnome.po2
-rw-r--r--source/de/scp2/source/graphicfilter.po2
-rw-r--r--source/de/scp2/source/impress.po2
-rw-r--r--source/de/scp2/source/javafilter.po2
-rw-r--r--source/de/scp2/source/kde.po2
-rw-r--r--source/de/scp2/source/math.po2
-rw-r--r--source/de/scp2/source/onlineupdate.po2
-rw-r--r--source/de/scp2/source/ooo.po4
-rw-r--r--source/de/scp2/source/python.po24
-rw-r--r--source/de/scp2/source/quickstart.po2
-rw-r--r--source/de/scp2/source/sdkoo.po2
-rw-r--r--source/de/scp2/source/smoketest.po2
-rw-r--r--source/de/scp2/source/stdlibs.po2
-rw-r--r--source/de/scp2/source/tde.po2
-rw-r--r--source/de/scp2/source/winexplorerext.po2
-rw-r--r--source/de/scp2/source/writer.po2
-rw-r--r--source/de/scp2/source/xsltfilter.po2
-rw-r--r--source/de/sd/source/core.po2
-rw-r--r--source/de/sd/source/filter/html.po2
-rw-r--r--source/de/sd/source/ui/accessibility.po2
-rw-r--r--source/de/sd/source/ui/animations.po2
-rw-r--r--source/de/sd/source/ui/annotations.po2
-rw-r--r--source/de/sd/source/ui/app.po4
-rw-r--r--source/de/sd/source/ui/dlg.po4
-rw-r--r--source/de/sd/source/ui/slideshow.po2
-rw-r--r--source/de/sd/source/ui/table.po2
-rw-r--r--source/de/sd/source/ui/view.po2
-rw-r--r--source/de/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/de/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/de/sdext/source/minimizer.po2
-rw-r--r--source/de/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/de/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/de/setup_native/source/mac.po2
-rw-r--r--source/de/sfx2/source/appl.po2
-rw-r--r--source/de/sfx2/source/bastyp.po2
-rw-r--r--source/de/sfx2/source/control.po25
-rw-r--r--source/de/sfx2/source/dialog.po48
-rw-r--r--source/de/sfx2/source/doc.po133
-rw-r--r--source/de/sfx2/source/menu.po2
-rw-r--r--source/de/sfx2/source/view.po2
-rw-r--r--source/de/sfx2/uiconfig/ui.po8
-rw-r--r--source/de/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/de/starmath/source.po2
-rw-r--r--source/de/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/de/svl/source/items.po2
-rw-r--r--source/de/svl/source/misc.po2
-rw-r--r--source/de/svtools/source/contnr.po2
-rw-r--r--source/de/svtools/source/control.po2
-rw-r--r--source/de/svtools/source/dialogs.po2
-rw-r--r--source/de/svtools/source/java.po2
-rw-r--r--source/de/svtools/source/misc.po13
-rw-r--r--source/de/svtools/source/toolpanel.po2
-rw-r--r--source/de/svtools/uiconfig/ui.po51
-rw-r--r--source/de/svx/inc.po4
-rw-r--r--source/de/svx/source/accessibility.po2
-rw-r--r--source/de/svx/source/core.po2
-rw-r--r--source/de/svx/source/dialog.po217
-rw-r--r--source/de/svx/source/engine3d.po2
-rw-r--r--source/de/svx/source/fmcomp.po2
-rw-r--r--source/de/svx/source/form.po2
-rw-r--r--source/de/svx/source/gallery2.po2
-rw-r--r--source/de/svx/source/items.po2
-rw-r--r--source/de/svx/source/src.po2
-rw-r--r--source/de/svx/source/stbctrls.po2
-rw-r--r--source/de/svx/source/svdraw.po2
-rw-r--r--source/de/svx/source/table.po2
-rw-r--r--source/de/svx/source/tbxctrls.po2
-rw-r--r--source/de/svx/source/toolbars.po2
-rw-r--r--source/de/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/de/svx/uiconfig/ui.po206
-rw-r--r--source/de/sw/source/core/layout.po2
-rw-r--r--source/de/sw/source/core/undo.po8
-rw-r--r--source/de/sw/source/core/unocore.po2
-rw-r--r--source/de/sw/source/ui/app.po10
-rw-r--r--source/de/sw/source/ui/chrdlg.po2
-rw-r--r--source/de/sw/source/ui/config.po10
-rw-r--r--source/de/sw/source/ui/dbui.po2
-rw-r--r--source/de/sw/source/ui/dialog.po2
-rw-r--r--source/de/sw/source/ui/dochdl.po2
-rw-r--r--source/de/sw/source/ui/docvw.po2
-rw-r--r--source/de/sw/source/ui/envelp.po2
-rw-r--r--source/de/sw/source/ui/fldui.po2
-rw-r--r--source/de/sw/source/ui/fmtui.po2
-rw-r--r--source/de/sw/source/ui/frmdlg.po2
-rw-r--r--source/de/sw/source/ui/globdoc.po2
-rw-r--r--source/de/sw/source/ui/index.po2
-rw-r--r--source/de/sw/source/ui/lingu.po2
-rw-r--r--source/de/sw/source/ui/misc.po2
-rw-r--r--source/de/sw/source/ui/ribbar.po2
-rw-r--r--source/de/sw/source/ui/shells.po10
-rw-r--r--source/de/sw/source/ui/smartmenu.po2
-rw-r--r--source/de/sw/source/ui/table.po2
-rw-r--r--source/de/sw/source/ui/uiview.po2
-rw-r--r--source/de/sw/source/ui/utlui.po2
-rw-r--r--source/de/sw/source/ui/web.po2
-rw-r--r--source/de/sw/source/ui/wrtsh.po2
-rw-r--r--source/de/sw/uiconfig/sw/ui.po278
-rw-r--r--source/de/sw/uiconfig/swriter/ui.po8
-rw-r--r--source/de/swext/mediawiki/help.po2
-rw-r--r--source/de/swext/mediawiki/src.po2
-rw-r--r--source/de/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/de/sysui/desktop/share.po2
-rw-r--r--source/de/tubes/uiconfig/ui.po13
-rw-r--r--source/de/uui/source.po2
-rw-r--r--source/de/vcl/qa/cppunit/builder.po8
-rw-r--r--source/de/vcl/source/edit.po2
-rw-r--r--source/de/vcl/source/src.po2
-rw-r--r--source/de/vcl/uiconfig/ui.po2
-rw-r--r--source/de/wizards/source/euro.po2
-rw-r--r--source/de/wizards/source/formwizard.po60
-rw-r--r--source/de/wizards/source/importwizard.po2
-rw-r--r--source/de/wizards/source/template.po2
-rw-r--r--source/de/xmlsecurity/source/component.po2
-rw-r--r--source/de/xmlsecurity/source/dialogs.po2
-rw-r--r--source/dgo/accessibility/source/helper.po2
-rw-r--r--source/dgo/android/sdremote/res/values.po2
-rw-r--r--source/dgo/avmedia/source/framework.po2
-rw-r--r--source/dgo/avmedia/source/viewer.po2
-rw-r--r--source/dgo/basctl/source/basicide.po2
-rw-r--r--source/dgo/basctl/source/dlged.po2
-rw-r--r--source/dgo/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/dgo/basic/source/classes.po2
-rw-r--r--source/dgo/basic/source/sbx.po2
-rw-r--r--source/dgo/chart2/source/controller/dialogs.po2
-rw-r--r--source/dgo/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/connectivity/source/resource.po2
-rw-r--r--source/dgo/cui/source/customize.po2
-rw-r--r--source/dgo/cui/source/dialogs.po2
-rw-r--r--source/dgo/cui/source/options.po2
-rw-r--r--source/dgo/cui/source/tabpages.po2
-rw-r--r--source/dgo/cui/uiconfig/ui.po2
-rw-r--r--source/dgo/dbaccess/source/core/resource.po2
-rw-r--r--source/dgo/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/dgo/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/dgo/dbaccess/source/ui/app.po2
-rw-r--r--source/dgo/dbaccess/source/ui/browser.po2
-rw-r--r--source/dgo/dbaccess/source/ui/control.po2
-rw-r--r--source/dgo/dbaccess/source/ui/dlg.po2
-rw-r--r--source/dgo/dbaccess/source/ui/inc.po2
-rw-r--r--source/dgo/dbaccess/source/ui/misc.po2
-rw-r--r--source/dgo/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/dgo/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/dgo/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/dgo/dbaccess/source/ui/uno.po2
-rw-r--r--source/dgo/desktop/source/app.po2
-rw-r--r--source/dgo/desktop/source/deployment/gui.po2
-rw-r--r--source/dgo/desktop/source/deployment/manager.po2
-rw-r--r--source/dgo/desktop/source/deployment/misc.po2
-rw-r--r--source/dgo/desktop/source/deployment/registry.po2
-rw-r--r--source/dgo/desktop/source/deployment/registry/component.po2
-rw-r--r--source/dgo/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/dgo/desktop/source/deployment/registry/help.po2
-rw-r--r--source/dgo/desktop/source/deployment/registry/package.po2
-rw-r--r--source/dgo/desktop/source/deployment/registry/script.po2
-rw-r--r--source/dgo/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/dgo/desktop/source/deployment/unopkg.po2
-rw-r--r--source/dgo/desktop/uiconfig/ui.po2
-rw-r--r--source/dgo/dictionaries/af_ZA.po2
-rw-r--r--source/dgo/dictionaries/an_ES.po2
-rw-r--r--source/dgo/dictionaries/ar.po2
-rw-r--r--source/dgo/dictionaries/be_BY.po2
-rw-r--r--source/dgo/dictionaries/bg_BG.po2
-rw-r--r--source/dgo/dictionaries/bn_BD.po2
-rw-r--r--source/dgo/dictionaries/br_FR.po2
-rw-r--r--source/dgo/dictionaries/ca.po2
-rw-r--r--source/dgo/dictionaries/cs_CZ.po2
-rw-r--r--source/dgo/dictionaries/da_DK.po2
-rw-r--r--source/dgo/dictionaries/de.po2
-rw-r--r--source/dgo/dictionaries/el_GR.po2
-rw-r--r--source/dgo/dictionaries/en.po2
-rw-r--r--source/dgo/dictionaries/en/dialog.po2
-rw-r--r--source/dgo/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dgo/dictionaries/es.po2
-rw-r--r--source/dgo/dictionaries/et_EE.po2
-rw-r--r--source/dgo/dictionaries/fr_FR.po2
-rw-r--r--source/dgo/dictionaries/gd_GB.po2
-rw-r--r--source/dgo/dictionaries/gl.po2
-rw-r--r--source/dgo/dictionaries/gu_IN.po2
-rw-r--r--source/dgo/dictionaries/he_IL.po2
-rw-r--r--source/dgo/dictionaries/hi_IN.po2
-rw-r--r--source/dgo/dictionaries/hr_HR.po2
-rw-r--r--source/dgo/dictionaries/hu_HU.po2
-rw-r--r--source/dgo/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/dgo/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dgo/dictionaries/it_IT.po2
-rw-r--r--source/dgo/dictionaries/ku_TR.po2
-rw-r--r--source/dgo/dictionaries/lt_LT.po2
-rw-r--r--source/dgo/dictionaries/lv_LV.po2
-rw-r--r--source/dgo/dictionaries/ne_NP.po2
-rw-r--r--source/dgo/dictionaries/nl_NL.po2
-rw-r--r--source/dgo/dictionaries/no.po2
-rw-r--r--source/dgo/dictionaries/oc_FR.po2
-rw-r--r--source/dgo/dictionaries/pl_PL.po2
-rw-r--r--source/dgo/dictionaries/pt_BR.po2
-rw-r--r--source/dgo/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/dgo/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dgo/dictionaries/pt_PT.po2
-rw-r--r--source/dgo/dictionaries/ro.po2
-rw-r--r--source/dgo/dictionaries/ru_RU.po2
-rw-r--r--source/dgo/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/dgo/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dgo/dictionaries/si_LK.po2
-rw-r--r--source/dgo/dictionaries/sk_SK.po2
-rw-r--r--source/dgo/dictionaries/sl_SI.po2
-rw-r--r--source/dgo/dictionaries/sr.po2
-rw-r--r--source/dgo/dictionaries/sv_SE.po2
-rw-r--r--source/dgo/dictionaries/sw_TZ.po2
-rw-r--r--source/dgo/dictionaries/te_IN.po2
-rw-r--r--source/dgo/dictionaries/th_TH.po2
-rw-r--r--source/dgo/dictionaries/uk_UA.po2
-rw-r--r--source/dgo/dictionaries/vi.po2
-rw-r--r--source/dgo/dictionaries/zu_ZA.po2
-rw-r--r--source/dgo/editeng/source/accessibility.po2
-rw-r--r--source/dgo/editeng/source/editeng.po2
-rw-r--r--source/dgo/editeng/source/items.po2
-rw-r--r--source/dgo/editeng/source/misc.po2
-rw-r--r--source/dgo/editeng/source/outliner.po2
-rw-r--r--source/dgo/extensions/source/abpilot.po2
-rw-r--r--source/dgo/extensions/source/bibliography.po2
-rw-r--r--source/dgo/extensions/source/dbpilots.po2
-rw-r--r--source/dgo/extensions/source/propctrlr.po2
-rw-r--r--source/dgo/extensions/source/scanner.po2
-rw-r--r--source/dgo/extensions/source/update/check.po2
-rw-r--r--source/dgo/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/dgo/filter/source/config/fragments/filters.po2
-rw-r--r--source/dgo/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/dgo/filter/source/config/fragments/types.po2
-rw-r--r--source/dgo/filter/source/flash.po2
-rw-r--r--source/dgo/filter/source/graphicfilter/eps.po2
-rw-r--r--source/dgo/filter/source/pdf.po2
-rw-r--r--source/dgo/filter/source/t602.po2
-rw-r--r--source/dgo/filter/source/xsltdialog.po2
-rw-r--r--source/dgo/filter/uiconfig/ui.po2
-rw-r--r--source/dgo/forms/source/resource.po2
-rw-r--r--source/dgo/formula/source/core/resource.po38
-rw-r--r--source/dgo/formula/source/ui/dlg.po2
-rw-r--r--source/dgo/fpicker/source/office.po2
-rw-r--r--source/dgo/framework/source/classes.po2
-rw-r--r--source/dgo/framework/source/services.po2
-rw-r--r--source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/dgo/librelogo/source/pythonpath.po2
-rw-r--r--source/dgo/mysqlc/source.po2
-rw-r--r--source/dgo/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dgo/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/dgo/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/dgo/nlpsolver/src/locale.po2
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/dgo/padmin/source.po2
-rw-r--r--source/dgo/readlicense_oo/docs.po2
-rw-r--r--source/dgo/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/dgo/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dgo/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/dgo/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/dgo/reportbuilder/util.po2
-rw-r--r--source/dgo/reportdesign/source/core/resource.po2
-rw-r--r--source/dgo/reportdesign/source/ui/dlg.po2
-rw-r--r--source/dgo/reportdesign/source/ui/inspection.po2
-rw-r--r--source/dgo/reportdesign/source/ui/report.po2
-rw-r--r--source/dgo/sc/source/core/src.po2
-rw-r--r--source/dgo/sc/source/ui/cctrl.po2
-rw-r--r--source/dgo/sc/source/ui/dbgui.po2
-rw-r--r--source/dgo/sc/source/ui/docshell.po2
-rw-r--r--source/dgo/sc/source/ui/drawfunc.po2
-rw-r--r--source/dgo/sc/source/ui/formdlg.po2
-rw-r--r--source/dgo/sc/source/ui/miscdlgs.po2
-rw-r--r--source/dgo/sc/source/ui/navipi.po2
-rw-r--r--source/dgo/sc/source/ui/optdlg.po2
-rw-r--r--source/dgo/sc/source/ui/pagedlg.po2
-rw-r--r--source/dgo/sc/source/ui/src.po383
-rw-r--r--source/dgo/sc/source/ui/styleui.po2
-rw-r--r--source/dgo/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/dgo/scaddins/source/analysis.po2
-rw-r--r--source/dgo/scaddins/source/datefunc.po2
-rw-r--r--source/dgo/scaddins/source/pricing.po2
-rw-r--r--source/dgo/sccomp/source/solver.po2
-rw-r--r--source/dgo/scp2/source/accessories.po2
-rw-r--r--source/dgo/scp2/source/activex.po2
-rw-r--r--source/dgo/scp2/source/base.po2
-rw-r--r--source/dgo/scp2/source/calc.po2
-rw-r--r--source/dgo/scp2/source/draw.po2
-rw-r--r--source/dgo/scp2/source/extensions.po2
-rw-r--r--source/dgo/scp2/source/gnome.po2
-rw-r--r--source/dgo/scp2/source/graphicfilter.po2
-rw-r--r--source/dgo/scp2/source/impress.po2
-rw-r--r--source/dgo/scp2/source/javafilter.po2
-rw-r--r--source/dgo/scp2/source/kde.po2
-rw-r--r--source/dgo/scp2/source/math.po2
-rw-r--r--source/dgo/scp2/source/onlineupdate.po2
-rw-r--r--source/dgo/scp2/source/ooo.po2
-rw-r--r--source/dgo/scp2/source/python.po18
-rw-r--r--source/dgo/scp2/source/quickstart.po2
-rw-r--r--source/dgo/scp2/source/sdkoo.po2
-rw-r--r--source/dgo/scp2/source/smoketest.po2
-rw-r--r--source/dgo/scp2/source/stdlibs.po2
-rw-r--r--source/dgo/scp2/source/tde.po2
-rw-r--r--source/dgo/scp2/source/winexplorerext.po2
-rw-r--r--source/dgo/scp2/source/writer.po2
-rw-r--r--source/dgo/scp2/source/xsltfilter.po2
-rw-r--r--source/dgo/sd/source/core.po2
-rw-r--r--source/dgo/sd/source/filter/html.po2
-rw-r--r--source/dgo/sd/source/ui/accessibility.po2
-rw-r--r--source/dgo/sd/source/ui/animations.po2
-rw-r--r--source/dgo/sd/source/ui/annotations.po2
-rw-r--r--source/dgo/sd/source/ui/app.po2
-rw-r--r--source/dgo/sd/source/ui/dlg.po2
-rw-r--r--source/dgo/sd/source/ui/slideshow.po2
-rw-r--r--source/dgo/sd/source/ui/table.po2
-rw-r--r--source/dgo/sd/source/ui/view.po2
-rw-r--r--source/dgo/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/dgo/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/dgo/sdext/source/minimizer.po2
-rw-r--r--source/dgo/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dgo/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/dgo/setup_native/source/mac.po2
-rw-r--r--source/dgo/sfx2/source/appl.po2
-rw-r--r--source/dgo/sfx2/source/bastyp.po2
-rw-r--r--source/dgo/sfx2/source/control.po23
-rw-r--r--source/dgo/sfx2/source/dialog.po46
-rw-r--r--source/dgo/sfx2/source/doc.po126
-rw-r--r--source/dgo/sfx2/source/menu.po2
-rw-r--r--source/dgo/sfx2/source/view.po2
-rw-r--r--source/dgo/sfx2/uiconfig/ui.po2
-rw-r--r--source/dgo/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/dgo/starmath/source.po2
-rw-r--r--source/dgo/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/dgo/svl/source/items.po2
-rw-r--r--source/dgo/svl/source/misc.po2
-rw-r--r--source/dgo/svtools/source/contnr.po2
-rw-r--r--source/dgo/svtools/source/control.po2
-rw-r--r--source/dgo/svtools/source/dialogs.po2
-rw-r--r--source/dgo/svtools/source/java.po2
-rw-r--r--source/dgo/svtools/source/misc.po2
-rw-r--r--source/dgo/svtools/source/toolpanel.po2
-rw-r--r--source/dgo/svtools/uiconfig/ui.po55
-rw-r--r--source/dgo/svx/inc.po2
-rw-r--r--source/dgo/svx/source/accessibility.po2
-rw-r--r--source/dgo/svx/source/core.po2
-rw-r--r--source/dgo/svx/source/dialog.po225
-rw-r--r--source/dgo/svx/source/engine3d.po2
-rw-r--r--source/dgo/svx/source/fmcomp.po2
-rw-r--r--source/dgo/svx/source/form.po2
-rw-r--r--source/dgo/svx/source/gallery2.po2
-rw-r--r--source/dgo/svx/source/items.po2
-rw-r--r--source/dgo/svx/source/src.po2
-rw-r--r--source/dgo/svx/source/stbctrls.po2
-rw-r--r--source/dgo/svx/source/svdraw.po2
-rw-r--r--source/dgo/svx/source/table.po2
-rw-r--r--source/dgo/svx/source/tbxctrls.po2
-rw-r--r--source/dgo/svx/source/toolbars.po2
-rw-r--r--source/dgo/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/dgo/svx/uiconfig/ui.po204
-rw-r--r--source/dgo/sw/source/core/layout.po2
-rw-r--r--source/dgo/sw/source/core/undo.po2
-rw-r--r--source/dgo/sw/source/core/unocore.po2
-rw-r--r--source/dgo/sw/source/ui/app.po2
-rw-r--r--source/dgo/sw/source/ui/chrdlg.po2
-rw-r--r--source/dgo/sw/source/ui/config.po2
-rw-r--r--source/dgo/sw/source/ui/dbui.po2
-rw-r--r--source/dgo/sw/source/ui/dialog.po2
-rw-r--r--source/dgo/sw/source/ui/dochdl.po2
-rw-r--r--source/dgo/sw/source/ui/docvw.po2
-rw-r--r--source/dgo/sw/source/ui/envelp.po2
-rw-r--r--source/dgo/sw/source/ui/fldui.po2
-rw-r--r--source/dgo/sw/source/ui/fmtui.po2
-rw-r--r--source/dgo/sw/source/ui/frmdlg.po2
-rw-r--r--source/dgo/sw/source/ui/globdoc.po2
-rw-r--r--source/dgo/sw/source/ui/index.po2
-rw-r--r--source/dgo/sw/source/ui/lingu.po2
-rw-r--r--source/dgo/sw/source/ui/misc.po2
-rw-r--r--source/dgo/sw/source/ui/ribbar.po2
-rw-r--r--source/dgo/sw/source/ui/shells.po2
-rw-r--r--source/dgo/sw/source/ui/smartmenu.po2
-rw-r--r--source/dgo/sw/source/ui/table.po2
-rw-r--r--source/dgo/sw/source/ui/uiview.po2
-rw-r--r--source/dgo/sw/source/ui/utlui.po2
-rw-r--r--source/dgo/sw/source/ui/web.po2
-rw-r--r--source/dgo/sw/source/ui/wrtsh.po2
-rw-r--r--source/dgo/sw/uiconfig/sw/ui.po282
-rw-r--r--source/dgo/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/dgo/swext/mediawiki/help.po2
-rw-r--r--source/dgo/swext/mediawiki/src.po2
-rw-r--r--source/dgo/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dgo/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/dgo/sysui/desktop/share.po2
-rw-r--r--source/dgo/tubes/uiconfig/ui.po2
-rw-r--r--source/dgo/uui/source.po2
-rw-r--r--source/dgo/vcl/qa/cppunit/builder.po2
-rw-r--r--source/dgo/vcl/source/edit.po2
-rw-r--r--source/dgo/vcl/source/src.po2
-rw-r--r--source/dgo/vcl/uiconfig/ui.po2
-rw-r--r--source/dgo/wizards/source/euro.po2
-rw-r--r--source/dgo/wizards/source/formwizard.po2
-rw-r--r--source/dgo/wizards/source/importwizard.po2
-rw-r--r--source/dgo/wizards/source/template.po2
-rw-r--r--source/dgo/xmlsecurity/source/component.po2
-rw-r--r--source/dgo/xmlsecurity/source/dialogs.po2
-rw-r--r--source/dz/accessibility/source/helper.po2
-rw-r--r--source/dz/android/sdremote/res/values.po2
-rw-r--r--source/dz/avmedia/source/framework.po2
-rw-r--r--source/dz/avmedia/source/viewer.po2
-rw-r--r--source/dz/basctl/source/basicide.po2
-rw-r--r--source/dz/basctl/source/dlged.po2
-rw-r--r--source/dz/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/dz/basic/source/classes.po2
-rw-r--r--source/dz/basic/source/sbx.po2
-rw-r--r--source/dz/chart2/source/controller/dialogs.po2
-rw-r--r--source/dz/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/connectivity/source/resource.po2
-rw-r--r--source/dz/cui/source/customize.po2
-rw-r--r--source/dz/cui/source/dialogs.po2
-rw-r--r--source/dz/cui/source/options.po2
-rw-r--r--source/dz/cui/source/tabpages.po2
-rw-r--r--source/dz/cui/uiconfig/ui.po2
-rw-r--r--source/dz/dbaccess/source/core/resource.po2
-rw-r--r--source/dz/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/dz/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/dz/dbaccess/source/ui/app.po2
-rw-r--r--source/dz/dbaccess/source/ui/browser.po2
-rw-r--r--source/dz/dbaccess/source/ui/control.po2
-rw-r--r--source/dz/dbaccess/source/ui/dlg.po2
-rw-r--r--source/dz/dbaccess/source/ui/inc.po2
-rw-r--r--source/dz/dbaccess/source/ui/misc.po2
-rw-r--r--source/dz/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/dz/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/dz/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/dz/dbaccess/source/ui/uno.po2
-rw-r--r--source/dz/desktop/source/app.po2
-rw-r--r--source/dz/desktop/source/deployment/gui.po2
-rw-r--r--source/dz/desktop/source/deployment/manager.po2
-rw-r--r--source/dz/desktop/source/deployment/misc.po2
-rw-r--r--source/dz/desktop/source/deployment/registry.po2
-rw-r--r--source/dz/desktop/source/deployment/registry/component.po2
-rw-r--r--source/dz/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/dz/desktop/source/deployment/registry/help.po2
-rw-r--r--source/dz/desktop/source/deployment/registry/package.po2
-rw-r--r--source/dz/desktop/source/deployment/registry/script.po2
-rw-r--r--source/dz/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/dz/desktop/source/deployment/unopkg.po2
-rw-r--r--source/dz/desktop/uiconfig/ui.po2
-rw-r--r--source/dz/dictionaries/af_ZA.po2
-rw-r--r--source/dz/dictionaries/an_ES.po2
-rw-r--r--source/dz/dictionaries/ar.po2
-rw-r--r--source/dz/dictionaries/be_BY.po2
-rw-r--r--source/dz/dictionaries/bg_BG.po2
-rw-r--r--source/dz/dictionaries/bn_BD.po2
-rw-r--r--source/dz/dictionaries/br_FR.po2
-rw-r--r--source/dz/dictionaries/ca.po2
-rw-r--r--source/dz/dictionaries/cs_CZ.po2
-rw-r--r--source/dz/dictionaries/da_DK.po2
-rw-r--r--source/dz/dictionaries/de.po2
-rw-r--r--source/dz/dictionaries/el_GR.po2
-rw-r--r--source/dz/dictionaries/en.po2
-rw-r--r--source/dz/dictionaries/en/dialog.po2
-rw-r--r--source/dz/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dz/dictionaries/es.po2
-rw-r--r--source/dz/dictionaries/et_EE.po2
-rw-r--r--source/dz/dictionaries/fr_FR.po2
-rw-r--r--source/dz/dictionaries/gd_GB.po2
-rw-r--r--source/dz/dictionaries/gl.po2
-rw-r--r--source/dz/dictionaries/gu_IN.po2
-rw-r--r--source/dz/dictionaries/he_IL.po2
-rw-r--r--source/dz/dictionaries/hi_IN.po2
-rw-r--r--source/dz/dictionaries/hr_HR.po2
-rw-r--r--source/dz/dictionaries/hu_HU.po2
-rw-r--r--source/dz/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/dz/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dz/dictionaries/it_IT.po2
-rw-r--r--source/dz/dictionaries/ku_TR.po2
-rw-r--r--source/dz/dictionaries/lt_LT.po2
-rw-r--r--source/dz/dictionaries/lv_LV.po2
-rw-r--r--source/dz/dictionaries/ne_NP.po2
-rw-r--r--source/dz/dictionaries/nl_NL.po2
-rw-r--r--source/dz/dictionaries/no.po2
-rw-r--r--source/dz/dictionaries/oc_FR.po2
-rw-r--r--source/dz/dictionaries/pl_PL.po2
-rw-r--r--source/dz/dictionaries/pt_BR.po2
-rw-r--r--source/dz/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/dz/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dz/dictionaries/pt_PT.po2
-rw-r--r--source/dz/dictionaries/ro.po2
-rw-r--r--source/dz/dictionaries/ru_RU.po2
-rw-r--r--source/dz/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/dz/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dz/dictionaries/si_LK.po2
-rw-r--r--source/dz/dictionaries/sk_SK.po2
-rw-r--r--source/dz/dictionaries/sl_SI.po2
-rw-r--r--source/dz/dictionaries/sr.po2
-rw-r--r--source/dz/dictionaries/sv_SE.po2
-rw-r--r--source/dz/dictionaries/sw_TZ.po2
-rw-r--r--source/dz/dictionaries/te_IN.po2
-rw-r--r--source/dz/dictionaries/th_TH.po2
-rw-r--r--source/dz/dictionaries/uk_UA.po2
-rw-r--r--source/dz/dictionaries/vi.po2
-rw-r--r--source/dz/dictionaries/zu_ZA.po2
-rw-r--r--source/dz/editeng/source/accessibility.po2
-rw-r--r--source/dz/editeng/source/editeng.po2
-rw-r--r--source/dz/editeng/source/items.po2
-rw-r--r--source/dz/editeng/source/misc.po2
-rw-r--r--source/dz/editeng/source/outliner.po2
-rw-r--r--source/dz/extensions/source/abpilot.po2
-rw-r--r--source/dz/extensions/source/bibliography.po2
-rw-r--r--source/dz/extensions/source/dbpilots.po2
-rw-r--r--source/dz/extensions/source/propctrlr.po2
-rw-r--r--source/dz/extensions/source/scanner.po2
-rw-r--r--source/dz/extensions/source/update/check.po2
-rw-r--r--source/dz/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/dz/filter/source/config/fragments/filters.po2
-rw-r--r--source/dz/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/dz/filter/source/config/fragments/types.po2
-rw-r--r--source/dz/filter/source/flash.po2
-rw-r--r--source/dz/filter/source/graphicfilter/eps.po2
-rw-r--r--source/dz/filter/source/pdf.po2
-rw-r--r--source/dz/filter/source/t602.po2
-rw-r--r--source/dz/filter/source/xsltdialog.po2
-rw-r--r--source/dz/filter/uiconfig/ui.po2
-rw-r--r--source/dz/forms/source/resource.po2
-rw-r--r--source/dz/formula/source/core/resource.po38
-rw-r--r--source/dz/formula/source/ui/dlg.po2
-rw-r--r--source/dz/fpicker/source/office.po2
-rw-r--r--source/dz/framework/source/classes.po2
-rw-r--r--source/dz/framework/source/services.po2
-rw-r--r--source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/dz/librelogo/source/pythonpath.po2
-rw-r--r--source/dz/mysqlc/source.po2
-rw-r--r--source/dz/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/dz/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/dz/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/dz/nlpsolver/src/locale.po2
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/dz/padmin/source.po2
-rw-r--r--source/dz/readlicense_oo/docs.po2
-rw-r--r--source/dz/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/dz/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dz/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/dz/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/dz/reportbuilder/util.po2
-rw-r--r--source/dz/reportdesign/source/core/resource.po2
-rw-r--r--source/dz/reportdesign/source/ui/dlg.po2
-rw-r--r--source/dz/reportdesign/source/ui/inspection.po2
-rw-r--r--source/dz/reportdesign/source/ui/report.po2
-rw-r--r--source/dz/sc/source/core/src.po2
-rw-r--r--source/dz/sc/source/ui/cctrl.po2
-rw-r--r--source/dz/sc/source/ui/dbgui.po2
-rw-r--r--source/dz/sc/source/ui/docshell.po2
-rw-r--r--source/dz/sc/source/ui/drawfunc.po2
-rw-r--r--source/dz/sc/source/ui/formdlg.po2
-rw-r--r--source/dz/sc/source/ui/miscdlgs.po2
-rw-r--r--source/dz/sc/source/ui/navipi.po2
-rw-r--r--source/dz/sc/source/ui/optdlg.po2
-rw-r--r--source/dz/sc/source/ui/pagedlg.po2
-rw-r--r--source/dz/sc/source/ui/src.po379
-rw-r--r--source/dz/sc/source/ui/styleui.po2
-rw-r--r--source/dz/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/dz/scaddins/source/analysis.po2
-rw-r--r--source/dz/scaddins/source/datefunc.po2
-rw-r--r--source/dz/scaddins/source/pricing.po2
-rw-r--r--source/dz/sccomp/source/solver.po2
-rw-r--r--source/dz/scp2/source/accessories.po2
-rw-r--r--source/dz/scp2/source/activex.po2
-rw-r--r--source/dz/scp2/source/base.po2
-rw-r--r--source/dz/scp2/source/calc.po2
-rw-r--r--source/dz/scp2/source/draw.po2
-rw-r--r--source/dz/scp2/source/extensions.po2
-rw-r--r--source/dz/scp2/source/gnome.po2
-rw-r--r--source/dz/scp2/source/graphicfilter.po2
-rw-r--r--source/dz/scp2/source/impress.po2
-rw-r--r--source/dz/scp2/source/javafilter.po2
-rw-r--r--source/dz/scp2/source/kde.po2
-rw-r--r--source/dz/scp2/source/math.po2
-rw-r--r--source/dz/scp2/source/onlineupdate.po2
-rw-r--r--source/dz/scp2/source/ooo.po2
-rw-r--r--source/dz/scp2/source/python.po18
-rw-r--r--source/dz/scp2/source/quickstart.po2
-rw-r--r--source/dz/scp2/source/sdkoo.po2
-rw-r--r--source/dz/scp2/source/smoketest.po2
-rw-r--r--source/dz/scp2/source/stdlibs.po2
-rw-r--r--source/dz/scp2/source/tde.po2
-rw-r--r--source/dz/scp2/source/winexplorerext.po2
-rw-r--r--source/dz/scp2/source/writer.po2
-rw-r--r--source/dz/scp2/source/xsltfilter.po2
-rw-r--r--source/dz/sd/source/core.po2
-rw-r--r--source/dz/sd/source/filter/html.po2
-rw-r--r--source/dz/sd/source/ui/accessibility.po2
-rw-r--r--source/dz/sd/source/ui/animations.po2
-rw-r--r--source/dz/sd/source/ui/annotations.po2
-rw-r--r--source/dz/sd/source/ui/app.po2
-rw-r--r--source/dz/sd/source/ui/dlg.po2
-rw-r--r--source/dz/sd/source/ui/slideshow.po2
-rw-r--r--source/dz/sd/source/ui/table.po2
-rw-r--r--source/dz/sd/source/ui/view.po2
-rw-r--r--source/dz/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/dz/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/dz/sdext/source/minimizer.po2
-rw-r--r--source/dz/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dz/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/dz/setup_native/source/mac.po2
-rw-r--r--source/dz/sfx2/source/appl.po2
-rw-r--r--source/dz/sfx2/source/bastyp.po2
-rw-r--r--source/dz/sfx2/source/control.po23
-rw-r--r--source/dz/sfx2/source/dialog.po46
-rw-r--r--source/dz/sfx2/source/doc.po126
-rw-r--r--source/dz/sfx2/source/menu.po2
-rw-r--r--source/dz/sfx2/source/view.po2
-rw-r--r--source/dz/sfx2/uiconfig/ui.po2
-rw-r--r--source/dz/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/dz/starmath/source.po2
-rw-r--r--source/dz/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/dz/svl/source/items.po2
-rw-r--r--source/dz/svl/source/misc.po2
-rw-r--r--source/dz/svtools/source/contnr.po2
-rw-r--r--source/dz/svtools/source/control.po2
-rw-r--r--source/dz/svtools/source/dialogs.po2
-rw-r--r--source/dz/svtools/source/java.po2
-rw-r--r--source/dz/svtools/source/misc.po2
-rw-r--r--source/dz/svtools/source/toolpanel.po2
-rw-r--r--source/dz/svtools/uiconfig/ui.po49
-rw-r--r--source/dz/svx/inc.po2
-rw-r--r--source/dz/svx/source/accessibility.po2
-rw-r--r--source/dz/svx/source/core.po2
-rw-r--r--source/dz/svx/source/dialog.po225
-rw-r--r--source/dz/svx/source/engine3d.po2
-rw-r--r--source/dz/svx/source/fmcomp.po2
-rw-r--r--source/dz/svx/source/form.po2
-rw-r--r--source/dz/svx/source/gallery2.po2
-rw-r--r--source/dz/svx/source/items.po2
-rw-r--r--source/dz/svx/source/src.po2
-rw-r--r--source/dz/svx/source/stbctrls.po2
-rw-r--r--source/dz/svx/source/svdraw.po2
-rw-r--r--source/dz/svx/source/table.po2
-rw-r--r--source/dz/svx/source/tbxctrls.po2
-rw-r--r--source/dz/svx/source/toolbars.po2
-rw-r--r--source/dz/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/dz/svx/uiconfig/ui.po204
-rw-r--r--source/dz/sw/source/core/layout.po2
-rw-r--r--source/dz/sw/source/core/undo.po2
-rw-r--r--source/dz/sw/source/core/unocore.po2
-rw-r--r--source/dz/sw/source/ui/app.po2
-rw-r--r--source/dz/sw/source/ui/chrdlg.po2
-rw-r--r--source/dz/sw/source/ui/config.po2
-rw-r--r--source/dz/sw/source/ui/dbui.po2
-rw-r--r--source/dz/sw/source/ui/dialog.po2
-rw-r--r--source/dz/sw/source/ui/dochdl.po2
-rw-r--r--source/dz/sw/source/ui/docvw.po2
-rw-r--r--source/dz/sw/source/ui/envelp.po2
-rw-r--r--source/dz/sw/source/ui/fldui.po2
-rw-r--r--source/dz/sw/source/ui/fmtui.po2
-rw-r--r--source/dz/sw/source/ui/frmdlg.po2
-rw-r--r--source/dz/sw/source/ui/globdoc.po2
-rw-r--r--source/dz/sw/source/ui/index.po2
-rw-r--r--source/dz/sw/source/ui/lingu.po2
-rw-r--r--source/dz/sw/source/ui/misc.po2
-rw-r--r--source/dz/sw/source/ui/ribbar.po2
-rw-r--r--source/dz/sw/source/ui/shells.po2
-rw-r--r--source/dz/sw/source/ui/smartmenu.po2
-rw-r--r--source/dz/sw/source/ui/table.po2
-rw-r--r--source/dz/sw/source/ui/uiview.po2
-rw-r--r--source/dz/sw/source/ui/utlui.po2
-rw-r--r--source/dz/sw/source/ui/web.po2
-rw-r--r--source/dz/sw/source/ui/wrtsh.po2
-rw-r--r--source/dz/sw/uiconfig/sw/ui.po286
-rw-r--r--source/dz/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/dz/swext/mediawiki/help.po2
-rw-r--r--source/dz/swext/mediawiki/src.po2
-rw-r--r--source/dz/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/dz/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/dz/sysui/desktop/share.po2
-rw-r--r--source/dz/tubes/uiconfig/ui.po2
-rw-r--r--source/dz/uui/source.po2
-rw-r--r--source/dz/vcl/qa/cppunit/builder.po2
-rw-r--r--source/dz/vcl/source/edit.po2
-rw-r--r--source/dz/vcl/source/src.po2
-rw-r--r--source/dz/vcl/uiconfig/ui.po2
-rw-r--r--source/dz/wizards/source/euro.po2
-rw-r--r--source/dz/wizards/source/formwizard.po2
-rw-r--r--source/dz/wizards/source/importwizard.po2
-rw-r--r--source/dz/wizards/source/template.po2
-rw-r--r--source/dz/xmlsecurity/source/component.po2
-rw-r--r--source/dz/xmlsecurity/source/dialogs.po2
-rw-r--r--source/el/accessibility/source/helper.po2
-rw-r--r--source/el/android/sdremote/res/values.po4
-rw-r--r--source/el/avmedia/source/framework.po2
-rw-r--r--source/el/avmedia/source/viewer.po2
-rw-r--r--source/el/basctl/source/basicide.po2
-rw-r--r--source/el/basctl/source/dlged.po2
-rw-r--r--source/el/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/el/basic/source/classes.po2
-rw-r--r--source/el/basic/source/sbx.po2
-rw-r--r--source/el/chart2/source/controller/dialogs.po2
-rw-r--r--source/el/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/connectivity/source/resource.po2
-rw-r--r--source/el/cui/source/customize.po2
-rw-r--r--source/el/cui/source/dialogs.po2
-rw-r--r--source/el/cui/source/options.po4
-rw-r--r--source/el/cui/source/tabpages.po2
-rw-r--r--source/el/cui/uiconfig/ui.po4
-rw-r--r--source/el/dbaccess/source/core/resource.po2
-rw-r--r--source/el/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/el/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/el/dbaccess/source/ui/app.po2
-rw-r--r--source/el/dbaccess/source/ui/browser.po2
-rw-r--r--source/el/dbaccess/source/ui/control.po2
-rw-r--r--source/el/dbaccess/source/ui/dlg.po4
-rw-r--r--source/el/dbaccess/source/ui/inc.po4
-rw-r--r--source/el/dbaccess/source/ui/misc.po4
-rw-r--r--source/el/dbaccess/source/ui/querydesign.po4
-rw-r--r--source/el/dbaccess/source/ui/relationdesign.po4
-rw-r--r--source/el/dbaccess/source/ui/tabledesign.po4
-rw-r--r--source/el/dbaccess/source/ui/uno.po4
-rw-r--r--source/el/desktop/source/app.po4
-rw-r--r--source/el/desktop/source/deployment/gui.po4
-rw-r--r--source/el/desktop/source/deployment/manager.po4
-rw-r--r--source/el/desktop/source/deployment/misc.po2
-rw-r--r--source/el/desktop/source/deployment/registry.po4
-rw-r--r--source/el/desktop/source/deployment/registry/component.po2
-rw-r--r--source/el/desktop/source/deployment/registry/configuration.po4
-rw-r--r--source/el/desktop/source/deployment/registry/help.po4
-rw-r--r--source/el/desktop/source/deployment/registry/package.po2
-rw-r--r--source/el/desktop/source/deployment/registry/script.po4
-rw-r--r--source/el/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/el/desktop/source/deployment/unopkg.po4
-rw-r--r--source/el/desktop/uiconfig/ui.po2
-rw-r--r--source/el/dictionaries/af_ZA.po2
-rw-r--r--source/el/dictionaries/an_ES.po2
-rw-r--r--source/el/dictionaries/ar.po2
-rw-r--r--source/el/dictionaries/be_BY.po2
-rw-r--r--source/el/dictionaries/bg_BG.po2
-rw-r--r--source/el/dictionaries/bn_BD.po2
-rw-r--r--source/el/dictionaries/br_FR.po2
-rw-r--r--source/el/dictionaries/ca.po2
-rw-r--r--source/el/dictionaries/cs_CZ.po2
-rw-r--r--source/el/dictionaries/da_DK.po2
-rw-r--r--source/el/dictionaries/de.po2
-rw-r--r--source/el/dictionaries/el_GR.po2
-rw-r--r--source/el/dictionaries/en.po2
-rw-r--r--source/el/dictionaries/en/dialog.po4
-rw-r--r--source/el/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/el/dictionaries/es.po2
-rw-r--r--source/el/dictionaries/et_EE.po2
-rw-r--r--source/el/dictionaries/fr_FR.po2
-rw-r--r--source/el/dictionaries/gd_GB.po2
-rw-r--r--source/el/dictionaries/gl.po2
-rw-r--r--source/el/dictionaries/gu_IN.po2
-rw-r--r--source/el/dictionaries/he_IL.po2
-rw-r--r--source/el/dictionaries/hi_IN.po2
-rw-r--r--source/el/dictionaries/hr_HR.po2
-rw-r--r--source/el/dictionaries/hu_HU.po2
-rw-r--r--source/el/dictionaries/hu_HU/dialog.po4
-rw-r--r--source/el/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/el/dictionaries/it_IT.po2
-rw-r--r--source/el/dictionaries/ku_TR.po2
-rw-r--r--source/el/dictionaries/lt_LT.po2
-rw-r--r--source/el/dictionaries/lv_LV.po2
-rw-r--r--source/el/dictionaries/ne_NP.po2
-rw-r--r--source/el/dictionaries/nl_NL.po2
-rw-r--r--source/el/dictionaries/no.po2
-rw-r--r--source/el/dictionaries/oc_FR.po2
-rw-r--r--source/el/dictionaries/pl_PL.po2
-rw-r--r--source/el/dictionaries/pt_BR.po4
-rw-r--r--source/el/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/el/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/el/dictionaries/pt_PT.po2
-rw-r--r--source/el/dictionaries/ro.po2
-rw-r--r--source/el/dictionaries/ru_RU.po2
-rw-r--r--source/el/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/el/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/el/dictionaries/si_LK.po2
-rw-r--r--source/el/dictionaries/sk_SK.po2
-rw-r--r--source/el/dictionaries/sl_SI.po2
-rw-r--r--source/el/dictionaries/sr.po2
-rw-r--r--source/el/dictionaries/sv_SE.po2
-rw-r--r--source/el/dictionaries/sw_TZ.po2
-rw-r--r--source/el/dictionaries/te_IN.po2
-rw-r--r--source/el/dictionaries/th_TH.po2
-rw-r--r--source/el/dictionaries/uk_UA.po2
-rw-r--r--source/el/dictionaries/vi.po2
-rw-r--r--source/el/dictionaries/zu_ZA.po2
-rw-r--r--source/el/editeng/source/accessibility.po2
-rw-r--r--source/el/editeng/source/editeng.po4
-rw-r--r--source/el/editeng/source/items.po4
-rw-r--r--source/el/editeng/source/misc.po4
-rw-r--r--source/el/editeng/source/outliner.po2
-rw-r--r--source/el/extensions/source/abpilot.po4
-rw-r--r--source/el/extensions/source/bibliography.po4
-rw-r--r--source/el/extensions/source/dbpilots.po4
-rw-r--r--source/el/extensions/source/propctrlr.po4
-rw-r--r--source/el/extensions/source/scanner.po4
-rw-r--r--source/el/extensions/source/update/check.po4
-rw-r--r--source/el/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/el/filter/source/config/fragments/filters.po4
-rw-r--r--source/el/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/el/filter/source/config/fragments/types.po4
-rw-r--r--source/el/filter/source/flash.po2
-rw-r--r--source/el/filter/source/graphicfilter/eps.po4
-rw-r--r--source/el/filter/source/pdf.po4
-rw-r--r--source/el/filter/source/t602.po4
-rw-r--r--source/el/filter/source/xsltdialog.po4
-rw-r--r--source/el/filter/uiconfig/ui.po4
-rw-r--r--source/el/forms/source/resource.po4
-rw-r--r--source/el/formula/source/core/resource.po44
-rw-r--r--source/el/formula/source/ui/dlg.po2
-rw-r--r--source/el/fpicker/source/office.po4
-rw-r--r--source/el/framework/source/classes.po4
-rw-r--r--source/el/framework/source/services.po2
-rw-r--r--source/el/instsetoo_native/inc_openoffice/windows/msi_languages.po392
-rw-r--r--source/el/librelogo/source/pythonpath.po18
-rw-r--r--source/el/mysqlc/source.po2
-rw-r--r--source/el/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/el/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po24
-rw-r--r--source/el/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/el/nlpsolver/src/locale.po13
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office.po1722
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po1561
-rw-r--r--source/el/padmin/source.po100
-rw-r--r--source/el/readlicense_oo/docs.po100
-rw-r--r--source/el/reportbuilder/java/com/sun/star/report/function/metadata.po9
-rw-r--r--source/el/reportbuilder/registry/data/org/openoffice/Office.po11
-rw-r--r--source/el/reportbuilder/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/el/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/el/reportbuilder/util.po9
-rw-r--r--source/el/reportdesign/source/core/resource.po17
-rw-r--r--source/el/reportdesign/source/ui/dlg.po58
-rw-r--r--source/el/reportdesign/source/ui/inspection.po52
-rw-r--r--source/el/reportdesign/source/ui/report.po63
-rw-r--r--source/el/sc/source/core/src.po17
-rw-r--r--source/el/sc/source/ui/cctrl.po11
-rw-r--r--source/el/sc/source/ui/dbgui.po92
-rw-r--r--source/el/sc/source/ui/docshell.po9
-rw-r--r--source/el/sc/source/ui/drawfunc.po18
-rw-r--r--source/el/sc/source/ui/formdlg.po21
-rw-r--r--source/el/sc/source/ui/miscdlgs.po73
-rw-r--r--source/el/sc/source/ui/navipi.po17
-rw-r--r--source/el/sc/source/ui/optdlg.po10
-rw-r--r--source/el/sc/source/ui/pagedlg.po41
-rw-r--r--source/el/sc/source/ui/src.po2223
-rw-r--r--source/el/sc/source/ui/styleui.po20
-rw-r--r--source/el/sc/uiconfig/scalc/ui.po8
-rw-r--r--source/el/scaddins/source/analysis.po230
-rw-r--r--source/el/scaddins/source/datefunc.po15
-rw-r--r--source/el/scaddins/source/pricing.po12
-rw-r--r--source/el/sccomp/source/solver.po16
-rw-r--r--source/el/scp2/source/accessories.po476
-rw-r--r--source/el/scp2/source/activex.po10
-rw-r--r--source/el/scp2/source/base.po9
-rw-r--r--source/el/scp2/source/calc.po21
-rw-r--r--source/el/scp2/source/draw.po13
-rw-r--r--source/el/scp2/source/extensions.po25
-rw-r--r--source/el/scp2/source/gnome.po11
-rw-r--r--source/el/scp2/source/graphicfilter.po23
-rw-r--r--source/el/scp2/source/impress.po24
-rw-r--r--source/el/scp2/source/javafilter.po18
-rw-r--r--source/el/scp2/source/kde.po11
-rw-r--r--source/el/scp2/source/math.po15
-rw-r--r--source/el/scp2/source/onlineupdate.po13
-rw-r--r--source/el/scp2/source/ooo.po206
-rw-r--r--source/el/scp2/source/python.po26
-rw-r--r--source/el/scp2/source/quickstart.po2
-rw-r--r--source/el/scp2/source/sdkoo.po11
-rw-r--r--source/el/scp2/source/smoketest.po11
-rw-r--r--source/el/scp2/source/stdlibs.po2
-rw-r--r--source/el/scp2/source/tde.po2
-rw-r--r--source/el/scp2/source/winexplorerext.po10
-rw-r--r--source/el/scp2/source/writer.po19
-rw-r--r--source/el/scp2/source/xsltfilter.po2
-rw-r--r--source/el/sd/source/core.po74
-rw-r--r--source/el/sd/source/filter/html.po50
-rw-r--r--source/el/sd/source/ui/accessibility.po11
-rw-r--r--source/el/sd/source/ui/animations.po86
-rw-r--r--source/el/sd/source/ui/annotations.po2
-rw-r--r--source/el/sd/source/ui/app.po328
-rw-r--r--source/el/sd/source/ui/dlg.po164
-rw-r--r--source/el/sd/source/ui/slideshow.po17
-rw-r--r--source/el/sd/source/ui/table.po10
-rw-r--r--source/el/sd/source/ui/view.po21
-rw-r--r--source/el/sd/uiconfig/sdraw/ui.po10
-rw-r--r--source/el/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/el/sdext/source/minimizer.po2
-rw-r--r--source/el/sdext/source/minimizer/registry/data/org/openoffice/Office.po11
-rw-r--r--source/el/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po50
-rw-r--r--source/el/setup_native/source/mac.po17
-rw-r--r--source/el/sfx2/source/appl.po64
-rw-r--r--source/el/sfx2/source/bastyp.po2
-rw-r--r--source/el/sfx2/source/control.po25
-rw-r--r--source/el/sfx2/source/dialog.po158
-rw-r--r--source/el/sfx2/source/doc.po174
-rw-r--r--source/el/sfx2/source/menu.po11
-rw-r--r--source/el/sfx2/source/view.po26
-rw-r--r--source/el/sfx2/uiconfig/ui.po8
-rw-r--r--source/el/shell/source/win32/shlxthandler/res.po13
-rw-r--r--source/el/starmath/source.po139
-rw-r--r--source/el/starmath/uiconfig/smath/ui.po10
-rw-r--r--source/el/svl/source/items.po2
-rw-r--r--source/el/svl/source/misc.po73
-rw-r--r--source/el/svtools/source/contnr.po30
-rw-r--r--source/el/svtools/source/control.po35
-rw-r--r--source/el/svtools/source/dialogs.po138
-rw-r--r--source/el/svtools/source/java.po15
-rw-r--r--source/el/svtools/source/misc.po322
-rw-r--r--source/el/svtools/source/toolpanel.po13
-rw-r--r--source/el/svtools/uiconfig/ui.po59
-rw-r--r--source/el/svx/inc.po24
-rw-r--r--source/el/svx/source/accessibility.po26
-rw-r--r--source/el/svx/source/core.po2
-rw-r--r--source/el/svx/source/dialog.po807
-rw-r--r--source/el/svx/source/engine3d.po52
-rw-r--r--source/el/svx/source/fmcomp.po18
-rw-r--r--source/el/svx/source/form.po164
-rw-r--r--source/el/svx/source/gallery2.po42
-rw-r--r--source/el/svx/source/items.po92
-rw-r--r--source/el/svx/source/src.po170
-rw-r--r--source/el/svx/source/stbctrls.po2
-rw-r--r--source/el/svx/source/svdraw.po2
-rw-r--r--source/el/svx/source/table.po2
-rw-r--r--source/el/svx/source/tbxctrls.po2
-rw-r--r--source/el/svx/source/toolbars.po2
-rw-r--r--source/el/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/el/svx/uiconfig/ui.po206
-rw-r--r--source/el/sw/source/core/layout.po2
-rw-r--r--source/el/sw/source/core/undo.po2
-rw-r--r--source/el/sw/source/core/unocore.po2
-rw-r--r--source/el/sw/source/ui/app.po4
-rw-r--r--source/el/sw/source/ui/chrdlg.po2
-rw-r--r--source/el/sw/source/ui/config.po2
-rw-r--r--source/el/sw/source/ui/dbui.po2
-rw-r--r--source/el/sw/source/ui/dialog.po2
-rw-r--r--source/el/sw/source/ui/dochdl.po2
-rw-r--r--source/el/sw/source/ui/docvw.po2
-rw-r--r--source/el/sw/source/ui/envelp.po2
-rw-r--r--source/el/sw/source/ui/fldui.po2
-rw-r--r--source/el/sw/source/ui/fmtui.po2
-rw-r--r--source/el/sw/source/ui/frmdlg.po2
-rw-r--r--source/el/sw/source/ui/globdoc.po2
-rw-r--r--source/el/sw/source/ui/index.po2
-rw-r--r--source/el/sw/source/ui/lingu.po2
-rw-r--r--source/el/sw/source/ui/misc.po2
-rw-r--r--source/el/sw/source/ui/ribbar.po2
-rw-r--r--source/el/sw/source/ui/shells.po2
-rw-r--r--source/el/sw/source/ui/smartmenu.po2
-rw-r--r--source/el/sw/source/ui/table.po2
-rw-r--r--source/el/sw/source/ui/uiview.po2
-rw-r--r--source/el/sw/source/ui/utlui.po2
-rw-r--r--source/el/sw/source/ui/web.po2
-rw-r--r--source/el/sw/source/ui/wrtsh.po2
-rw-r--r--source/el/sw/uiconfig/sw/ui.po278
-rw-r--r--source/el/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/el/swext/mediawiki/help.po2
-rw-r--r--source/el/swext/mediawiki/src.po2
-rw-r--r--source/el/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/el/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/el/sysui/desktop/share.po2
-rw-r--r--source/el/tubes/uiconfig/ui.po2
-rw-r--r--source/el/uui/source.po2
-rw-r--r--source/el/vcl/qa/cppunit/builder.po2
-rw-r--r--source/el/vcl/source/edit.po2
-rw-r--r--source/el/vcl/source/src.po2
-rw-r--r--source/el/vcl/uiconfig/ui.po2
-rw-r--r--source/el/wizards/source/euro.po2
-rw-r--r--source/el/wizards/source/formwizard.po2
-rw-r--r--source/el/wizards/source/importwizard.po2
-rw-r--r--source/el/wizards/source/template.po2
-rw-r--r--source/el/xmlsecurity/source/component.po2
-rw-r--r--source/el/xmlsecurity/source/dialogs.po2
-rw-r--r--source/en-GB/accessibility/source/helper.po2
-rw-r--r--source/en-GB/android/sdremote/res/values.po2
-rw-r--r--source/en-GB/avmedia/source/framework.po2
-rw-r--r--source/en-GB/avmedia/source/viewer.po2
-rw-r--r--source/en-GB/basctl/source/basicide.po2
-rw-r--r--source/en-GB/basctl/source/dlged.po2
-rw-r--r--source/en-GB/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/en-GB/basic/source/classes.po2
-rw-r--r--source/en-GB/basic/source/sbx.po2
-rw-r--r--source/en-GB/chart2/source/controller/dialogs.po2
-rw-r--r--source/en-GB/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/connectivity/source/resource.po2
-rw-r--r--source/en-GB/cui/source/customize.po2
-rw-r--r--source/en-GB/cui/source/dialogs.po2
-rw-r--r--source/en-GB/cui/source/options.po4
-rw-r--r--source/en-GB/cui/source/tabpages.po2
-rw-r--r--source/en-GB/cui/uiconfig/ui.po4
-rw-r--r--source/en-GB/dbaccess/source/core/resource.po2
-rw-r--r--source/en-GB/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/en-GB/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/en-GB/dbaccess/source/ui/app.po2
-rw-r--r--source/en-GB/dbaccess/source/ui/browser.po2
-rw-r--r--source/en-GB/dbaccess/source/ui/control.po2
-rw-r--r--source/en-GB/dbaccess/source/ui/dlg.po2
-rw-r--r--source/en-GB/dbaccess/source/ui/inc.po2
-rw-r--r--source/en-GB/dbaccess/source/ui/misc.po2
-rw-r--r--source/en-GB/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/en-GB/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/en-GB/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/en-GB/dbaccess/source/ui/uno.po2
-rw-r--r--source/en-GB/desktop/source/app.po2
-rw-r--r--source/en-GB/desktop/source/deployment/gui.po2
-rw-r--r--source/en-GB/desktop/source/deployment/manager.po2
-rw-r--r--source/en-GB/desktop/source/deployment/misc.po2
-rw-r--r--source/en-GB/desktop/source/deployment/registry.po2
-rw-r--r--source/en-GB/desktop/source/deployment/registry/component.po2
-rw-r--r--source/en-GB/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/en-GB/desktop/source/deployment/registry/help.po2
-rw-r--r--source/en-GB/desktop/source/deployment/registry/package.po2
-rw-r--r--source/en-GB/desktop/source/deployment/registry/script.po2
-rw-r--r--source/en-GB/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/en-GB/desktop/source/deployment/unopkg.po2
-rw-r--r--source/en-GB/desktop/uiconfig/ui.po2
-rw-r--r--source/en-GB/dictionaries/af_ZA.po2
-rw-r--r--source/en-GB/dictionaries/an_ES.po2
-rw-r--r--source/en-GB/dictionaries/ar.po2
-rw-r--r--source/en-GB/dictionaries/be_BY.po2
-rw-r--r--source/en-GB/dictionaries/bg_BG.po2
-rw-r--r--source/en-GB/dictionaries/bn_BD.po2
-rw-r--r--source/en-GB/dictionaries/br_FR.po2
-rw-r--r--source/en-GB/dictionaries/ca.po2
-rw-r--r--source/en-GB/dictionaries/cs_CZ.po2
-rw-r--r--source/en-GB/dictionaries/da_DK.po2
-rw-r--r--source/en-GB/dictionaries/de.po2
-rw-r--r--source/en-GB/dictionaries/el_GR.po2
-rw-r--r--source/en-GB/dictionaries/en.po2
-rw-r--r--source/en-GB/dictionaries/en/dialog.po2
-rw-r--r--source/en-GB/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-GB/dictionaries/es.po2
-rw-r--r--source/en-GB/dictionaries/et_EE.po2
-rw-r--r--source/en-GB/dictionaries/fr_FR.po2
-rw-r--r--source/en-GB/dictionaries/gd_GB.po2
-rw-r--r--source/en-GB/dictionaries/gl.po2
-rw-r--r--source/en-GB/dictionaries/gu_IN.po2
-rw-r--r--source/en-GB/dictionaries/he_IL.po2
-rw-r--r--source/en-GB/dictionaries/hi_IN.po2
-rw-r--r--source/en-GB/dictionaries/hr_HR.po2
-rw-r--r--source/en-GB/dictionaries/hu_HU.po2
-rw-r--r--source/en-GB/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/en-GB/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-GB/dictionaries/it_IT.po2
-rw-r--r--source/en-GB/dictionaries/ku_TR.po2
-rw-r--r--source/en-GB/dictionaries/lt_LT.po2
-rw-r--r--source/en-GB/dictionaries/lv_LV.po2
-rw-r--r--source/en-GB/dictionaries/ne_NP.po2
-rw-r--r--source/en-GB/dictionaries/nl_NL.po2
-rw-r--r--source/en-GB/dictionaries/no.po2
-rw-r--r--source/en-GB/dictionaries/oc_FR.po2
-rw-r--r--source/en-GB/dictionaries/pl_PL.po2
-rw-r--r--source/en-GB/dictionaries/pt_BR.po2
-rw-r--r--source/en-GB/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/en-GB/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-GB/dictionaries/pt_PT.po2
-rw-r--r--source/en-GB/dictionaries/ro.po2
-rw-r--r--source/en-GB/dictionaries/ru_RU.po2
-rw-r--r--source/en-GB/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/en-GB/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-GB/dictionaries/si_LK.po2
-rw-r--r--source/en-GB/dictionaries/sk_SK.po2
-rw-r--r--source/en-GB/dictionaries/sl_SI.po2
-rw-r--r--source/en-GB/dictionaries/sr.po2
-rw-r--r--source/en-GB/dictionaries/sv_SE.po2
-rw-r--r--source/en-GB/dictionaries/sw_TZ.po2
-rw-r--r--source/en-GB/dictionaries/te_IN.po2
-rw-r--r--source/en-GB/dictionaries/th_TH.po2
-rw-r--r--source/en-GB/dictionaries/uk_UA.po2
-rw-r--r--source/en-GB/dictionaries/vi.po2
-rw-r--r--source/en-GB/dictionaries/zu_ZA.po2
-rw-r--r--source/en-GB/editeng/source/accessibility.po2
-rw-r--r--source/en-GB/editeng/source/editeng.po2
-rw-r--r--source/en-GB/editeng/source/items.po2
-rw-r--r--source/en-GB/editeng/source/misc.po2
-rw-r--r--source/en-GB/editeng/source/outliner.po2
-rw-r--r--source/en-GB/extensions/source/abpilot.po2
-rw-r--r--source/en-GB/extensions/source/bibliography.po2
-rw-r--r--source/en-GB/extensions/source/dbpilots.po2
-rw-r--r--source/en-GB/extensions/source/propctrlr.po2
-rw-r--r--source/en-GB/extensions/source/scanner.po2
-rw-r--r--source/en-GB/extensions/source/update/check.po2
-rw-r--r--source/en-GB/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/en-GB/filter/source/config/fragments/filters.po2
-rw-r--r--source/en-GB/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/en-GB/filter/source/config/fragments/types.po2
-rw-r--r--source/en-GB/filter/source/flash.po2
-rw-r--r--source/en-GB/filter/source/graphicfilter/eps.po2
-rw-r--r--source/en-GB/filter/source/pdf.po2
-rw-r--r--source/en-GB/filter/source/t602.po2
-rw-r--r--source/en-GB/filter/source/xsltdialog.po2
-rw-r--r--source/en-GB/filter/uiconfig/ui.po2
-rw-r--r--source/en-GB/forms/source/resource.po2
-rw-r--r--source/en-GB/formula/source/core/resource.po38
-rw-r--r--source/en-GB/formula/source/ui/dlg.po2
-rw-r--r--source/en-GB/fpicker/source/office.po2
-rw-r--r--source/en-GB/framework/source/classes.po2
-rw-r--r--source/en-GB/framework/source/services.po2
-rw-r--r--source/en-GB/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/en-GB/librelogo/source/pythonpath.po2
-rw-r--r--source/en-GB/mysqlc/source.po2
-rw-r--r--source/en-GB/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-GB/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/en-GB/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/en-GB/nlpsolver/src/locale.po2
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/en-GB/padmin/source.po4
-rw-r--r--source/en-GB/readlicense_oo/docs.po2
-rw-r--r--source/en-GB/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/en-GB/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-GB/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/en-GB/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/en-GB/reportbuilder/util.po2
-rw-r--r--source/en-GB/reportdesign/source/core/resource.po2
-rw-r--r--source/en-GB/reportdesign/source/ui/dlg.po2
-rw-r--r--source/en-GB/reportdesign/source/ui/inspection.po2
-rw-r--r--source/en-GB/reportdesign/source/ui/report.po2
-rw-r--r--source/en-GB/sc/source/core/src.po2
-rw-r--r--source/en-GB/sc/source/ui/cctrl.po2
-rw-r--r--source/en-GB/sc/source/ui/dbgui.po2
-rw-r--r--source/en-GB/sc/source/ui/docshell.po2
-rw-r--r--source/en-GB/sc/source/ui/drawfunc.po2
-rw-r--r--source/en-GB/sc/source/ui/formdlg.po2
-rw-r--r--source/en-GB/sc/source/ui/miscdlgs.po2
-rw-r--r--source/en-GB/sc/source/ui/navipi.po2
-rw-r--r--source/en-GB/sc/source/ui/optdlg.po2
-rw-r--r--source/en-GB/sc/source/ui/pagedlg.po2
-rw-r--r--source/en-GB/sc/source/ui/src.po384
-rw-r--r--source/en-GB/sc/source/ui/styleui.po4
-rw-r--r--source/en-GB/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/en-GB/scaddins/source/analysis.po2
-rw-r--r--source/en-GB/scaddins/source/datefunc.po2
-rw-r--r--source/en-GB/scaddins/source/pricing.po4
-rw-r--r--source/en-GB/sccomp/source/solver.po2
-rw-r--r--source/en-GB/scp2/source/accessories.po2
-rw-r--r--source/en-GB/scp2/source/activex.po2
-rw-r--r--source/en-GB/scp2/source/base.po2
-rw-r--r--source/en-GB/scp2/source/calc.po2
-rw-r--r--source/en-GB/scp2/source/draw.po2
-rw-r--r--source/en-GB/scp2/source/extensions.po2
-rw-r--r--source/en-GB/scp2/source/gnome.po2
-rw-r--r--source/en-GB/scp2/source/graphicfilter.po2
-rw-r--r--source/en-GB/scp2/source/impress.po2
-rw-r--r--source/en-GB/scp2/source/javafilter.po2
-rw-r--r--source/en-GB/scp2/source/kde.po2
-rw-r--r--source/en-GB/scp2/source/math.po2
-rw-r--r--source/en-GB/scp2/source/onlineupdate.po2
-rw-r--r--source/en-GB/scp2/source/ooo.po4
-rw-r--r--source/en-GB/scp2/source/python.po18
-rw-r--r--source/en-GB/scp2/source/quickstart.po2
-rw-r--r--source/en-GB/scp2/source/sdkoo.po2
-rw-r--r--source/en-GB/scp2/source/smoketest.po2
-rw-r--r--source/en-GB/scp2/source/stdlibs.po2
-rw-r--r--source/en-GB/scp2/source/tde.po2
-rw-r--r--source/en-GB/scp2/source/winexplorerext.po2
-rw-r--r--source/en-GB/scp2/source/writer.po2
-rw-r--r--source/en-GB/scp2/source/xsltfilter.po2
-rw-r--r--source/en-GB/sd/source/core.po2
-rw-r--r--source/en-GB/sd/source/filter/html.po2
-rw-r--r--source/en-GB/sd/source/ui/accessibility.po2
-rw-r--r--source/en-GB/sd/source/ui/animations.po2
-rw-r--r--source/en-GB/sd/source/ui/annotations.po2
-rw-r--r--source/en-GB/sd/source/ui/app.po4
-rw-r--r--source/en-GB/sd/source/ui/dlg.po2
-rw-r--r--source/en-GB/sd/source/ui/slideshow.po2
-rw-r--r--source/en-GB/sd/source/ui/table.po2
-rw-r--r--source/en-GB/sd/source/ui/view.po2
-rw-r--r--source/en-GB/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/en-GB/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/en-GB/sdext/source/minimizer.po2
-rw-r--r--source/en-GB/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-GB/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/en-GB/setup_native/source/mac.po2
-rw-r--r--source/en-GB/sfx2/source/appl.po2
-rw-r--r--source/en-GB/sfx2/source/bastyp.po2
-rw-r--r--source/en-GB/sfx2/source/control.po23
-rw-r--r--source/en-GB/sfx2/source/dialog.po48
-rw-r--r--source/en-GB/sfx2/source/doc.po126
-rw-r--r--source/en-GB/sfx2/source/menu.po2
-rw-r--r--source/en-GB/sfx2/source/view.po2
-rw-r--r--source/en-GB/sfx2/uiconfig/ui.po4
-rw-r--r--source/en-GB/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/en-GB/starmath/source.po2
-rw-r--r--source/en-GB/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/en-GB/svl/source/items.po2
-rw-r--r--source/en-GB/svl/source/misc.po2
-rw-r--r--source/en-GB/svtools/source/contnr.po2
-rw-r--r--source/en-GB/svtools/source/control.po2
-rw-r--r--source/en-GB/svtools/source/dialogs.po2
-rw-r--r--source/en-GB/svtools/source/java.po2
-rw-r--r--source/en-GB/svtools/source/misc.po4
-rw-r--r--source/en-GB/svtools/source/toolpanel.po2
-rw-r--r--source/en-GB/svtools/uiconfig/ui.po51
-rw-r--r--source/en-GB/svx/inc.po4
-rw-r--r--source/en-GB/svx/source/accessibility.po2
-rw-r--r--source/en-GB/svx/source/core.po2
-rw-r--r--source/en-GB/svx/source/dialog.po217
-rw-r--r--source/en-GB/svx/source/engine3d.po2
-rw-r--r--source/en-GB/svx/source/fmcomp.po2
-rw-r--r--source/en-GB/svx/source/form.po2
-rw-r--r--source/en-GB/svx/source/gallery2.po2
-rw-r--r--source/en-GB/svx/source/items.po2
-rw-r--r--source/en-GB/svx/source/src.po2
-rw-r--r--source/en-GB/svx/source/stbctrls.po2
-rw-r--r--source/en-GB/svx/source/svdraw.po2
-rw-r--r--source/en-GB/svx/source/table.po2
-rw-r--r--source/en-GB/svx/source/tbxctrls.po2
-rw-r--r--source/en-GB/svx/source/toolbars.po2
-rw-r--r--source/en-GB/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/en-GB/svx/uiconfig/ui.po204
-rw-r--r--source/en-GB/sw/source/core/layout.po2
-rw-r--r--source/en-GB/sw/source/core/undo.po2
-rw-r--r--source/en-GB/sw/source/core/unocore.po2
-rw-r--r--source/en-GB/sw/source/ui/app.po4
-rw-r--r--source/en-GB/sw/source/ui/chrdlg.po2
-rw-r--r--source/en-GB/sw/source/ui/config.po2
-rw-r--r--source/en-GB/sw/source/ui/dbui.po2
-rw-r--r--source/en-GB/sw/source/ui/dialog.po2
-rw-r--r--source/en-GB/sw/source/ui/dochdl.po2
-rw-r--r--source/en-GB/sw/source/ui/docvw.po2
-rw-r--r--source/en-GB/sw/source/ui/envelp.po2
-rw-r--r--source/en-GB/sw/source/ui/fldui.po2
-rw-r--r--source/en-GB/sw/source/ui/fmtui.po2
-rw-r--r--source/en-GB/sw/source/ui/frmdlg.po2
-rw-r--r--source/en-GB/sw/source/ui/globdoc.po2
-rw-r--r--source/en-GB/sw/source/ui/index.po2
-rw-r--r--source/en-GB/sw/source/ui/lingu.po2
-rw-r--r--source/en-GB/sw/source/ui/misc.po2
-rw-r--r--source/en-GB/sw/source/ui/ribbar.po2
-rw-r--r--source/en-GB/sw/source/ui/shells.po2
-rw-r--r--source/en-GB/sw/source/ui/smartmenu.po2
-rw-r--r--source/en-GB/sw/source/ui/table.po2
-rw-r--r--source/en-GB/sw/source/ui/uiview.po2
-rw-r--r--source/en-GB/sw/source/ui/utlui.po2
-rw-r--r--source/en-GB/sw/source/ui/web.po2
-rw-r--r--source/en-GB/sw/source/ui/wrtsh.po2
-rw-r--r--source/en-GB/sw/uiconfig/sw/ui.po278
-rw-r--r--source/en-GB/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/en-GB/swext/mediawiki/help.po2
-rw-r--r--source/en-GB/swext/mediawiki/src.po2
-rw-r--r--source/en-GB/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-GB/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/en-GB/sysui/desktop/share.po2
-rw-r--r--source/en-GB/tubes/uiconfig/ui.po2
-rw-r--r--source/en-GB/uui/source.po2
-rw-r--r--source/en-GB/vcl/qa/cppunit/builder.po2
-rw-r--r--source/en-GB/vcl/source/edit.po2
-rw-r--r--source/en-GB/vcl/source/src.po2
-rw-r--r--source/en-GB/vcl/uiconfig/ui.po2
-rw-r--r--source/en-GB/wizards/source/euro.po2
-rw-r--r--source/en-GB/wizards/source/formwizard.po2
-rw-r--r--source/en-GB/wizards/source/importwizard.po2
-rw-r--r--source/en-GB/wizards/source/template.po2
-rw-r--r--source/en-GB/xmlsecurity/source/component.po2
-rw-r--r--source/en-GB/xmlsecurity/source/dialogs.po2
-rw-r--r--source/en-ZA/accessibility/source/helper.po2
-rw-r--r--source/en-ZA/android/sdremote/res/values.po2
-rw-r--r--source/en-ZA/avmedia/source/framework.po2
-rw-r--r--source/en-ZA/avmedia/source/viewer.po2
-rw-r--r--source/en-ZA/basctl/source/basicide.po2
-rw-r--r--source/en-ZA/basctl/source/dlged.po2
-rw-r--r--source/en-ZA/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/en-ZA/basic/source/classes.po2
-rw-r--r--source/en-ZA/basic/source/sbx.po2
-rw-r--r--source/en-ZA/chart2/source/controller/dialogs.po2
-rw-r--r--source/en-ZA/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/connectivity/source/resource.po2
-rw-r--r--source/en-ZA/cui/source/customize.po2
-rw-r--r--source/en-ZA/cui/source/dialogs.po2
-rw-r--r--source/en-ZA/cui/source/options.po2
-rw-r--r--source/en-ZA/cui/source/tabpages.po2
-rw-r--r--source/en-ZA/cui/uiconfig/ui.po2
-rw-r--r--source/en-ZA/dbaccess/source/core/resource.po2
-rw-r--r--source/en-ZA/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/en-ZA/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/en-ZA/dbaccess/source/ui/app.po2
-rw-r--r--source/en-ZA/dbaccess/source/ui/browser.po2
-rw-r--r--source/en-ZA/dbaccess/source/ui/control.po2
-rw-r--r--source/en-ZA/dbaccess/source/ui/dlg.po2
-rw-r--r--source/en-ZA/dbaccess/source/ui/inc.po2
-rw-r--r--source/en-ZA/dbaccess/source/ui/misc.po2
-rw-r--r--source/en-ZA/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/en-ZA/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/en-ZA/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/en-ZA/dbaccess/source/ui/uno.po2
-rw-r--r--source/en-ZA/desktop/source/app.po2
-rw-r--r--source/en-ZA/desktop/source/deployment/gui.po2
-rw-r--r--source/en-ZA/desktop/source/deployment/manager.po2
-rw-r--r--source/en-ZA/desktop/source/deployment/misc.po2
-rw-r--r--source/en-ZA/desktop/source/deployment/registry.po2
-rw-r--r--source/en-ZA/desktop/source/deployment/registry/component.po2
-rw-r--r--source/en-ZA/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/en-ZA/desktop/source/deployment/registry/help.po2
-rw-r--r--source/en-ZA/desktop/source/deployment/registry/package.po2
-rw-r--r--source/en-ZA/desktop/source/deployment/registry/script.po2
-rw-r--r--source/en-ZA/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/en-ZA/desktop/source/deployment/unopkg.po2
-rw-r--r--source/en-ZA/desktop/uiconfig/ui.po2
-rw-r--r--source/en-ZA/dictionaries/af_ZA.po2
-rw-r--r--source/en-ZA/dictionaries/an_ES.po2
-rw-r--r--source/en-ZA/dictionaries/ar.po2
-rw-r--r--source/en-ZA/dictionaries/be_BY.po2
-rw-r--r--source/en-ZA/dictionaries/bg_BG.po2
-rw-r--r--source/en-ZA/dictionaries/bn_BD.po2
-rw-r--r--source/en-ZA/dictionaries/br_FR.po2
-rw-r--r--source/en-ZA/dictionaries/ca.po2
-rw-r--r--source/en-ZA/dictionaries/cs_CZ.po2
-rw-r--r--source/en-ZA/dictionaries/da_DK.po2
-rw-r--r--source/en-ZA/dictionaries/de.po2
-rw-r--r--source/en-ZA/dictionaries/el_GR.po2
-rw-r--r--source/en-ZA/dictionaries/en.po2
-rw-r--r--source/en-ZA/dictionaries/en/dialog.po2
-rw-r--r--source/en-ZA/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-ZA/dictionaries/es.po2
-rw-r--r--source/en-ZA/dictionaries/et_EE.po2
-rw-r--r--source/en-ZA/dictionaries/fr_FR.po2
-rw-r--r--source/en-ZA/dictionaries/gd_GB.po2
-rw-r--r--source/en-ZA/dictionaries/gl.po2
-rw-r--r--source/en-ZA/dictionaries/gu_IN.po2
-rw-r--r--source/en-ZA/dictionaries/he_IL.po2
-rw-r--r--source/en-ZA/dictionaries/hi_IN.po2
-rw-r--r--source/en-ZA/dictionaries/hr_HR.po2
-rw-r--r--source/en-ZA/dictionaries/hu_HU.po2
-rw-r--r--source/en-ZA/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/en-ZA/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-ZA/dictionaries/it_IT.po2
-rw-r--r--source/en-ZA/dictionaries/ku_TR.po2
-rw-r--r--source/en-ZA/dictionaries/lt_LT.po2
-rw-r--r--source/en-ZA/dictionaries/lv_LV.po2
-rw-r--r--source/en-ZA/dictionaries/ne_NP.po2
-rw-r--r--source/en-ZA/dictionaries/nl_NL.po2
-rw-r--r--source/en-ZA/dictionaries/no.po2
-rw-r--r--source/en-ZA/dictionaries/oc_FR.po2
-rw-r--r--source/en-ZA/dictionaries/pl_PL.po2
-rw-r--r--source/en-ZA/dictionaries/pt_BR.po2
-rw-r--r--source/en-ZA/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/en-ZA/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-ZA/dictionaries/pt_PT.po2
-rw-r--r--source/en-ZA/dictionaries/ro.po2
-rw-r--r--source/en-ZA/dictionaries/ru_RU.po2
-rw-r--r--source/en-ZA/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/en-ZA/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-ZA/dictionaries/si_LK.po2
-rw-r--r--source/en-ZA/dictionaries/sk_SK.po2
-rw-r--r--source/en-ZA/dictionaries/sl_SI.po2
-rw-r--r--source/en-ZA/dictionaries/sr.po2
-rw-r--r--source/en-ZA/dictionaries/sv_SE.po2
-rw-r--r--source/en-ZA/dictionaries/sw_TZ.po2
-rw-r--r--source/en-ZA/dictionaries/te_IN.po2
-rw-r--r--source/en-ZA/dictionaries/th_TH.po2
-rw-r--r--source/en-ZA/dictionaries/uk_UA.po2
-rw-r--r--source/en-ZA/dictionaries/vi.po2
-rw-r--r--source/en-ZA/dictionaries/zu_ZA.po2
-rw-r--r--source/en-ZA/editeng/source/accessibility.po2
-rw-r--r--source/en-ZA/editeng/source/editeng.po2
-rw-r--r--source/en-ZA/editeng/source/items.po2
-rw-r--r--source/en-ZA/editeng/source/misc.po2
-rw-r--r--source/en-ZA/editeng/source/outliner.po2
-rw-r--r--source/en-ZA/extensions/source/abpilot.po2
-rw-r--r--source/en-ZA/extensions/source/bibliography.po2
-rw-r--r--source/en-ZA/extensions/source/dbpilots.po2
-rw-r--r--source/en-ZA/extensions/source/propctrlr.po2
-rw-r--r--source/en-ZA/extensions/source/scanner.po2
-rw-r--r--source/en-ZA/extensions/source/update/check.po2
-rw-r--r--source/en-ZA/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/en-ZA/filter/source/config/fragments/filters.po2
-rw-r--r--source/en-ZA/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/en-ZA/filter/source/config/fragments/types.po2
-rw-r--r--source/en-ZA/filter/source/flash.po2
-rw-r--r--source/en-ZA/filter/source/graphicfilter/eps.po2
-rw-r--r--source/en-ZA/filter/source/pdf.po2
-rw-r--r--source/en-ZA/filter/source/t602.po2
-rw-r--r--source/en-ZA/filter/source/xsltdialog.po2
-rw-r--r--source/en-ZA/filter/uiconfig/ui.po2
-rw-r--r--source/en-ZA/forms/source/resource.po2
-rw-r--r--source/en-ZA/formula/source/core/resource.po38
-rw-r--r--source/en-ZA/formula/source/ui/dlg.po2
-rw-r--r--source/en-ZA/fpicker/source/office.po2
-rw-r--r--source/en-ZA/framework/source/classes.po2
-rw-r--r--source/en-ZA/framework/source/services.po2
-rw-r--r--source/en-ZA/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/en-ZA/librelogo/source/pythonpath.po2
-rw-r--r--source/en-ZA/mysqlc/source.po2
-rw-r--r--source/en-ZA/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/en-ZA/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/en-ZA/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/en-ZA/nlpsolver/src/locale.po2
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/en-ZA/padmin/source.po2
-rw-r--r--source/en-ZA/readlicense_oo/docs.po2
-rw-r--r--source/en-ZA/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/en-ZA/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-ZA/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/en-ZA/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/en-ZA/reportbuilder/util.po2
-rw-r--r--source/en-ZA/reportdesign/source/core/resource.po2
-rw-r--r--source/en-ZA/reportdesign/source/ui/dlg.po2
-rw-r--r--source/en-ZA/reportdesign/source/ui/inspection.po2
-rw-r--r--source/en-ZA/reportdesign/source/ui/report.po2
-rw-r--r--source/en-ZA/sc/source/core/src.po2
-rw-r--r--source/en-ZA/sc/source/ui/cctrl.po2
-rw-r--r--source/en-ZA/sc/source/ui/dbgui.po2
-rw-r--r--source/en-ZA/sc/source/ui/docshell.po2
-rw-r--r--source/en-ZA/sc/source/ui/drawfunc.po2
-rw-r--r--source/en-ZA/sc/source/ui/formdlg.po2
-rw-r--r--source/en-ZA/sc/source/ui/miscdlgs.po2
-rw-r--r--source/en-ZA/sc/source/ui/navipi.po2
-rw-r--r--source/en-ZA/sc/source/ui/optdlg.po2
-rw-r--r--source/en-ZA/sc/source/ui/pagedlg.po2
-rw-r--r--source/en-ZA/sc/source/ui/src.po379
-rw-r--r--source/en-ZA/sc/source/ui/styleui.po2
-rw-r--r--source/en-ZA/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/en-ZA/scaddins/source/analysis.po2
-rw-r--r--source/en-ZA/scaddins/source/datefunc.po2
-rw-r--r--source/en-ZA/scaddins/source/pricing.po2
-rw-r--r--source/en-ZA/sccomp/source/solver.po2
-rw-r--r--source/en-ZA/scp2/source/accessories.po2
-rw-r--r--source/en-ZA/scp2/source/activex.po2
-rw-r--r--source/en-ZA/scp2/source/base.po2
-rw-r--r--source/en-ZA/scp2/source/calc.po2
-rw-r--r--source/en-ZA/scp2/source/draw.po2
-rw-r--r--source/en-ZA/scp2/source/extensions.po2
-rw-r--r--source/en-ZA/scp2/source/gnome.po2
-rw-r--r--source/en-ZA/scp2/source/graphicfilter.po2
-rw-r--r--source/en-ZA/scp2/source/impress.po2
-rw-r--r--source/en-ZA/scp2/source/javafilter.po2
-rw-r--r--source/en-ZA/scp2/source/kde.po2
-rw-r--r--source/en-ZA/scp2/source/math.po2
-rw-r--r--source/en-ZA/scp2/source/onlineupdate.po2
-rw-r--r--source/en-ZA/scp2/source/ooo.po2
-rw-r--r--source/en-ZA/scp2/source/python.po18
-rw-r--r--source/en-ZA/scp2/source/quickstart.po2
-rw-r--r--source/en-ZA/scp2/source/sdkoo.po2
-rw-r--r--source/en-ZA/scp2/source/smoketest.po2
-rw-r--r--source/en-ZA/scp2/source/stdlibs.po2
-rw-r--r--source/en-ZA/scp2/source/tde.po2
-rw-r--r--source/en-ZA/scp2/source/winexplorerext.po2
-rw-r--r--source/en-ZA/scp2/source/writer.po2
-rw-r--r--source/en-ZA/scp2/source/xsltfilter.po2
-rw-r--r--source/en-ZA/sd/source/core.po2
-rw-r--r--source/en-ZA/sd/source/filter/html.po2
-rw-r--r--source/en-ZA/sd/source/ui/accessibility.po2
-rw-r--r--source/en-ZA/sd/source/ui/animations.po2
-rw-r--r--source/en-ZA/sd/source/ui/annotations.po2
-rw-r--r--source/en-ZA/sd/source/ui/app.po2
-rw-r--r--source/en-ZA/sd/source/ui/dlg.po2
-rw-r--r--source/en-ZA/sd/source/ui/slideshow.po2
-rw-r--r--source/en-ZA/sd/source/ui/table.po2
-rw-r--r--source/en-ZA/sd/source/ui/view.po2
-rw-r--r--source/en-ZA/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/en-ZA/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/en-ZA/sdext/source/minimizer.po2
-rw-r--r--source/en-ZA/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-ZA/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/en-ZA/setup_native/source/mac.po2
-rw-r--r--source/en-ZA/sfx2/source/appl.po2
-rw-r--r--source/en-ZA/sfx2/source/bastyp.po2
-rw-r--r--source/en-ZA/sfx2/source/control.po23
-rw-r--r--source/en-ZA/sfx2/source/dialog.po46
-rw-r--r--source/en-ZA/sfx2/source/doc.po126
-rw-r--r--source/en-ZA/sfx2/source/menu.po2
-rw-r--r--source/en-ZA/sfx2/source/view.po2
-rw-r--r--source/en-ZA/sfx2/uiconfig/ui.po2
-rw-r--r--source/en-ZA/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/en-ZA/starmath/source.po2
-rw-r--r--source/en-ZA/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/en-ZA/svl/source/items.po2
-rw-r--r--source/en-ZA/svl/source/misc.po2
-rw-r--r--source/en-ZA/svtools/source/contnr.po2
-rw-r--r--source/en-ZA/svtools/source/control.po2
-rw-r--r--source/en-ZA/svtools/source/dialogs.po2
-rw-r--r--source/en-ZA/svtools/source/java.po2
-rw-r--r--source/en-ZA/svtools/source/misc.po2
-rw-r--r--source/en-ZA/svtools/source/toolpanel.po2
-rw-r--r--source/en-ZA/svtools/uiconfig/ui.po55
-rw-r--r--source/en-ZA/svx/inc.po2
-rw-r--r--source/en-ZA/svx/source/accessibility.po2
-rw-r--r--source/en-ZA/svx/source/core.po2
-rw-r--r--source/en-ZA/svx/source/dialog.po224
-rw-r--r--source/en-ZA/svx/source/engine3d.po2
-rw-r--r--source/en-ZA/svx/source/fmcomp.po2
-rw-r--r--source/en-ZA/svx/source/form.po2
-rw-r--r--source/en-ZA/svx/source/gallery2.po2
-rw-r--r--source/en-ZA/svx/source/items.po2
-rw-r--r--source/en-ZA/svx/source/src.po2
-rw-r--r--source/en-ZA/svx/source/stbctrls.po2
-rw-r--r--source/en-ZA/svx/source/svdraw.po2
-rw-r--r--source/en-ZA/svx/source/table.po2
-rw-r--r--source/en-ZA/svx/source/tbxctrls.po2
-rw-r--r--source/en-ZA/svx/source/toolbars.po2
-rw-r--r--source/en-ZA/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/en-ZA/svx/uiconfig/ui.po204
-rw-r--r--source/en-ZA/sw/source/core/layout.po2
-rw-r--r--source/en-ZA/sw/source/core/undo.po2
-rw-r--r--source/en-ZA/sw/source/core/unocore.po2
-rw-r--r--source/en-ZA/sw/source/ui/app.po2
-rw-r--r--source/en-ZA/sw/source/ui/chrdlg.po2
-rw-r--r--source/en-ZA/sw/source/ui/config.po2
-rw-r--r--source/en-ZA/sw/source/ui/dbui.po2
-rw-r--r--source/en-ZA/sw/source/ui/dialog.po2
-rw-r--r--source/en-ZA/sw/source/ui/dochdl.po2
-rw-r--r--source/en-ZA/sw/source/ui/docvw.po2
-rw-r--r--source/en-ZA/sw/source/ui/envelp.po2
-rw-r--r--source/en-ZA/sw/source/ui/fldui.po2
-rw-r--r--source/en-ZA/sw/source/ui/fmtui.po2
-rw-r--r--source/en-ZA/sw/source/ui/frmdlg.po2
-rw-r--r--source/en-ZA/sw/source/ui/globdoc.po2
-rw-r--r--source/en-ZA/sw/source/ui/index.po2
-rw-r--r--source/en-ZA/sw/source/ui/lingu.po2
-rw-r--r--source/en-ZA/sw/source/ui/misc.po2
-rw-r--r--source/en-ZA/sw/source/ui/ribbar.po2
-rw-r--r--source/en-ZA/sw/source/ui/shells.po2
-rw-r--r--source/en-ZA/sw/source/ui/smartmenu.po2
-rw-r--r--source/en-ZA/sw/source/ui/table.po2
-rw-r--r--source/en-ZA/sw/source/ui/uiview.po2
-rw-r--r--source/en-ZA/sw/source/ui/utlui.po2
-rw-r--r--source/en-ZA/sw/source/ui/web.po2
-rw-r--r--source/en-ZA/sw/source/ui/wrtsh.po2
-rw-r--r--source/en-ZA/sw/uiconfig/sw/ui.po282
-rw-r--r--source/en-ZA/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/en-ZA/swext/mediawiki/help.po2
-rw-r--r--source/en-ZA/swext/mediawiki/src.po2
-rw-r--r--source/en-ZA/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/en-ZA/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/en-ZA/sysui/desktop/share.po2
-rw-r--r--source/en-ZA/tubes/uiconfig/ui.po2
-rw-r--r--source/en-ZA/uui/source.po2
-rw-r--r--source/en-ZA/vcl/qa/cppunit/builder.po2
-rw-r--r--source/en-ZA/vcl/source/edit.po2
-rw-r--r--source/en-ZA/vcl/source/src.po2
-rw-r--r--source/en-ZA/vcl/uiconfig/ui.po2
-rw-r--r--source/en-ZA/wizards/source/euro.po2
-rw-r--r--source/en-ZA/wizards/source/formwizard.po2
-rw-r--r--source/en-ZA/wizards/source/importwizard.po2
-rw-r--r--source/en-ZA/wizards/source/template.po2
-rw-r--r--source/en-ZA/xmlsecurity/source/component.po2
-rw-r--r--source/en-ZA/xmlsecurity/source/dialogs.po2
-rw-r--r--source/eo/accessibility/source/helper.po2
-rw-r--r--source/eo/android/sdremote/res/values.po4
-rw-r--r--source/eo/avmedia/source/framework.po2
-rw-r--r--source/eo/avmedia/source/viewer.po2
-rw-r--r--source/eo/basctl/source/basicide.po2
-rw-r--r--source/eo/basctl/source/dlged.po2
-rw-r--r--source/eo/basctl/uiconfig/basicide/ui.po4
-rw-r--r--source/eo/basic/source/classes.po2
-rw-r--r--source/eo/basic/source/sbx.po2
-rw-r--r--source/eo/chart2/source/controller/dialogs.po2
-rw-r--r--source/eo/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/connectivity/source/resource.po2
-rw-r--r--source/eo/cui/source/customize.po2
-rw-r--r--source/eo/cui/source/dialogs.po2
-rw-r--r--source/eo/cui/source/options.po4
-rw-r--r--source/eo/cui/source/tabpages.po2
-rw-r--r--source/eo/cui/uiconfig/source/customize.po1448
-rw-r--r--source/eo/cui/uiconfig/source/dialogs.po3947
-rw-r--r--source/eo/cui/uiconfig/source/options.po5832
-rw-r--r--source/eo/cui/uiconfig/source/tabpages.po8792
-rw-r--r--source/eo/cui/uiconfig/ui.po18
-rw-r--r--source/eo/cui/uiconfig/uiconfig/ui.po1817
-rw-r--r--source/eo/dbaccess/source/core/resource.po2
-rw-r--r--source/eo/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/eo/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/eo/dbaccess/source/ui/app.po2
-rw-r--r--source/eo/dbaccess/source/ui/browser.po2
-rw-r--r--source/eo/dbaccess/source/ui/control.po2
-rw-r--r--source/eo/dbaccess/source/ui/dlg.po2
-rw-r--r--source/eo/dbaccess/source/ui/inc.po2
-rw-r--r--source/eo/dbaccess/source/ui/misc.po2
-rw-r--r--source/eo/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/eo/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/eo/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/eo/dbaccess/source/ui/uno.po2
-rw-r--r--source/eo/desktop/source/app.po2
-rw-r--r--source/eo/desktop/source/deployment/gui.po2
-rw-r--r--source/eo/desktop/source/deployment/manager.po2
-rw-r--r--source/eo/desktop/source/deployment/misc.po2
-rw-r--r--source/eo/desktop/source/deployment/registry.po2
-rw-r--r--source/eo/desktop/source/deployment/registry/component.po2
-rw-r--r--source/eo/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/eo/desktop/source/deployment/registry/help.po2
-rw-r--r--source/eo/desktop/source/deployment/registry/package.po2
-rw-r--r--source/eo/desktop/source/deployment/registry/script.po2
-rw-r--r--source/eo/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/eo/desktop/source/deployment/unopkg.po2
-rw-r--r--source/eo/desktop/uiconfig/ui.po2
-rw-r--r--source/eo/dictionaries/af_ZA.po2
-rw-r--r--source/eo/dictionaries/an_ES.po2
-rw-r--r--source/eo/dictionaries/ar.po2
-rw-r--r--source/eo/dictionaries/be_BY.po2
-rw-r--r--source/eo/dictionaries/bg_BG.po2
-rw-r--r--source/eo/dictionaries/bn_BD.po2
-rw-r--r--source/eo/dictionaries/br_FR.po2
-rw-r--r--source/eo/dictionaries/ca.po2
-rw-r--r--source/eo/dictionaries/cs_CZ.po2
-rw-r--r--source/eo/dictionaries/da_DK.po2
-rw-r--r--source/eo/dictionaries/de.po2
-rw-r--r--source/eo/dictionaries/el_GR.po2
-rw-r--r--source/eo/dictionaries/en.po2
-rw-r--r--source/eo/dictionaries/en/dialog.po2
-rw-r--r--source/eo/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eo/dictionaries/es.po2
-rw-r--r--source/eo/dictionaries/et_EE.po2
-rw-r--r--source/eo/dictionaries/fr_FR.po2
-rw-r--r--source/eo/dictionaries/gd_GB.po2
-rw-r--r--source/eo/dictionaries/gl.po2
-rw-r--r--source/eo/dictionaries/gu_IN.po2
-rw-r--r--source/eo/dictionaries/he_IL.po2
-rw-r--r--source/eo/dictionaries/hi_IN.po2
-rw-r--r--source/eo/dictionaries/hr_HR.po2
-rw-r--r--source/eo/dictionaries/hu_HU.po2
-rw-r--r--source/eo/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/eo/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eo/dictionaries/it_IT.po2
-rw-r--r--source/eo/dictionaries/ku_TR.po2
-rw-r--r--source/eo/dictionaries/lt_LT.po2
-rw-r--r--source/eo/dictionaries/lv_LV.po2
-rw-r--r--source/eo/dictionaries/ne_NP.po2
-rw-r--r--source/eo/dictionaries/nl_NL.po2
-rw-r--r--source/eo/dictionaries/no.po2
-rw-r--r--source/eo/dictionaries/oc_FR.po2
-rw-r--r--source/eo/dictionaries/pl_PL.po2
-rw-r--r--source/eo/dictionaries/pt_BR.po10
-rw-r--r--source/eo/dictionaries/pt_BR/dialog.po85
-rw-r--r--source/eo/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po16
-rw-r--r--source/eo/dictionaries/pt_PT.po2
-rw-r--r--source/eo/dictionaries/ro.po2
-rw-r--r--source/eo/dictionaries/ru_RU.po2
-rw-r--r--source/eo/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/eo/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eo/dictionaries/si_LK.po2
-rw-r--r--source/eo/dictionaries/sk_SK.po2
-rw-r--r--source/eo/dictionaries/sl_SI.po2
-rw-r--r--source/eo/dictionaries/sr.po2
-rw-r--r--source/eo/dictionaries/sv_SE.po2
-rw-r--r--source/eo/dictionaries/sw_TZ.po2
-rw-r--r--source/eo/dictionaries/te_IN.po2
-rw-r--r--source/eo/dictionaries/th_TH.po2
-rw-r--r--source/eo/dictionaries/uk_UA.po2
-rw-r--r--source/eo/dictionaries/vi.po2
-rw-r--r--source/eo/dictionaries/zu_ZA.po2
-rw-r--r--source/eo/editeng/source/accessibility.po2
-rw-r--r--source/eo/editeng/source/editeng.po2
-rw-r--r--source/eo/editeng/source/items.po2
-rw-r--r--source/eo/editeng/source/misc.po2
-rw-r--r--source/eo/editeng/source/outliner.po2
-rw-r--r--source/eo/extensions/source/abpilot.po2
-rw-r--r--source/eo/extensions/source/bibliography.po2
-rw-r--r--source/eo/extensions/source/dbpilots.po2
-rw-r--r--source/eo/extensions/source/propctrlr.po2
-rw-r--r--source/eo/extensions/source/scanner.po2
-rw-r--r--source/eo/extensions/source/update/check.po2
-rw-r--r--source/eo/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/eo/filter/source/config/fragments/filters.po2
-rw-r--r--source/eo/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/eo/filter/source/config/fragments/types.po2
-rw-r--r--source/eo/filter/source/flash.po2
-rw-r--r--source/eo/filter/source/graphicfilter/eps.po2
-rw-r--r--source/eo/filter/source/pdf.po2
-rw-r--r--source/eo/filter/source/t602.po2
-rw-r--r--source/eo/filter/source/xsltdialog.po12
-rw-r--r--source/eo/filter/uiconfig/ui.po39
-rw-r--r--source/eo/forms/source/resource.po2
-rw-r--r--source/eo/formula/source/core/resource.po43
-rw-r--r--source/eo/formula/source/ui/dlg.po2
-rw-r--r--source/eo/fpicker/source/office.po6
-rw-r--r--source/eo/framework/source/classes.po2
-rw-r--r--source/eo/framework/source/services.po2
-rw-r--r--source/eo/helpcontent2/source/auxiliary.po212
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/auxiliary.po832
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/sbasic/guide.po725
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/sbasic/shared.po37626
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/sbasic/shared/01.po614
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/sbasic/shared/02.po1757
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/scalc.po1620
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/scalc/00.po1798
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/scalc/01.po59184
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/scalc/02.po1079
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/scalc/04.po1735
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/scalc/05.po1085
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/scalc/guide.po12328
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/schart.po794
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/schart/00.po567
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/schart/01.po7706
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/schart/02.po231
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/schart/04.po302
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/sdraw.po1159
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/sdraw/00.po33
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/sdraw/01.po42
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/sdraw/04.po950
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/sdraw/guide.po2448
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/shared.po2140
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/shared/00.po14193
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/shared/01.po47348
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/shared/02.po19202
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/shared/04.po2842
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/shared/05.po1265
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/shared/07.po78
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/shared/autokorr.po436
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/shared/autopi.po9992
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/shared/explorer/database.po15264
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/shared/guide.po21168
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/shared/optionen.po16132
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/simpress.po2049
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/simpress/00.po1463
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/simpress/01.po9448
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/simpress/02.po5944
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/simpress/04.po1845
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/simpress/guide.po5607
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/smath.po615
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/smath/00.po769
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/smath/01.po13499
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/smath/02.po68
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/smath/04.po250
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/smath/guide.po899
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/swriter.po2184
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/swriter/00.po2688
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/swriter/01.po28980
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/swriter/02.po4076
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/swriter/04.po2304
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/swriter/guide.po18583
-rw-r--r--source/eo/helpcontent2/source/text/libo_help-eo/swriter/librelogo.po2457
-rw-r--r--source/eo/helpcontent2/source/text/shared.po9
-rw-r--r--source/eo/helpcontent2/source/text/simpress.po81
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po299
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/eo/helpcontent2/source/text/swriter/librelogo.po615
-rw-r--r--source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po9
-rw-r--r--source/eo/librelogo/source/pythonpath.po282
-rw-r--r--source/eo/mysqlc/source.po2
-rw-r--r--source/eo/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eo/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po9
-rw-r--r--source/eo/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/eo/nlpsolver/src/locale.po2
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po33
-rw-r--r--source/eo/padmin/source.po4
-rw-r--r--source/eo/readlicense_oo/docs.po2
-rw-r--r--source/eo/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/eo/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eo/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/eo/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/eo/reportbuilder/util.po2
-rw-r--r--source/eo/reportdesign/source/core/resource.po2
-rw-r--r--source/eo/reportdesign/source/ui/dlg.po2
-rw-r--r--source/eo/reportdesign/source/ui/inspection.po2
-rw-r--r--source/eo/reportdesign/source/ui/report.po2
-rw-r--r--source/eo/sc/source/core/src.po2
-rw-r--r--source/eo/sc/source/ui/cctrl.po2
-rw-r--r--source/eo/sc/source/ui/dbgui.po16
-rw-r--r--source/eo/sc/source/ui/docshell.po2
-rw-r--r--source/eo/sc/source/ui/drawfunc.po12
-rw-r--r--source/eo/sc/source/ui/formdlg.po2
-rw-r--r--source/eo/sc/source/ui/miscdlgs.po2
-rw-r--r--source/eo/sc/source/ui/navipi.po2
-rw-r--r--source/eo/sc/source/ui/optdlg.po14
-rw-r--r--source/eo/sc/source/ui/pagedlg.po2
-rw-r--r--source/eo/sc/source/ui/src.po600
-rw-r--r--source/eo/sc/source/ui/styleui.po20
-rw-r--r--source/eo/sc/uiconfig/scalc/ui.po47
-rw-r--r--source/eo/scaddins/source/analysis.po2
-rw-r--r--source/eo/scaddins/source/datefunc.po2
-rw-r--r--source/eo/scaddins/source/pricing.po179
-rw-r--r--source/eo/sccomp/source/solver.po2
-rw-r--r--source/eo/scp2/source/accessories.po2
-rw-r--r--source/eo/scp2/source/activex.po2
-rw-r--r--source/eo/scp2/source/base.po2
-rw-r--r--source/eo/scp2/source/calc.po2
-rw-r--r--source/eo/scp2/source/draw.po2
-rw-r--r--source/eo/scp2/source/extensions.po2
-rw-r--r--source/eo/scp2/source/gnome.po2
-rw-r--r--source/eo/scp2/source/graphicfilter.po2
-rw-r--r--source/eo/scp2/source/impress.po2
-rw-r--r--source/eo/scp2/source/javafilter.po2
-rw-r--r--source/eo/scp2/source/kde.po2
-rw-r--r--source/eo/scp2/source/math.po2
-rw-r--r--source/eo/scp2/source/onlineupdate.po2
-rw-r--r--source/eo/scp2/source/ooo.po22
-rw-r--r--source/eo/scp2/source/python.po26
-rw-r--r--source/eo/scp2/source/quickstart.po2
-rw-r--r--source/eo/scp2/source/sdkoo.po2
-rw-r--r--source/eo/scp2/source/smoketest.po2
-rw-r--r--source/eo/scp2/source/stdlibs.po2
-rw-r--r--source/eo/scp2/source/tde.po2
-rw-r--r--source/eo/scp2/source/winexplorerext.po2
-rw-r--r--source/eo/scp2/source/writer.po2
-rw-r--r--source/eo/scp2/source/xsltfilter.po2
-rw-r--r--source/eo/sd/source/core.po2
-rw-r--r--source/eo/sd/source/filter/html.po2
-rw-r--r--source/eo/sd/source/ui/accessibility.po2
-rw-r--r--source/eo/sd/source/ui/animations.po25
-rw-r--r--source/eo/sd/source/ui/annotations.po2
-rw-r--r--source/eo/sd/source/ui/app.po19
-rw-r--r--source/eo/sd/source/ui/dlg.po23
-rw-r--r--source/eo/sd/source/ui/slideshow.po2
-rw-r--r--source/eo/sd/source/ui/table.po16
-rw-r--r--source/eo/sd/source/ui/view.po2
-rw-r--r--source/eo/sd/uiconfig/sdraw/ui.po11
-rw-r--r--source/eo/sd/uiconfig/simpress/ui.po11
-rw-r--r--source/eo/sdext/source/minimizer.po2
-rw-r--r--source/eo/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eo/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/eo/setup_native/source/mac.po2
-rw-r--r--source/eo/sfx2/source/appl.po20
-rw-r--r--source/eo/sfx2/source/bastyp.po2
-rw-r--r--source/eo/sfx2/source/control.po25
-rw-r--r--source/eo/sfx2/source/dialog.po69
-rw-r--r--source/eo/sfx2/source/doc.po191
-rw-r--r--source/eo/sfx2/source/menu.po2
-rw-r--r--source/eo/sfx2/source/view.po14
-rw-r--r--source/eo/sfx2/uiconfig/ui.po20
-rw-r--r--source/eo/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/eo/starmath/source.po2
-rw-r--r--source/eo/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/eo/svl/source/items.po2
-rw-r--r--source/eo/svl/source/misc.po2
-rw-r--r--source/eo/svtools/source/contnr.po12
-rw-r--r--source/eo/svtools/source/control.po2
-rw-r--r--source/eo/svtools/source/dialogs.po2
-rw-r--r--source/eo/svtools/source/java.po2
-rw-r--r--source/eo/svtools/source/misc.po60
-rw-r--r--source/eo/svtools/source/toolpanel.po2
-rw-r--r--source/eo/svtools/uiconfig/ui.po88
-rw-r--r--source/eo/svx/inc.po19
-rw-r--r--source/eo/svx/source/accessibility.po2
-rw-r--r--source/eo/svx/source/core.po2
-rw-r--r--source/eo/svx/source/dialog.po251
-rw-r--r--source/eo/svx/source/engine3d.po2
-rw-r--r--source/eo/svx/source/fmcomp.po2
-rw-r--r--source/eo/svx/source/form.po2
-rw-r--r--source/eo/svx/source/gallery2.po8
-rw-r--r--source/eo/svx/source/items.po2
-rw-r--r--source/eo/svx/source/src.po2
-rw-r--r--source/eo/svx/source/stbctrls.po2
-rw-r--r--source/eo/svx/source/svdraw.po14
-rw-r--r--source/eo/svx/source/table.po2
-rw-r--r--source/eo/svx/source/tbxctrls.po2
-rw-r--r--source/eo/svx/source/toolbars.po2
-rw-r--r--source/eo/svx/source/unodialogs/textconversiondlgs.po16
-rw-r--r--source/eo/svx/uiconfig/ui.po206
-rw-r--r--source/eo/sw/source/core/layout.po2
-rw-r--r--source/eo/sw/source/core/undo.po2
-rw-r--r--source/eo/sw/source/core/unocore.po2
-rw-r--r--source/eo/sw/source/ui/app.po12
-rw-r--r--source/eo/sw/source/ui/chrdlg.po2
-rw-r--r--source/eo/sw/source/ui/config.po2
-rw-r--r--source/eo/sw/source/ui/dbui.po2
-rw-r--r--source/eo/sw/source/ui/dialog.po2
-rw-r--r--source/eo/sw/source/ui/dochdl.po2
-rw-r--r--source/eo/sw/source/ui/docvw.po2
-rw-r--r--source/eo/sw/source/ui/envelp.po2
-rw-r--r--source/eo/sw/source/ui/fldui.po2
-rw-r--r--source/eo/sw/source/ui/fmtui.po2
-rw-r--r--source/eo/sw/source/ui/frmdlg.po2
-rw-r--r--source/eo/sw/source/ui/globdoc.po2
-rw-r--r--source/eo/sw/source/ui/index.po2
-rw-r--r--source/eo/sw/source/ui/lingu.po2
-rw-r--r--source/eo/sw/source/ui/misc.po2
-rw-r--r--source/eo/sw/source/ui/ribbar.po2
-rw-r--r--source/eo/sw/source/ui/shells.po2
-rw-r--r--source/eo/sw/source/ui/smartmenu.po2
-rw-r--r--source/eo/sw/source/ui/table.po2
-rw-r--r--source/eo/sw/source/ui/uiview.po2
-rw-r--r--source/eo/sw/source/ui/utlui.po4
-rw-r--r--source/eo/sw/source/ui/web.po2
-rw-r--r--source/eo/sw/source/ui/wrtsh.po2
-rw-r--r--source/eo/sw/uiconfig/sw/ui.po278
-rw-r--r--source/eo/sw/uiconfig/swriter/ui.po66
-rw-r--r--source/eo/swext/mediawiki/help.po4
-rw-r--r--source/eo/swext/mediawiki/src.po2
-rw-r--r--source/eo/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eo/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/eo/sysui/desktop/share.po2
-rw-r--r--source/eo/tubes/uiconfig/ui.po4
-rw-r--r--source/eo/uui/source.po2
-rw-r--r--source/eo/vcl/qa/cppunit/builder.po83
-rw-r--r--source/eo/vcl/source/edit.po18
-rw-r--r--source/eo/vcl/source/src.po12
-rw-r--r--source/eo/vcl/uiconfig/ui.po53
-rw-r--r--source/eo/wizards/source/euro.po2
-rw-r--r--source/eo/wizards/source/formwizard.po142
-rw-r--r--source/eo/wizards/source/importwizard.po2
-rw-r--r--source/eo/wizards/source/template.po46
-rw-r--r--source/eo/xmlsecurity/source/component.po2
-rw-r--r--source/eo/xmlsecurity/source/dialogs.po2
-rw-r--r--source/es/accessibility/source/helper.po2
-rw-r--r--source/es/android/sdremote/res/values.po10
-rw-r--r--source/es/avmedia/source/framework.po2
-rw-r--r--source/es/avmedia/source/viewer.po2
-rw-r--r--source/es/basctl/source/basicide.po2
-rw-r--r--source/es/basctl/source/dlged.po2
-rw-r--r--source/es/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/es/basic/source/classes.po2
-rw-r--r--source/es/basic/source/sbx.po2
-rw-r--r--source/es/chart2/source/controller/dialogs.po22
-rw-r--r--source/es/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/connectivity/source/resource.po11
-rw-r--r--source/es/cui/source/customize.po2
-rw-r--r--source/es/cui/source/dialogs.po20
-rw-r--r--source/es/cui/source/options.po38
-rw-r--r--source/es/cui/source/tabpages.po18
-rw-r--r--source/es/cui/uiconfig/ui.po22
-rw-r--r--source/es/dbaccess/source/core/resource.po2
-rw-r--r--source/es/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/es/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/es/dbaccess/source/ui/app.po4
-rw-r--r--source/es/dbaccess/source/ui/browser.po4
-rw-r--r--source/es/dbaccess/source/ui/control.po2
-rw-r--r--source/es/dbaccess/source/ui/dlg.po8
-rw-r--r--source/es/dbaccess/source/ui/inc.po2
-rw-r--r--source/es/dbaccess/source/ui/misc.po2
-rw-r--r--source/es/dbaccess/source/ui/querydesign.po4
-rw-r--r--source/es/dbaccess/source/ui/relationdesign.po4
-rw-r--r--source/es/dbaccess/source/ui/tabledesign.po4
-rw-r--r--source/es/dbaccess/source/ui/uno.po2
-rw-r--r--source/es/desktop/source/app.po2
-rw-r--r--source/es/desktop/source/deployment/gui.po2
-rw-r--r--source/es/desktop/source/deployment/manager.po2
-rw-r--r--source/es/desktop/source/deployment/misc.po9
-rw-r--r--source/es/desktop/source/deployment/registry.po2
-rw-r--r--source/es/desktop/source/deployment/registry/component.po2
-rw-r--r--source/es/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/es/desktop/source/deployment/registry/help.po2
-rw-r--r--source/es/desktop/source/deployment/registry/package.po2
-rw-r--r--source/es/desktop/source/deployment/registry/script.po2
-rw-r--r--source/es/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/es/desktop/source/deployment/unopkg.po2
-rw-r--r--source/es/desktop/uiconfig/ui.po2
-rw-r--r--source/es/dictionaries/af_ZA.po2
-rw-r--r--source/es/dictionaries/an_ES.po2
-rw-r--r--source/es/dictionaries/ar.po2
-rw-r--r--source/es/dictionaries/be_BY.po2
-rw-r--r--source/es/dictionaries/bg_BG.po2
-rw-r--r--source/es/dictionaries/bn_BD.po2
-rw-r--r--source/es/dictionaries/br_FR.po2
-rw-r--r--source/es/dictionaries/ca.po2
-rw-r--r--source/es/dictionaries/cs_CZ.po2
-rw-r--r--source/es/dictionaries/da_DK.po2
-rw-r--r--source/es/dictionaries/de.po2
-rw-r--r--source/es/dictionaries/el_GR.po2
-rw-r--r--source/es/dictionaries/en.po2
-rw-r--r--source/es/dictionaries/en/dialog.po12
-rw-r--r--source/es/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/es/dictionaries/es.po2
-rw-r--r--source/es/dictionaries/et_EE.po2
-rw-r--r--source/es/dictionaries/fr_FR.po2
-rw-r--r--source/es/dictionaries/gd_GB.po2
-rw-r--r--source/es/dictionaries/gl.po2
-rw-r--r--source/es/dictionaries/gu_IN.po2
-rw-r--r--source/es/dictionaries/he_IL.po2
-rw-r--r--source/es/dictionaries/hi_IN.po2
-rw-r--r--source/es/dictionaries/hr_HR.po2
-rw-r--r--source/es/dictionaries/hu_HU.po2
-rw-r--r--source/es/dictionaries/hu_HU/dialog.po10
-rw-r--r--source/es/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/es/dictionaries/it_IT.po2
-rw-r--r--source/es/dictionaries/ku_TR.po2
-rw-r--r--source/es/dictionaries/lt_LT.po2
-rw-r--r--source/es/dictionaries/lv_LV.po2
-rw-r--r--source/es/dictionaries/ne_NP.po2
-rw-r--r--source/es/dictionaries/nl_NL.po2
-rw-r--r--source/es/dictionaries/no.po2
-rw-r--r--source/es/dictionaries/oc_FR.po2
-rw-r--r--source/es/dictionaries/pl_PL.po2
-rw-r--r--source/es/dictionaries/pt_BR.po2
-rw-r--r--source/es/dictionaries/pt_BR/dialog.po12
-rw-r--r--source/es/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/es/dictionaries/pt_PT.po2
-rw-r--r--source/es/dictionaries/ro.po2
-rw-r--r--source/es/dictionaries/ru_RU.po2
-rw-r--r--source/es/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/es/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/es/dictionaries/si_LK.po2
-rw-r--r--source/es/dictionaries/sk_SK.po2
-rw-r--r--source/es/dictionaries/sl_SI.po2
-rw-r--r--source/es/dictionaries/sr.po2
-rw-r--r--source/es/dictionaries/sv_SE.po2
-rw-r--r--source/es/dictionaries/sw_TZ.po2
-rw-r--r--source/es/dictionaries/te_IN.po2
-rw-r--r--source/es/dictionaries/th_TH.po2
-rw-r--r--source/es/dictionaries/uk_UA.po2
-rw-r--r--source/es/dictionaries/vi.po2
-rw-r--r--source/es/dictionaries/zu_ZA.po2
-rw-r--r--source/es/editeng/source/accessibility.po2
-rw-r--r--source/es/editeng/source/editeng.po9
-rw-r--r--source/es/editeng/source/items.po9
-rw-r--r--source/es/editeng/source/misc.po2
-rw-r--r--source/es/editeng/source/outliner.po2
-rw-r--r--source/es/extensions/source/abpilot.po2
-rw-r--r--source/es/extensions/source/bibliography.po2
-rw-r--r--source/es/extensions/source/dbpilots.po2
-rw-r--r--source/es/extensions/source/propctrlr.po14
-rw-r--r--source/es/extensions/source/scanner.po2
-rw-r--r--source/es/extensions/source/update/check.po2
-rw-r--r--source/es/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/es/filter/source/config/fragments/filters.po11
-rw-r--r--source/es/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/es/filter/source/config/fragments/types.po2
-rw-r--r--source/es/filter/source/flash.po2
-rw-r--r--source/es/filter/source/graphicfilter/eps.po2
-rw-r--r--source/es/filter/source/pdf.po8
-rw-r--r--source/es/filter/source/t602.po2
-rw-r--r--source/es/filter/source/xsltdialog.po2
-rw-r--r--source/es/filter/uiconfig/ui.po2
-rw-r--r--source/es/forms/source/resource.po4
-rw-r--r--source/es/formula/source/core/resource.po44
-rw-r--r--source/es/formula/source/ui/dlg.po2
-rw-r--r--source/es/fpicker/source/office.po2
-rw-r--r--source/es/framework/source/classes.po2
-rw-r--r--source/es/framework/source/services.po2
-rw-r--r--source/es/helpcontent2/source/auxiliary.po212
-rw-r--r--source/es/helpcontent2/source/text/sbasic/guide.po23
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/02.po7
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po7
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po15
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po15
-rw-r--r--source/es/helpcontent2/source/text/sdraw/04.po10
-rw-r--r--source/es/helpcontent2/source/text/sdraw/guide.po11
-rw-r--r--source/es/helpcontent2/source/text/shared.po11
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po9
-rw-r--r--source/es/helpcontent2/source/text/simpress.po45
-rw-r--r--source/es/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po14
-rw-r--r--source/es/helpcontent2/source/text/simpress/02.po13
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po16
-rw-r--r--source/es/librelogo/source/pythonpath.po74
-rw-r--r--source/es/mysqlc/source.po2
-rw-r--r--source/es/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/es/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/es/nlpsolver/src/locale.po2
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office.po14
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po51
-rw-r--r--source/es/padmin/source.po30
-rw-r--r--source/es/readlicense_oo/docs.po2
-rw-r--r--source/es/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/es/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/es/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/es/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/es/reportbuilder/util.po2
-rw-r--r--source/es/reportdesign/source/core/resource.po2
-rw-r--r--source/es/reportdesign/source/ui/dlg.po12
-rw-r--r--source/es/reportdesign/source/ui/inspection.po10
-rw-r--r--source/es/reportdesign/source/ui/report.po10
-rw-r--r--source/es/sc/source/core/src.po2
-rw-r--r--source/es/sc/source/ui/cctrl.po2
-rw-r--r--source/es/sc/source/ui/dbgui.po2
-rw-r--r--source/es/sc/source/ui/docshell.po2
-rw-r--r--source/es/sc/source/ui/drawfunc.po2
-rw-r--r--source/es/sc/source/ui/formdlg.po2
-rw-r--r--source/es/sc/source/ui/miscdlgs.po2
-rw-r--r--source/es/sc/source/ui/navipi.po2
-rw-r--r--source/es/sc/source/ui/optdlg.po2
-rw-r--r--source/es/sc/source/ui/pagedlg.po2
-rw-r--r--source/es/sc/source/ui/src.po442
-rw-r--r--source/es/sc/source/ui/styleui.po10
-rw-r--r--source/es/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/es/scaddins/source/analysis.po2
-rw-r--r--source/es/scaddins/source/datefunc.po2
-rw-r--r--source/es/scaddins/source/pricing.po18
-rw-r--r--source/es/sccomp/source/solver.po2
-rw-r--r--source/es/scp2/source/accessories.po14
-rw-r--r--source/es/scp2/source/activex.po2
-rw-r--r--source/es/scp2/source/base.po2
-rw-r--r--source/es/scp2/source/calc.po2
-rw-r--r--source/es/scp2/source/draw.po2
-rw-r--r--source/es/scp2/source/extensions.po2
-rw-r--r--source/es/scp2/source/gnome.po2
-rw-r--r--source/es/scp2/source/graphicfilter.po2
-rw-r--r--source/es/scp2/source/impress.po2
-rw-r--r--source/es/scp2/source/javafilter.po2
-rw-r--r--source/es/scp2/source/kde.po2
-rw-r--r--source/es/scp2/source/math.po2
-rw-r--r--source/es/scp2/source/onlineupdate.po2
-rw-r--r--source/es/scp2/source/ooo.po21
-rw-r--r--source/es/scp2/source/python.po25
-rw-r--r--source/es/scp2/source/quickstart.po2
-rw-r--r--source/es/scp2/source/sdkoo.po2
-rw-r--r--source/es/scp2/source/smoketest.po2
-rw-r--r--source/es/scp2/source/stdlibs.po2
-rw-r--r--source/es/scp2/source/tde.po2
-rw-r--r--source/es/scp2/source/winexplorerext.po2
-rw-r--r--source/es/scp2/source/writer.po2
-rw-r--r--source/es/scp2/source/xsltfilter.po2
-rw-r--r--source/es/sd/source/core.po2
-rw-r--r--source/es/sd/source/filter/html.po2
-rw-r--r--source/es/sd/source/ui/accessibility.po2
-rw-r--r--source/es/sd/source/ui/animations.po16
-rw-r--r--source/es/sd/source/ui/annotations.po2
-rw-r--r--source/es/sd/source/ui/app.po18
-rw-r--r--source/es/sd/source/ui/dlg.po24
-rw-r--r--source/es/sd/source/ui/slideshow.po2
-rw-r--r--source/es/sd/source/ui/table.po2
-rw-r--r--source/es/sd/source/ui/view.po2
-rw-r--r--source/es/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/es/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/es/sdext/source/minimizer.po2
-rw-r--r--source/es/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/es/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/es/setup_native/source/mac.po11
-rw-r--r--source/es/sfx2/source/appl.po2
-rw-r--r--source/es/sfx2/source/bastyp.po2
-rw-r--r--source/es/sfx2/source/control.po25
-rw-r--r--source/es/sfx2/source/dialog.po58
-rw-r--r--source/es/sfx2/source/doc.po128
-rw-r--r--source/es/sfx2/source/menu.po2
-rw-r--r--source/es/sfx2/source/view.po2
-rw-r--r--source/es/sfx2/uiconfig/ui.po2
-rw-r--r--source/es/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/es/starmath/source.po8
-rw-r--r--source/es/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/es/svl/source/items.po2
-rw-r--r--source/es/svl/source/misc.po2
-rw-r--r--source/es/svtools/source/contnr.po2
-rw-r--r--source/es/svtools/source/control.po2
-rw-r--r--source/es/svtools/source/dialogs.po2
-rw-r--r--source/es/svtools/source/java.po2
-rw-r--r--source/es/svtools/source/misc.po37
-rw-r--r--source/es/svtools/source/toolpanel.po2
-rw-r--r--source/es/svtools/uiconfig/ui.po92
-rw-r--r--source/es/svx/inc.po18
-rw-r--r--source/es/svx/source/accessibility.po2
-rw-r--r--source/es/svx/source/core.po2
-rw-r--r--source/es/svx/source/dialog.po248
-rw-r--r--source/es/svx/source/engine3d.po2
-rw-r--r--source/es/svx/source/fmcomp.po2
-rw-r--r--source/es/svx/source/form.po2
-rw-r--r--source/es/svx/source/gallery2.po2
-rw-r--r--source/es/svx/source/items.po2
-rw-r--r--source/es/svx/source/src.po2
-rw-r--r--source/es/svx/source/stbctrls.po2
-rw-r--r--source/es/svx/source/svdraw.po10
-rw-r--r--source/es/svx/source/table.po2
-rw-r--r--source/es/svx/source/tbxctrls.po2
-rw-r--r--source/es/svx/source/toolbars.po2
-rw-r--r--source/es/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/es/svx/uiconfig/ui.po206
-rw-r--r--source/es/sw/source/core/layout.po2
-rw-r--r--source/es/sw/source/core/undo.po14
-rw-r--r--source/es/sw/source/core/unocore.po2
-rw-r--r--source/es/sw/source/ui/app.po10
-rw-r--r--source/es/sw/source/ui/chrdlg.po2
-rw-r--r--source/es/sw/source/ui/config.po2
-rw-r--r--source/es/sw/source/ui/dbui.po2
-rw-r--r--source/es/sw/source/ui/dialog.po2
-rw-r--r--source/es/sw/source/ui/dochdl.po2
-rw-r--r--source/es/sw/source/ui/docvw.po2
-rw-r--r--source/es/sw/source/ui/envelp.po2
-rw-r--r--source/es/sw/source/ui/fldui.po2
-rw-r--r--source/es/sw/source/ui/fmtui.po2
-rw-r--r--source/es/sw/source/ui/frmdlg.po2
-rw-r--r--source/es/sw/source/ui/globdoc.po2
-rw-r--r--source/es/sw/source/ui/index.po10
-rw-r--r--source/es/sw/source/ui/lingu.po2
-rw-r--r--source/es/sw/source/ui/misc.po2
-rw-r--r--source/es/sw/source/ui/ribbar.po2
-rw-r--r--source/es/sw/source/ui/shells.po2
-rw-r--r--source/es/sw/source/ui/smartmenu.po2
-rw-r--r--source/es/sw/source/ui/table.po13
-rw-r--r--source/es/sw/source/ui/uiview.po2
-rw-r--r--source/es/sw/source/ui/utlui.po4
-rw-r--r--source/es/sw/source/ui/web.po2
-rw-r--r--source/es/sw/source/ui/wrtsh.po2
-rw-r--r--source/es/sw/uiconfig/sw/ui.po279
-rw-r--r--source/es/sw/uiconfig/swriter/ui.po72
-rw-r--r--source/es/swext/mediawiki/help.po11
-rw-r--r--source/es/swext/mediawiki/src.po2
-rw-r--r--source/es/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/es/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/es/sysui/desktop/share.po2
-rw-r--r--source/es/tubes/uiconfig/ui.po4
-rw-r--r--source/es/uui/source.po9
-rw-r--r--source/es/vcl/qa/cppunit/builder.po10
-rw-r--r--source/es/vcl/source/edit.po2
-rw-r--r--source/es/vcl/source/src.po2
-rw-r--r--source/es/vcl/uiconfig/ui.po2
-rw-r--r--source/es/wizards/source/euro.po2
-rw-r--r--source/es/wizards/source/formwizard.po61
-rw-r--r--source/es/wizards/source/importwizard.po2
-rw-r--r--source/es/wizards/source/template.po2
-rw-r--r--source/es/xmlsecurity/source/component.po2
-rw-r--r--source/es/xmlsecurity/source/dialogs.po2
-rw-r--r--source/et/accessibility/source/helper.po2
-rw-r--r--source/et/android/sdremote/res/values.po4
-rw-r--r--source/et/avmedia/source/framework.po2
-rw-r--r--source/et/avmedia/source/viewer.po2
-rw-r--r--source/et/basctl/source/basicide.po2
-rw-r--r--source/et/basctl/source/dlged.po2
-rw-r--r--source/et/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/et/basic/source/classes.po2
-rw-r--r--source/et/basic/source/sbx.po2
-rw-r--r--source/et/chart2/source/controller/dialogs.po11
-rw-r--r--source/et/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/connectivity/source/resource.po2
-rw-r--r--source/et/cui/source/customize.po2
-rw-r--r--source/et/cui/source/dialogs.po4
-rw-r--r--source/et/cui/source/options.po4
-rw-r--r--source/et/cui/source/tabpages.po4
-rw-r--r--source/et/cui/uiconfig/ui.po4
-rw-r--r--source/et/dbaccess/source/core/resource.po2
-rw-r--r--source/et/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/et/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/et/dbaccess/source/ui/app.po2
-rw-r--r--source/et/dbaccess/source/ui/browser.po2
-rw-r--r--source/et/dbaccess/source/ui/control.po2
-rw-r--r--source/et/dbaccess/source/ui/dlg.po9
-rw-r--r--source/et/dbaccess/source/ui/inc.po2
-rw-r--r--source/et/dbaccess/source/ui/misc.po2
-rw-r--r--source/et/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/et/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/et/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/et/dbaccess/source/ui/uno.po2
-rw-r--r--source/et/desktop/source/app.po2
-rw-r--r--source/et/desktop/source/deployment/gui.po2
-rw-r--r--source/et/desktop/source/deployment/manager.po2
-rw-r--r--source/et/desktop/source/deployment/misc.po2
-rw-r--r--source/et/desktop/source/deployment/registry.po2
-rw-r--r--source/et/desktop/source/deployment/registry/component.po2
-rw-r--r--source/et/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/et/desktop/source/deployment/registry/help.po2
-rw-r--r--source/et/desktop/source/deployment/registry/package.po2
-rw-r--r--source/et/desktop/source/deployment/registry/script.po2
-rw-r--r--source/et/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/et/desktop/source/deployment/unopkg.po2
-rw-r--r--source/et/desktop/uiconfig/ui.po2
-rw-r--r--source/et/dictionaries/af_ZA.po2
-rw-r--r--source/et/dictionaries/an_ES.po2
-rw-r--r--source/et/dictionaries/ar.po2
-rw-r--r--source/et/dictionaries/be_BY.po2
-rw-r--r--source/et/dictionaries/bg_BG.po2
-rw-r--r--source/et/dictionaries/bn_BD.po2
-rw-r--r--source/et/dictionaries/br_FR.po2
-rw-r--r--source/et/dictionaries/ca.po2
-rw-r--r--source/et/dictionaries/cs_CZ.po2
-rw-r--r--source/et/dictionaries/da_DK.po2
-rw-r--r--source/et/dictionaries/de.po2
-rw-r--r--source/et/dictionaries/el_GR.po2
-rw-r--r--source/et/dictionaries/en.po2
-rw-r--r--source/et/dictionaries/en/dialog.po2
-rw-r--r--source/et/dictionaries/en/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/et/dictionaries/es.po2
-rw-r--r--source/et/dictionaries/et_EE.po2
-rw-r--r--source/et/dictionaries/fr_FR.po2
-rw-r--r--source/et/dictionaries/gd_GB.po2
-rw-r--r--source/et/dictionaries/gl.po2
-rw-r--r--source/et/dictionaries/gu_IN.po2
-rw-r--r--source/et/dictionaries/he_IL.po2
-rw-r--r--source/et/dictionaries/hi_IN.po2
-rw-r--r--source/et/dictionaries/hr_HR.po2
-rw-r--r--source/et/dictionaries/hu_HU.po2
-rw-r--r--source/et/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/et/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/et/dictionaries/it_IT.po2
-rw-r--r--source/et/dictionaries/ku_TR.po2
-rw-r--r--source/et/dictionaries/lt_LT.po2
-rw-r--r--source/et/dictionaries/lv_LV.po2
-rw-r--r--source/et/dictionaries/ne_NP.po2
-rw-r--r--source/et/dictionaries/nl_NL.po2
-rw-r--r--source/et/dictionaries/no.po2
-rw-r--r--source/et/dictionaries/oc_FR.po2
-rw-r--r--source/et/dictionaries/pl_PL.po2
-rw-r--r--source/et/dictionaries/pt_BR.po4
-rw-r--r--source/et/dictionaries/pt_BR/dialog.po4
-rw-r--r--source/et/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/et/dictionaries/pt_PT.po2
-rw-r--r--source/et/dictionaries/ro.po2
-rw-r--r--source/et/dictionaries/ru_RU.po2
-rw-r--r--source/et/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/et/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/et/dictionaries/si_LK.po2
-rw-r--r--source/et/dictionaries/sk_SK.po2
-rw-r--r--source/et/dictionaries/sl_SI.po2
-rw-r--r--source/et/dictionaries/sr.po2
-rw-r--r--source/et/dictionaries/sv_SE.po2
-rw-r--r--source/et/dictionaries/sw_TZ.po2
-rw-r--r--source/et/dictionaries/te_IN.po2
-rw-r--r--source/et/dictionaries/th_TH.po2
-rw-r--r--source/et/dictionaries/uk_UA.po2
-rw-r--r--source/et/dictionaries/vi.po2
-rw-r--r--source/et/dictionaries/zu_ZA.po2
-rw-r--r--source/et/editeng/source/accessibility.po2
-rw-r--r--source/et/editeng/source/editeng.po2
-rw-r--r--source/et/editeng/source/items.po2
-rw-r--r--source/et/editeng/source/misc.po2
-rw-r--r--source/et/editeng/source/outliner.po2
-rw-r--r--source/et/extensions/source/abpilot.po2
-rw-r--r--source/et/extensions/source/bibliography.po2
-rw-r--r--source/et/extensions/source/dbpilots.po2
-rw-r--r--source/et/extensions/source/propctrlr.po2
-rw-r--r--source/et/extensions/source/scanner.po2
-rw-r--r--source/et/extensions/source/update/check.po2
-rw-r--r--source/et/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/et/filter/source/config/fragments/filters.po2
-rw-r--r--source/et/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/et/filter/source/config/fragments/types.po2
-rw-r--r--source/et/filter/source/flash.po2
-rw-r--r--source/et/filter/source/graphicfilter/eps.po2
-rw-r--r--source/et/filter/source/pdf.po2
-rw-r--r--source/et/filter/source/t602.po2
-rw-r--r--source/et/filter/source/xsltdialog.po2
-rw-r--r--source/et/filter/uiconfig/ui.po4
-rw-r--r--source/et/forms/source/resource.po2
-rw-r--r--source/et/formula/source/core/resource.po44
-rw-r--r--source/et/formula/source/ui/dlg.po2
-rw-r--r--source/et/fpicker/source/office.po2
-rw-r--r--source/et/framework/source/classes.po2
-rw-r--r--source/et/framework/source/services.po2
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po38
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/et/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/et/librelogo/source/pythonpath.po2
-rw-r--r--source/et/mysqlc/source.po2
-rw-r--r--source/et/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/et/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po4
-rw-r--r--source/et/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/et/nlpsolver/src/locale.po2
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/et/padmin/source.po4
-rw-r--r--source/et/readlicense_oo/docs.po2
-rw-r--r--source/et/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/et/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/et/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/et/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/et/reportbuilder/util.po2
-rw-r--r--source/et/reportdesign/source/core/resource.po2
-rw-r--r--source/et/reportdesign/source/ui/dlg.po2
-rw-r--r--source/et/reportdesign/source/ui/inspection.po2
-rw-r--r--source/et/reportdesign/source/ui/report.po2
-rw-r--r--source/et/sc/source/core/src.po2
-rw-r--r--source/et/sc/source/ui/cctrl.po2
-rw-r--r--source/et/sc/source/ui/dbgui.po2
-rw-r--r--source/et/sc/source/ui/docshell.po2
-rw-r--r--source/et/sc/source/ui/drawfunc.po4
-rw-r--r--source/et/sc/source/ui/formdlg.po2
-rw-r--r--source/et/sc/source/ui/miscdlgs.po2
-rw-r--r--source/et/sc/source/ui/navipi.po2
-rw-r--r--source/et/sc/source/ui/optdlg.po4
-rw-r--r--source/et/sc/source/ui/pagedlg.po2
-rw-r--r--source/et/sc/source/ui/src.po399
-rw-r--r--source/et/sc/source/ui/styleui.po4
-rw-r--r--source/et/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/et/scaddins/source/analysis.po2
-rw-r--r--source/et/scaddins/source/datefunc.po2
-rw-r--r--source/et/scaddins/source/pricing.po97
-rw-r--r--source/et/sccomp/source/solver.po2
-rw-r--r--source/et/scp2/source/accessories.po2
-rw-r--r--source/et/scp2/source/activex.po2
-rw-r--r--source/et/scp2/source/base.po2
-rw-r--r--source/et/scp2/source/calc.po2
-rw-r--r--source/et/scp2/source/draw.po2
-rw-r--r--source/et/scp2/source/extensions.po2
-rw-r--r--source/et/scp2/source/gnome.po2
-rw-r--r--source/et/scp2/source/graphicfilter.po2
-rw-r--r--source/et/scp2/source/impress.po2
-rw-r--r--source/et/scp2/source/javafilter.po2
-rw-r--r--source/et/scp2/source/kde.po2
-rw-r--r--source/et/scp2/source/math.po2
-rw-r--r--source/et/scp2/source/onlineupdate.po2
-rw-r--r--source/et/scp2/source/ooo.po14
-rw-r--r--source/et/scp2/source/python.po22
-rw-r--r--source/et/scp2/source/quickstart.po2
-rw-r--r--source/et/scp2/source/sdkoo.po2
-rw-r--r--source/et/scp2/source/smoketest.po2
-rw-r--r--source/et/scp2/source/stdlibs.po2
-rw-r--r--source/et/scp2/source/tde.po2
-rw-r--r--source/et/scp2/source/winexplorerext.po2
-rw-r--r--source/et/scp2/source/writer.po2
-rw-r--r--source/et/scp2/source/xsltfilter.po2
-rw-r--r--source/et/sd/source/core.po2
-rw-r--r--source/et/sd/source/filter/html.po2
-rw-r--r--source/et/sd/source/ui/accessibility.po2
-rw-r--r--source/et/sd/source/ui/animations.po4
-rw-r--r--source/et/sd/source/ui/annotations.po2
-rw-r--r--source/et/sd/source/ui/app.po16
-rw-r--r--source/et/sd/source/ui/dlg.po4
-rw-r--r--source/et/sd/source/ui/slideshow.po2
-rw-r--r--source/et/sd/source/ui/table.po4
-rw-r--r--source/et/sd/source/ui/view.po2
-rw-r--r--source/et/sd/uiconfig/sdraw/ui.po4
-rw-r--r--source/et/sd/uiconfig/simpress/ui.po4
-rw-r--r--source/et/sdext/source/minimizer.po2
-rw-r--r--source/et/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/et/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/et/setup_native/source/mac.po2
-rw-r--r--source/et/sfx2/source/appl.po4
-rw-r--r--source/et/sfx2/source/bastyp.po2
-rw-r--r--source/et/sfx2/source/control.po25
-rw-r--r--source/et/sfx2/source/dialog.po48
-rw-r--r--source/et/sfx2/source/doc.po136
-rw-r--r--source/et/sfx2/source/menu.po2
-rw-r--r--source/et/sfx2/source/view.po4
-rw-r--r--source/et/sfx2/uiconfig/ui.po4
-rw-r--r--source/et/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/et/starmath/source.po2
-rw-r--r--source/et/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/et/svl/source/items.po2
-rw-r--r--source/et/svl/source/misc.po2
-rw-r--r--source/et/svtools/source/contnr.po2
-rw-r--r--source/et/svtools/source/control.po2
-rw-r--r--source/et/svtools/source/dialogs.po2
-rw-r--r--source/et/svtools/source/java.po2
-rw-r--r--source/et/svtools/source/misc.po26
-rw-r--r--source/et/svtools/source/toolpanel.po2
-rw-r--r--source/et/svtools/uiconfig/ui.po51
-rw-r--r--source/et/svx/inc.po4
-rw-r--r--source/et/svx/source/accessibility.po2
-rw-r--r--source/et/svx/source/core.po2
-rw-r--r--source/et/svx/source/dialog.po227
-rw-r--r--source/et/svx/source/engine3d.po2
-rw-r--r--source/et/svx/source/fmcomp.po2
-rw-r--r--source/et/svx/source/form.po2
-rw-r--r--source/et/svx/source/gallery2.po2
-rw-r--r--source/et/svx/source/items.po2
-rw-r--r--source/et/svx/source/src.po2
-rw-r--r--source/et/svx/source/stbctrls.po2
-rw-r--r--source/et/svx/source/svdraw.po2
-rw-r--r--source/et/svx/source/table.po2
-rw-r--r--source/et/svx/source/tbxctrls.po2
-rw-r--r--source/et/svx/source/toolbars.po2
-rw-r--r--source/et/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/et/svx/uiconfig/ui.po206
-rw-r--r--source/et/sw/source/core/layout.po2
-rw-r--r--source/et/sw/source/core/undo.po2
-rw-r--r--source/et/sw/source/core/unocore.po2
-rw-r--r--source/et/sw/source/ui/app.po4
-rw-r--r--source/et/sw/source/ui/chrdlg.po2
-rw-r--r--source/et/sw/source/ui/config.po4
-rw-r--r--source/et/sw/source/ui/dbui.po2
-rw-r--r--source/et/sw/source/ui/dialog.po2
-rw-r--r--source/et/sw/source/ui/dochdl.po2
-rw-r--r--source/et/sw/source/ui/docvw.po2
-rw-r--r--source/et/sw/source/ui/envelp.po4
-rw-r--r--source/et/sw/source/ui/fldui.po2
-rw-r--r--source/et/sw/source/ui/fmtui.po2
-rw-r--r--source/et/sw/source/ui/frmdlg.po2
-rw-r--r--source/et/sw/source/ui/globdoc.po2
-rw-r--r--source/et/sw/source/ui/index.po12
-rw-r--r--source/et/sw/source/ui/lingu.po2
-rw-r--r--source/et/sw/source/ui/misc.po2
-rw-r--r--source/et/sw/source/ui/ribbar.po2
-rw-r--r--source/et/sw/source/ui/shells.po2
-rw-r--r--source/et/sw/source/ui/smartmenu.po2
-rw-r--r--source/et/sw/source/ui/table.po4
-rw-r--r--source/et/sw/source/ui/uiview.po10
-rw-r--r--source/et/sw/source/ui/utlui.po4
-rw-r--r--source/et/sw/source/ui/web.po2
-rw-r--r--source/et/sw/source/ui/wrtsh.po2
-rw-r--r--source/et/sw/uiconfig/sw/ui.po278
-rw-r--r--source/et/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/et/swext/mediawiki/help.po2
-rw-r--r--source/et/swext/mediawiki/src.po2
-rw-r--r--source/et/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/et/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/et/sysui/desktop/share.po2
-rw-r--r--source/et/tubes/uiconfig/ui.po18
-rw-r--r--source/et/uui/source.po2
-rw-r--r--source/et/vcl/qa/cppunit/builder.po78
-rw-r--r--source/et/vcl/source/edit.po4
-rw-r--r--source/et/vcl/source/src.po4
-rw-r--r--source/et/vcl/uiconfig/ui.po4
-rw-r--r--source/et/wizards/source/euro.po2
-rw-r--r--source/et/wizards/source/formwizard.po147
-rw-r--r--source/et/wizards/source/importwizard.po2
-rw-r--r--source/et/wizards/source/template.po8
-rw-r--r--source/et/xmlsecurity/source/component.po2
-rw-r--r--source/et/xmlsecurity/source/dialogs.po2
-rw-r--r--source/eu/accessibility/source/helper.po2
-rw-r--r--source/eu/android/sdremote/res/values.po2
-rw-r--r--source/eu/avmedia/source/framework.po2
-rw-r--r--source/eu/avmedia/source/viewer.po2
-rw-r--r--source/eu/basctl/source/basicide.po2
-rw-r--r--source/eu/basctl/source/dlged.po2
-rw-r--r--source/eu/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/eu/basic/source/classes.po2
-rw-r--r--source/eu/basic/source/sbx.po2
-rw-r--r--source/eu/chart2/source/controller/dialogs.po2
-rw-r--r--source/eu/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/connectivity/source/resource.po2
-rw-r--r--source/eu/cui/source/customize.po2
-rw-r--r--source/eu/cui/source/dialogs.po2
-rw-r--r--source/eu/cui/source/options.po2
-rw-r--r--source/eu/cui/source/tabpages.po2
-rw-r--r--source/eu/cui/uiconfig/ui.po2
-rw-r--r--source/eu/dbaccess/source/core/resource.po2
-rw-r--r--source/eu/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/eu/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/eu/dbaccess/source/ui/app.po2
-rw-r--r--source/eu/dbaccess/source/ui/browser.po2
-rw-r--r--source/eu/dbaccess/source/ui/control.po2
-rw-r--r--source/eu/dbaccess/source/ui/dlg.po2
-rw-r--r--source/eu/dbaccess/source/ui/inc.po2
-rw-r--r--source/eu/dbaccess/source/ui/misc.po2
-rw-r--r--source/eu/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/eu/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/eu/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/eu/dbaccess/source/ui/uno.po2
-rw-r--r--source/eu/desktop/source/app.po2
-rw-r--r--source/eu/desktop/source/deployment/gui.po2
-rw-r--r--source/eu/desktop/source/deployment/manager.po2
-rw-r--r--source/eu/desktop/source/deployment/misc.po2
-rw-r--r--source/eu/desktop/source/deployment/registry.po2
-rw-r--r--source/eu/desktop/source/deployment/registry/component.po2
-rw-r--r--source/eu/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/eu/desktop/source/deployment/registry/help.po2
-rw-r--r--source/eu/desktop/source/deployment/registry/package.po2
-rw-r--r--source/eu/desktop/source/deployment/registry/script.po2
-rw-r--r--source/eu/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/eu/desktop/source/deployment/unopkg.po2
-rw-r--r--source/eu/desktop/uiconfig/ui.po2
-rw-r--r--source/eu/dictionaries/af_ZA.po2
-rw-r--r--source/eu/dictionaries/an_ES.po2
-rw-r--r--source/eu/dictionaries/ar.po2
-rw-r--r--source/eu/dictionaries/be_BY.po2
-rw-r--r--source/eu/dictionaries/bg_BG.po2
-rw-r--r--source/eu/dictionaries/bn_BD.po2
-rw-r--r--source/eu/dictionaries/br_FR.po2
-rw-r--r--source/eu/dictionaries/ca.po2
-rw-r--r--source/eu/dictionaries/cs_CZ.po2
-rw-r--r--source/eu/dictionaries/da_DK.po2
-rw-r--r--source/eu/dictionaries/de.po2
-rw-r--r--source/eu/dictionaries/el_GR.po2
-rw-r--r--source/eu/dictionaries/en.po2
-rw-r--r--source/eu/dictionaries/en/dialog.po2
-rw-r--r--source/eu/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eu/dictionaries/es.po2
-rw-r--r--source/eu/dictionaries/et_EE.po2
-rw-r--r--source/eu/dictionaries/fr_FR.po2
-rw-r--r--source/eu/dictionaries/gd_GB.po2
-rw-r--r--source/eu/dictionaries/gl.po2
-rw-r--r--source/eu/dictionaries/gu_IN.po2
-rw-r--r--source/eu/dictionaries/he_IL.po2
-rw-r--r--source/eu/dictionaries/hi_IN.po2
-rw-r--r--source/eu/dictionaries/hr_HR.po2
-rw-r--r--source/eu/dictionaries/hu_HU.po2
-rw-r--r--source/eu/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/eu/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eu/dictionaries/it_IT.po2
-rw-r--r--source/eu/dictionaries/ku_TR.po2
-rw-r--r--source/eu/dictionaries/lt_LT.po2
-rw-r--r--source/eu/dictionaries/lv_LV.po2
-rw-r--r--source/eu/dictionaries/ne_NP.po2
-rw-r--r--source/eu/dictionaries/nl_NL.po2
-rw-r--r--source/eu/dictionaries/no.po2
-rw-r--r--source/eu/dictionaries/oc_FR.po2
-rw-r--r--source/eu/dictionaries/pl_PL.po2
-rw-r--r--source/eu/dictionaries/pt_BR.po2
-rw-r--r--source/eu/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/eu/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eu/dictionaries/pt_PT.po2
-rw-r--r--source/eu/dictionaries/ro.po2
-rw-r--r--source/eu/dictionaries/ru_RU.po2
-rw-r--r--source/eu/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/eu/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eu/dictionaries/si_LK.po2
-rw-r--r--source/eu/dictionaries/sk_SK.po2
-rw-r--r--source/eu/dictionaries/sl_SI.po2
-rw-r--r--source/eu/dictionaries/sr.po2
-rw-r--r--source/eu/dictionaries/sv_SE.po2
-rw-r--r--source/eu/dictionaries/sw_TZ.po2
-rw-r--r--source/eu/dictionaries/te_IN.po2
-rw-r--r--source/eu/dictionaries/th_TH.po2
-rw-r--r--source/eu/dictionaries/uk_UA.po2
-rw-r--r--source/eu/dictionaries/vi.po2
-rw-r--r--source/eu/dictionaries/zu_ZA.po2
-rw-r--r--source/eu/editeng/source/accessibility.po2
-rw-r--r--source/eu/editeng/source/editeng.po2
-rw-r--r--source/eu/editeng/source/items.po2
-rw-r--r--source/eu/editeng/source/misc.po2
-rw-r--r--source/eu/editeng/source/outliner.po2
-rw-r--r--source/eu/extensions/source/abpilot.po2
-rw-r--r--source/eu/extensions/source/bibliography.po2
-rw-r--r--source/eu/extensions/source/dbpilots.po2
-rw-r--r--source/eu/extensions/source/propctrlr.po2
-rw-r--r--source/eu/extensions/source/scanner.po2
-rw-r--r--source/eu/extensions/source/update/check.po2
-rw-r--r--source/eu/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/eu/filter/source/config/fragments/filters.po2
-rw-r--r--source/eu/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/eu/filter/source/config/fragments/types.po2
-rw-r--r--source/eu/filter/source/flash.po2
-rw-r--r--source/eu/filter/source/graphicfilter/eps.po2
-rw-r--r--source/eu/filter/source/pdf.po2
-rw-r--r--source/eu/filter/source/t602.po2
-rw-r--r--source/eu/filter/source/xsltdialog.po2
-rw-r--r--source/eu/filter/uiconfig/ui.po2
-rw-r--r--source/eu/forms/source/resource.po2
-rw-r--r--source/eu/formula/source/core/resource.po38
-rw-r--r--source/eu/formula/source/ui/dlg.po2
-rw-r--r--source/eu/fpicker/source/office.po2
-rw-r--r--source/eu/framework/source/classes.po2
-rw-r--r--source/eu/framework/source/services.po2
-rw-r--r--source/eu/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/eu/librelogo/source/pythonpath.po2
-rw-r--r--source/eu/mysqlc/source.po2
-rw-r--r--source/eu/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/eu/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/eu/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/eu/nlpsolver/src/locale.po2
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/eu/padmin/source.po2
-rw-r--r--source/eu/readlicense_oo/docs.po2
-rw-r--r--source/eu/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/eu/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eu/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/eu/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/eu/reportbuilder/util.po2
-rw-r--r--source/eu/reportdesign/source/core/resource.po2
-rw-r--r--source/eu/reportdesign/source/ui/dlg.po2
-rw-r--r--source/eu/reportdesign/source/ui/inspection.po2
-rw-r--r--source/eu/reportdesign/source/ui/report.po2
-rw-r--r--source/eu/sc/source/core/src.po2
-rw-r--r--source/eu/sc/source/ui/cctrl.po2
-rw-r--r--source/eu/sc/source/ui/dbgui.po2
-rw-r--r--source/eu/sc/source/ui/docshell.po2
-rw-r--r--source/eu/sc/source/ui/drawfunc.po2
-rw-r--r--source/eu/sc/source/ui/formdlg.po2
-rw-r--r--source/eu/sc/source/ui/miscdlgs.po2
-rw-r--r--source/eu/sc/source/ui/navipi.po2
-rw-r--r--source/eu/sc/source/ui/optdlg.po2
-rw-r--r--source/eu/sc/source/ui/pagedlg.po2
-rw-r--r--source/eu/sc/source/ui/src.po379
-rw-r--r--source/eu/sc/source/ui/styleui.po2
-rw-r--r--source/eu/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/eu/scaddins/source/analysis.po2
-rw-r--r--source/eu/scaddins/source/datefunc.po2
-rw-r--r--source/eu/scaddins/source/pricing.po2
-rw-r--r--source/eu/sccomp/source/solver.po2
-rw-r--r--source/eu/scp2/source/accessories.po2
-rw-r--r--source/eu/scp2/source/activex.po2
-rw-r--r--source/eu/scp2/source/base.po2
-rw-r--r--source/eu/scp2/source/calc.po2
-rw-r--r--source/eu/scp2/source/draw.po2
-rw-r--r--source/eu/scp2/source/extensions.po2
-rw-r--r--source/eu/scp2/source/gnome.po2
-rw-r--r--source/eu/scp2/source/graphicfilter.po2
-rw-r--r--source/eu/scp2/source/impress.po2
-rw-r--r--source/eu/scp2/source/javafilter.po2
-rw-r--r--source/eu/scp2/source/kde.po2
-rw-r--r--source/eu/scp2/source/math.po2
-rw-r--r--source/eu/scp2/source/onlineupdate.po2
-rw-r--r--source/eu/scp2/source/ooo.po2
-rw-r--r--source/eu/scp2/source/python.po18
-rw-r--r--source/eu/scp2/source/quickstart.po2
-rw-r--r--source/eu/scp2/source/sdkoo.po2
-rw-r--r--source/eu/scp2/source/smoketest.po2
-rw-r--r--source/eu/scp2/source/stdlibs.po2
-rw-r--r--source/eu/scp2/source/tde.po2
-rw-r--r--source/eu/scp2/source/winexplorerext.po2
-rw-r--r--source/eu/scp2/source/writer.po2
-rw-r--r--source/eu/scp2/source/xsltfilter.po2
-rw-r--r--source/eu/sd/source/core.po2
-rw-r--r--source/eu/sd/source/filter/html.po2
-rw-r--r--source/eu/sd/source/ui/accessibility.po2
-rw-r--r--source/eu/sd/source/ui/animations.po2
-rw-r--r--source/eu/sd/source/ui/annotations.po2
-rw-r--r--source/eu/sd/source/ui/app.po2
-rw-r--r--source/eu/sd/source/ui/dlg.po2
-rw-r--r--source/eu/sd/source/ui/slideshow.po2
-rw-r--r--source/eu/sd/source/ui/table.po2
-rw-r--r--source/eu/sd/source/ui/view.po2
-rw-r--r--source/eu/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/eu/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/eu/sdext/source/minimizer.po2
-rw-r--r--source/eu/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eu/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/eu/setup_native/source/mac.po2
-rw-r--r--source/eu/sfx2/source/appl.po2
-rw-r--r--source/eu/sfx2/source/bastyp.po2
-rw-r--r--source/eu/sfx2/source/control.po23
-rw-r--r--source/eu/sfx2/source/dialog.po46
-rw-r--r--source/eu/sfx2/source/doc.po126
-rw-r--r--source/eu/sfx2/source/menu.po2
-rw-r--r--source/eu/sfx2/source/view.po2
-rw-r--r--source/eu/sfx2/uiconfig/ui.po2
-rw-r--r--source/eu/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/eu/starmath/source.po2
-rw-r--r--source/eu/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/eu/svl/source/items.po2
-rw-r--r--source/eu/svl/source/misc.po2
-rw-r--r--source/eu/svtools/source/contnr.po2
-rw-r--r--source/eu/svtools/source/control.po2
-rw-r--r--source/eu/svtools/source/dialogs.po2
-rw-r--r--source/eu/svtools/source/java.po2
-rw-r--r--source/eu/svtools/source/misc.po2
-rw-r--r--source/eu/svtools/source/toolpanel.po2
-rw-r--r--source/eu/svtools/uiconfig/ui.po53
-rw-r--r--source/eu/svx/inc.po2
-rw-r--r--source/eu/svx/source/accessibility.po2
-rw-r--r--source/eu/svx/source/core.po2
-rw-r--r--source/eu/svx/source/dialog.po224
-rw-r--r--source/eu/svx/source/engine3d.po2
-rw-r--r--source/eu/svx/source/fmcomp.po2
-rw-r--r--source/eu/svx/source/form.po2
-rw-r--r--source/eu/svx/source/gallery2.po2
-rw-r--r--source/eu/svx/source/items.po2
-rw-r--r--source/eu/svx/source/src.po2
-rw-r--r--source/eu/svx/source/stbctrls.po2
-rw-r--r--source/eu/svx/source/svdraw.po2
-rw-r--r--source/eu/svx/source/table.po2
-rw-r--r--source/eu/svx/source/tbxctrls.po2
-rw-r--r--source/eu/svx/source/toolbars.po2
-rw-r--r--source/eu/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/eu/svx/uiconfig/ui.po204
-rw-r--r--source/eu/sw/source/core/layout.po2
-rw-r--r--source/eu/sw/source/core/undo.po2
-rw-r--r--source/eu/sw/source/core/unocore.po2
-rw-r--r--source/eu/sw/source/ui/app.po2
-rw-r--r--source/eu/sw/source/ui/chrdlg.po2
-rw-r--r--source/eu/sw/source/ui/config.po2
-rw-r--r--source/eu/sw/source/ui/dbui.po2
-rw-r--r--source/eu/sw/source/ui/dialog.po2
-rw-r--r--source/eu/sw/source/ui/dochdl.po2
-rw-r--r--source/eu/sw/source/ui/docvw.po2
-rw-r--r--source/eu/sw/source/ui/envelp.po2
-rw-r--r--source/eu/sw/source/ui/fldui.po2
-rw-r--r--source/eu/sw/source/ui/fmtui.po2
-rw-r--r--source/eu/sw/source/ui/frmdlg.po2
-rw-r--r--source/eu/sw/source/ui/globdoc.po2
-rw-r--r--source/eu/sw/source/ui/index.po2
-rw-r--r--source/eu/sw/source/ui/lingu.po2
-rw-r--r--source/eu/sw/source/ui/misc.po2
-rw-r--r--source/eu/sw/source/ui/ribbar.po2
-rw-r--r--source/eu/sw/source/ui/shells.po2
-rw-r--r--source/eu/sw/source/ui/smartmenu.po2
-rw-r--r--source/eu/sw/source/ui/table.po2
-rw-r--r--source/eu/sw/source/ui/uiview.po2
-rw-r--r--source/eu/sw/source/ui/utlui.po2
-rw-r--r--source/eu/sw/source/ui/web.po2
-rw-r--r--source/eu/sw/source/ui/wrtsh.po2
-rw-r--r--source/eu/sw/uiconfig/sw/ui.po283
-rw-r--r--source/eu/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/eu/swext/mediawiki/help.po2
-rw-r--r--source/eu/swext/mediawiki/src.po2
-rw-r--r--source/eu/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/eu/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/eu/sysui/desktop/share.po2
-rw-r--r--source/eu/tubes/uiconfig/ui.po2
-rw-r--r--source/eu/uui/source.po2
-rw-r--r--source/eu/vcl/qa/cppunit/builder.po2
-rw-r--r--source/eu/vcl/source/edit.po2
-rw-r--r--source/eu/vcl/source/src.po2
-rw-r--r--source/eu/vcl/uiconfig/ui.po2
-rw-r--r--source/eu/wizards/source/euro.po2
-rw-r--r--source/eu/wizards/source/formwizard.po2
-rw-r--r--source/eu/wizards/source/importwizard.po2
-rw-r--r--source/eu/wizards/source/template.po2
-rw-r--r--source/eu/xmlsecurity/source/component.po2
-rw-r--r--source/eu/xmlsecurity/source/dialogs.po2
-rw-r--r--source/fa/accessibility/source/helper.po2
-rw-r--r--source/fa/android/sdremote/res/values.po2
-rw-r--r--source/fa/avmedia/source/framework.po2
-rw-r--r--source/fa/avmedia/source/viewer.po2
-rw-r--r--source/fa/basctl/source/basicide.po2
-rw-r--r--source/fa/basctl/source/dlged.po2
-rw-r--r--source/fa/basctl/uiconfig/basicide/ui.po15
-rw-r--r--source/fa/basic/source/classes.po2
-rw-r--r--source/fa/basic/source/sbx.po2
-rw-r--r--source/fa/chart2/source/controller/dialogs.po2
-rw-r--r--source/fa/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/connectivity/source/resource.po2
-rw-r--r--source/fa/cui/source/customize.po2
-rw-r--r--source/fa/cui/source/dialogs.po2
-rw-r--r--source/fa/cui/source/options.po2
-rw-r--r--source/fa/cui/source/tabpages.po2
-rw-r--r--source/fa/cui/uiconfig/ui.po2
-rw-r--r--source/fa/dbaccess/source/core/resource.po2
-rw-r--r--source/fa/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/fa/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/fa/dbaccess/source/ui/app.po2
-rw-r--r--source/fa/dbaccess/source/ui/browser.po2
-rw-r--r--source/fa/dbaccess/source/ui/control.po2
-rw-r--r--source/fa/dbaccess/source/ui/dlg.po8
-rw-r--r--source/fa/dbaccess/source/ui/inc.po2
-rw-r--r--source/fa/dbaccess/source/ui/misc.po2
-rw-r--r--source/fa/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/fa/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/fa/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/fa/dbaccess/source/ui/uno.po2
-rw-r--r--source/fa/desktop/source/app.po8
-rw-r--r--source/fa/desktop/source/deployment/gui.po8
-rw-r--r--source/fa/desktop/source/deployment/manager.po2
-rw-r--r--source/fa/desktop/source/deployment/misc.po2
-rw-r--r--source/fa/desktop/source/deployment/registry.po2
-rw-r--r--source/fa/desktop/source/deployment/registry/component.po2
-rw-r--r--source/fa/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/fa/desktop/source/deployment/registry/help.po2
-rw-r--r--source/fa/desktop/source/deployment/registry/package.po2
-rw-r--r--source/fa/desktop/source/deployment/registry/script.po2
-rw-r--r--source/fa/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/fa/desktop/source/deployment/unopkg.po2
-rw-r--r--source/fa/desktop/uiconfig/ui.po2
-rw-r--r--source/fa/dictionaries/af_ZA.po2
-rw-r--r--source/fa/dictionaries/an_ES.po2
-rw-r--r--source/fa/dictionaries/ar.po2
-rw-r--r--source/fa/dictionaries/be_BY.po2
-rw-r--r--source/fa/dictionaries/bg_BG.po2
-rw-r--r--source/fa/dictionaries/bn_BD.po2
-rw-r--r--source/fa/dictionaries/br_FR.po2
-rw-r--r--source/fa/dictionaries/ca.po2
-rw-r--r--source/fa/dictionaries/cs_CZ.po2
-rw-r--r--source/fa/dictionaries/da_DK.po2
-rw-r--r--source/fa/dictionaries/de.po2
-rw-r--r--source/fa/dictionaries/el_GR.po2
-rw-r--r--source/fa/dictionaries/en.po2
-rw-r--r--source/fa/dictionaries/en/dialog.po2
-rw-r--r--source/fa/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fa/dictionaries/es.po2
-rw-r--r--source/fa/dictionaries/et_EE.po2
-rw-r--r--source/fa/dictionaries/fr_FR.po2
-rw-r--r--source/fa/dictionaries/gd_GB.po2
-rw-r--r--source/fa/dictionaries/gl.po2
-rw-r--r--source/fa/dictionaries/gu_IN.po2
-rw-r--r--source/fa/dictionaries/he_IL.po2
-rw-r--r--source/fa/dictionaries/hi_IN.po2
-rw-r--r--source/fa/dictionaries/hr_HR.po2
-rw-r--r--source/fa/dictionaries/hu_HU.po2
-rw-r--r--source/fa/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/fa/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fa/dictionaries/it_IT.po2
-rw-r--r--source/fa/dictionaries/ku_TR.po2
-rw-r--r--source/fa/dictionaries/lt_LT.po2
-rw-r--r--source/fa/dictionaries/lv_LV.po2
-rw-r--r--source/fa/dictionaries/ne_NP.po2
-rw-r--r--source/fa/dictionaries/nl_NL.po2
-rw-r--r--source/fa/dictionaries/no.po2
-rw-r--r--source/fa/dictionaries/oc_FR.po2
-rw-r--r--source/fa/dictionaries/pl_PL.po2
-rw-r--r--source/fa/dictionaries/pt_BR.po2
-rw-r--r--source/fa/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/fa/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fa/dictionaries/pt_PT.po2
-rw-r--r--source/fa/dictionaries/ro.po2
-rw-r--r--source/fa/dictionaries/ru_RU.po2
-rw-r--r--source/fa/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/fa/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fa/dictionaries/si_LK.po2
-rw-r--r--source/fa/dictionaries/sk_SK.po2
-rw-r--r--source/fa/dictionaries/sl_SI.po2
-rw-r--r--source/fa/dictionaries/sr.po2
-rw-r--r--source/fa/dictionaries/sv_SE.po2
-rw-r--r--source/fa/dictionaries/sw_TZ.po2
-rw-r--r--source/fa/dictionaries/te_IN.po2
-rw-r--r--source/fa/dictionaries/th_TH.po2
-rw-r--r--source/fa/dictionaries/uk_UA.po2
-rw-r--r--source/fa/dictionaries/vi.po2
-rw-r--r--source/fa/dictionaries/zu_ZA.po2
-rw-r--r--source/fa/editeng/source/accessibility.po2
-rw-r--r--source/fa/editeng/source/editeng.po2
-rw-r--r--source/fa/editeng/source/items.po2
-rw-r--r--source/fa/editeng/source/misc.po2
-rw-r--r--source/fa/editeng/source/outliner.po2
-rw-r--r--source/fa/extensions/source/abpilot.po2
-rw-r--r--source/fa/extensions/source/bibliography.po2
-rw-r--r--source/fa/extensions/source/dbpilots.po2
-rw-r--r--source/fa/extensions/source/propctrlr.po2
-rw-r--r--source/fa/extensions/source/scanner.po2
-rw-r--r--source/fa/extensions/source/update/check.po2
-rw-r--r--source/fa/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/fa/filter/source/config/fragments/filters.po2
-rw-r--r--source/fa/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/fa/filter/source/config/fragments/types.po2
-rw-r--r--source/fa/filter/source/flash.po2
-rw-r--r--source/fa/filter/source/graphicfilter/eps.po2
-rw-r--r--source/fa/filter/source/pdf.po2
-rw-r--r--source/fa/filter/source/t602.po2
-rw-r--r--source/fa/filter/source/xsltdialog.po2
-rw-r--r--source/fa/filter/uiconfig/ui.po2
-rw-r--r--source/fa/forms/source/resource.po2
-rw-r--r--source/fa/formula/source/core/resource.po43
-rw-r--r--source/fa/formula/source/ui/dlg.po2
-rw-r--r--source/fa/fpicker/source/office.po8
-rw-r--r--source/fa/framework/source/classes.po2
-rw-r--r--source/fa/framework/source/services.po2
-rw-r--r--source/fa/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/fa/librelogo/source/pythonpath.po2
-rw-r--r--source/fa/mysqlc/source.po2
-rw-r--r--source/fa/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fa/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/fa/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/fa/nlpsolver/src/locale.po2
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/fa/padmin/source.po17
-rw-r--r--source/fa/readlicense_oo/docs.po2
-rw-r--r--source/fa/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/fa/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fa/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/fa/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/fa/reportbuilder/util.po2
-rw-r--r--source/fa/reportdesign/source/core/resource.po2
-rw-r--r--source/fa/reportdesign/source/ui/dlg.po2
-rw-r--r--source/fa/reportdesign/source/ui/inspection.po2
-rw-r--r--source/fa/reportdesign/source/ui/report.po2
-rw-r--r--source/fa/sc/source/core/src.po2
-rw-r--r--source/fa/sc/source/ui/cctrl.po2
-rw-r--r--source/fa/sc/source/ui/dbgui.po2
-rw-r--r--source/fa/sc/source/ui/docshell.po2
-rw-r--r--source/fa/sc/source/ui/drawfunc.po2
-rw-r--r--source/fa/sc/source/ui/formdlg.po2
-rw-r--r--source/fa/sc/source/ui/miscdlgs.po2
-rw-r--r--source/fa/sc/source/ui/navipi.po2
-rw-r--r--source/fa/sc/source/ui/optdlg.po2
-rw-r--r--source/fa/sc/source/ui/pagedlg.po2
-rw-r--r--source/fa/sc/source/ui/src.po413
-rw-r--r--source/fa/sc/source/ui/styleui.po2
-rw-r--r--source/fa/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/fa/scaddins/source/analysis.po2
-rw-r--r--source/fa/scaddins/source/datefunc.po2
-rw-r--r--source/fa/scaddins/source/pricing.po2
-rw-r--r--source/fa/sccomp/source/solver.po2
-rw-r--r--source/fa/scp2/source/accessories.po2
-rw-r--r--source/fa/scp2/source/activex.po2
-rw-r--r--source/fa/scp2/source/base.po2
-rw-r--r--source/fa/scp2/source/calc.po2
-rw-r--r--source/fa/scp2/source/draw.po2
-rw-r--r--source/fa/scp2/source/extensions.po2
-rw-r--r--source/fa/scp2/source/gnome.po2
-rw-r--r--source/fa/scp2/source/graphicfilter.po2
-rw-r--r--source/fa/scp2/source/impress.po2
-rw-r--r--source/fa/scp2/source/javafilter.po2
-rw-r--r--source/fa/scp2/source/kde.po2
-rw-r--r--source/fa/scp2/source/math.po2
-rw-r--r--source/fa/scp2/source/onlineupdate.po2
-rw-r--r--source/fa/scp2/source/ooo.po2
-rw-r--r--source/fa/scp2/source/python.po18
-rw-r--r--source/fa/scp2/source/quickstart.po2
-rw-r--r--source/fa/scp2/source/sdkoo.po2
-rw-r--r--source/fa/scp2/source/smoketest.po2
-rw-r--r--source/fa/scp2/source/stdlibs.po2
-rw-r--r--source/fa/scp2/source/tde.po2
-rw-r--r--source/fa/scp2/source/winexplorerext.po2
-rw-r--r--source/fa/scp2/source/writer.po2
-rw-r--r--source/fa/scp2/source/xsltfilter.po2
-rw-r--r--source/fa/sd/source/core.po2
-rw-r--r--source/fa/sd/source/filter/html.po2
-rw-r--r--source/fa/sd/source/ui/accessibility.po2
-rw-r--r--source/fa/sd/source/ui/animations.po2
-rw-r--r--source/fa/sd/source/ui/annotations.po2
-rw-r--r--source/fa/sd/source/ui/app.po2
-rw-r--r--source/fa/sd/source/ui/dlg.po2
-rw-r--r--source/fa/sd/source/ui/slideshow.po2
-rw-r--r--source/fa/sd/source/ui/table.po2
-rw-r--r--source/fa/sd/source/ui/view.po2
-rw-r--r--source/fa/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/fa/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/fa/sdext/source/minimizer.po2
-rw-r--r--source/fa/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fa/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/fa/setup_native/source/mac.po2
-rw-r--r--source/fa/sfx2/source/appl.po2
-rw-r--r--source/fa/sfx2/source/bastyp.po2
-rw-r--r--source/fa/sfx2/source/control.po23
-rw-r--r--source/fa/sfx2/source/dialog.po46
-rw-r--r--source/fa/sfx2/source/doc.po126
-rw-r--r--source/fa/sfx2/source/menu.po2
-rw-r--r--source/fa/sfx2/source/view.po2
-rw-r--r--source/fa/sfx2/uiconfig/ui.po2
-rw-r--r--source/fa/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/fa/starmath/source.po2
-rw-r--r--source/fa/starmath/uiconfig/smath/ui.po17
-rw-r--r--source/fa/svl/source/items.po2
-rw-r--r--source/fa/svl/source/misc.po2
-rw-r--r--source/fa/svtools/source/contnr.po2
-rw-r--r--source/fa/svtools/source/control.po2
-rw-r--r--source/fa/svtools/source/dialogs.po2
-rw-r--r--source/fa/svtools/source/java.po2
-rw-r--r--source/fa/svtools/source/misc.po2
-rw-r--r--source/fa/svtools/source/toolpanel.po2
-rw-r--r--source/fa/svtools/uiconfig/ui.po53
-rw-r--r--source/fa/svx/inc.po2
-rw-r--r--source/fa/svx/source/accessibility.po2
-rw-r--r--source/fa/svx/source/core.po2
-rw-r--r--source/fa/svx/source/dialog.po224
-rw-r--r--source/fa/svx/source/engine3d.po2
-rw-r--r--source/fa/svx/source/fmcomp.po2
-rw-r--r--source/fa/svx/source/form.po2
-rw-r--r--source/fa/svx/source/gallery2.po2
-rw-r--r--source/fa/svx/source/items.po2
-rw-r--r--source/fa/svx/source/src.po2
-rw-r--r--source/fa/svx/source/stbctrls.po2
-rw-r--r--source/fa/svx/source/svdraw.po2
-rw-r--r--source/fa/svx/source/table.po2
-rw-r--r--source/fa/svx/source/tbxctrls.po2
-rw-r--r--source/fa/svx/source/toolbars.po2
-rw-r--r--source/fa/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/fa/svx/uiconfig/ui.po204
-rw-r--r--source/fa/sw/source/core/layout.po2
-rw-r--r--source/fa/sw/source/core/undo.po2
-rw-r--r--source/fa/sw/source/core/unocore.po2
-rw-r--r--source/fa/sw/source/ui/app.po2
-rw-r--r--source/fa/sw/source/ui/chrdlg.po2
-rw-r--r--source/fa/sw/source/ui/config.po2
-rw-r--r--source/fa/sw/source/ui/dbui.po2
-rw-r--r--source/fa/sw/source/ui/dialog.po2
-rw-r--r--source/fa/sw/source/ui/dochdl.po2
-rw-r--r--source/fa/sw/source/ui/docvw.po2
-rw-r--r--source/fa/sw/source/ui/envelp.po2
-rw-r--r--source/fa/sw/source/ui/fldui.po2
-rw-r--r--source/fa/sw/source/ui/fmtui.po2
-rw-r--r--source/fa/sw/source/ui/frmdlg.po2
-rw-r--r--source/fa/sw/source/ui/globdoc.po2
-rw-r--r--source/fa/sw/source/ui/index.po2
-rw-r--r--source/fa/sw/source/ui/lingu.po2
-rw-r--r--source/fa/sw/source/ui/misc.po2
-rw-r--r--source/fa/sw/source/ui/ribbar.po2
-rw-r--r--source/fa/sw/source/ui/shells.po2
-rw-r--r--source/fa/sw/source/ui/smartmenu.po2
-rw-r--r--source/fa/sw/source/ui/table.po2
-rw-r--r--source/fa/sw/source/ui/uiview.po2
-rw-r--r--source/fa/sw/source/ui/utlui.po2
-rw-r--r--source/fa/sw/source/ui/web.po2
-rw-r--r--source/fa/sw/source/ui/wrtsh.po2
-rw-r--r--source/fa/sw/uiconfig/sw/ui.po287
-rw-r--r--source/fa/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/fa/swext/mediawiki/help.po2
-rw-r--r--source/fa/swext/mediawiki/src.po2
-rw-r--r--source/fa/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fa/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/fa/sysui/desktop/share.po2
-rw-r--r--source/fa/tubes/uiconfig/ui.po20
-rw-r--r--source/fa/uui/source.po2
-rw-r--r--source/fa/vcl/qa/cppunit/builder.po2
-rw-r--r--source/fa/vcl/source/edit.po2
-rw-r--r--source/fa/vcl/source/src.po2
-rw-r--r--source/fa/vcl/uiconfig/ui.po2
-rw-r--r--source/fa/wizards/source/euro.po2
-rw-r--r--source/fa/wizards/source/formwizard.po2
-rw-r--r--source/fa/wizards/source/importwizard.po2
-rw-r--r--source/fa/wizards/source/template.po2
-rw-r--r--source/fa/xmlsecurity/source/component.po2
-rw-r--r--source/fa/xmlsecurity/source/dialogs.po2
-rw-r--r--source/fi/accessibility/source/helper.po2
-rw-r--r--source/fi/android/sdremote/res/values.po117
-rw-r--r--source/fi/avmedia/source/framework.po2
-rw-r--r--source/fi/avmedia/source/viewer.po2
-rw-r--r--source/fi/basctl/source/basicide.po2
-rw-r--r--source/fi/basctl/source/dlged.po2
-rw-r--r--source/fi/basctl/uiconfig/basicide/ui.po19
-rw-r--r--source/fi/basic/source/classes.po2
-rw-r--r--source/fi/basic/source/sbx.po2
-rw-r--r--source/fi/chart2/source/controller/dialogs.po2
-rw-r--r--source/fi/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/connectivity/source/resource.po2
-rw-r--r--source/fi/cui/source/customize.po16
-rw-r--r--source/fi/cui/source/dialogs.po20
-rw-r--r--source/fi/cui/source/options.po33
-rw-r--r--source/fi/cui/source/tabpages.po28
-rw-r--r--source/fi/cui/uiconfig/ui.po194
-rw-r--r--source/fi/dbaccess/source/core/resource.po2
-rw-r--r--source/fi/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/fi/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/fi/dbaccess/source/ui/app.po2
-rw-r--r--source/fi/dbaccess/source/ui/browser.po13
-rw-r--r--source/fi/dbaccess/source/ui/control.po2
-rw-r--r--source/fi/dbaccess/source/ui/dlg.po8
-rw-r--r--source/fi/dbaccess/source/ui/inc.po2
-rw-r--r--source/fi/dbaccess/source/ui/misc.po2
-rw-r--r--source/fi/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/fi/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/fi/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/fi/dbaccess/source/ui/uno.po2
-rw-r--r--source/fi/desktop/source/app.po2
-rw-r--r--source/fi/desktop/source/deployment/gui.po2
-rw-r--r--source/fi/desktop/source/deployment/manager.po2
-rw-r--r--source/fi/desktop/source/deployment/misc.po2
-rw-r--r--source/fi/desktop/source/deployment/registry.po2
-rw-r--r--source/fi/desktop/source/deployment/registry/component.po2
-rw-r--r--source/fi/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/fi/desktop/source/deployment/registry/help.po2
-rw-r--r--source/fi/desktop/source/deployment/registry/package.po2
-rw-r--r--source/fi/desktop/source/deployment/registry/script.po2
-rw-r--r--source/fi/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/fi/desktop/source/deployment/unopkg.po2
-rw-r--r--source/fi/desktop/uiconfig/ui.po28
-rw-r--r--source/fi/dictionaries/af_ZA.po2
-rw-r--r--source/fi/dictionaries/an_ES.po2
-rw-r--r--source/fi/dictionaries/ar.po2
-rw-r--r--source/fi/dictionaries/be_BY.po2
-rw-r--r--source/fi/dictionaries/bg_BG.po2
-rw-r--r--source/fi/dictionaries/bn_BD.po2
-rw-r--r--source/fi/dictionaries/br_FR.po2
-rw-r--r--source/fi/dictionaries/ca.po2
-rw-r--r--source/fi/dictionaries/cs_CZ.po2
-rw-r--r--source/fi/dictionaries/da_DK.po2
-rw-r--r--source/fi/dictionaries/de.po2
-rw-r--r--source/fi/dictionaries/el_GR.po2
-rw-r--r--source/fi/dictionaries/en.po2
-rw-r--r--source/fi/dictionaries/en/dialog.po2
-rw-r--r--source/fi/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fi/dictionaries/es.po13
-rw-r--r--source/fi/dictionaries/et_EE.po2
-rw-r--r--source/fi/dictionaries/fr_FR.po2
-rw-r--r--source/fi/dictionaries/gd_GB.po2
-rw-r--r--source/fi/dictionaries/gl.po2
-rw-r--r--source/fi/dictionaries/gu_IN.po2
-rw-r--r--source/fi/dictionaries/he_IL.po2
-rw-r--r--source/fi/dictionaries/hi_IN.po2
-rw-r--r--source/fi/dictionaries/hr_HR.po2
-rw-r--r--source/fi/dictionaries/hu_HU.po2
-rw-r--r--source/fi/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/fi/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fi/dictionaries/it_IT.po2
-rw-r--r--source/fi/dictionaries/ku_TR.po2
-rw-r--r--source/fi/dictionaries/lt_LT.po2
-rw-r--r--source/fi/dictionaries/lv_LV.po2
-rw-r--r--source/fi/dictionaries/ne_NP.po2
-rw-r--r--source/fi/dictionaries/nl_NL.po2
-rw-r--r--source/fi/dictionaries/no.po2
-rw-r--r--source/fi/dictionaries/oc_FR.po2
-rw-r--r--source/fi/dictionaries/pl_PL.po2
-rw-r--r--source/fi/dictionaries/pt_BR.po8
-rw-r--r--source/fi/dictionaries/pt_BR/dialog.po87
-rw-r--r--source/fi/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po17
-rw-r--r--source/fi/dictionaries/pt_PT.po2
-rw-r--r--source/fi/dictionaries/ro.po2
-rw-r--r--source/fi/dictionaries/ru_RU.po2
-rw-r--r--source/fi/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/fi/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fi/dictionaries/si_LK.po2
-rw-r--r--source/fi/dictionaries/sk_SK.po2
-rw-r--r--source/fi/dictionaries/sl_SI.po2
-rw-r--r--source/fi/dictionaries/sr.po2
-rw-r--r--source/fi/dictionaries/sv_SE.po2
-rw-r--r--source/fi/dictionaries/sw_TZ.po2
-rw-r--r--source/fi/dictionaries/te_IN.po2
-rw-r--r--source/fi/dictionaries/th_TH.po2
-rw-r--r--source/fi/dictionaries/uk_UA.po2
-rw-r--r--source/fi/dictionaries/vi.po2
-rw-r--r--source/fi/dictionaries/zu_ZA.po2
-rw-r--r--source/fi/editeng/source/accessibility.po2
-rw-r--r--source/fi/editeng/source/editeng.po2
-rw-r--r--source/fi/editeng/source/items.po2
-rw-r--r--source/fi/editeng/source/misc.po2
-rw-r--r--source/fi/editeng/source/outliner.po2
-rw-r--r--source/fi/extensions/source/abpilot.po2
-rw-r--r--source/fi/extensions/source/bibliography.po2
-rw-r--r--source/fi/extensions/source/dbpilots.po2
-rw-r--r--source/fi/extensions/source/propctrlr.po20
-rw-r--r--source/fi/extensions/source/scanner.po2
-rw-r--r--source/fi/extensions/source/update/check.po2
-rw-r--r--source/fi/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/fi/filter/source/config/fragments/filters.po2
-rw-r--r--source/fi/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/fi/filter/source/config/fragments/types.po2
-rw-r--r--source/fi/filter/source/flash.po2
-rw-r--r--source/fi/filter/source/graphicfilter/eps.po2
-rw-r--r--source/fi/filter/source/pdf.po18
-rw-r--r--source/fi/filter/source/t602.po2
-rw-r--r--source/fi/filter/source/xsltdialog.po10
-rw-r--r--source/fi/filter/uiconfig/ui.po41
-rw-r--r--source/fi/forms/source/resource.po2
-rw-r--r--source/fi/formula/source/core/resource.po44
-rw-r--r--source/fi/formula/source/ui/dlg.po2
-rw-r--r--source/fi/fpicker/source/office.po7
-rw-r--r--source/fi/framework/source/classes.po2
-rw-r--r--source/fi/framework/source/services.po2
-rw-r--r--source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--source/fi/librelogo/source/pythonpath.po2
-rw-r--r--source/fi/mysqlc/source.po2
-rw-r--r--source/fi/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fi/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po10
-rw-r--r--source/fi/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/fi/nlpsolver/src/locale.po2
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office.po170
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po82
-rw-r--r--source/fi/padmin/source.po18
-rw-r--r--source/fi/readlicense_oo/docs.po2
-rw-r--r--source/fi/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/fi/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fi/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/fi/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/fi/reportbuilder/util.po2
-rw-r--r--source/fi/reportdesign/source/core/resource.po2
-rw-r--r--source/fi/reportdesign/source/ui/dlg.po2
-rw-r--r--source/fi/reportdesign/source/ui/inspection.po2
-rw-r--r--source/fi/reportdesign/source/ui/report.po2
-rw-r--r--source/fi/sc/source/core/src.po2
-rw-r--r--source/fi/sc/source/ui/cctrl.po2
-rw-r--r--source/fi/sc/source/ui/dbgui.po12
-rw-r--r--source/fi/sc/source/ui/docshell.po2
-rw-r--r--source/fi/sc/source/ui/drawfunc.po14
-rw-r--r--source/fi/sc/source/ui/formdlg.po2
-rw-r--r--source/fi/sc/source/ui/miscdlgs.po2
-rw-r--r--source/fi/sc/source/ui/navipi.po2
-rw-r--r--source/fi/sc/source/ui/optdlg.po10
-rw-r--r--source/fi/sc/source/ui/pagedlg.po2
-rw-r--r--source/fi/sc/source/ui/src.po585
-rw-r--r--source/fi/sc/source/ui/styleui.po22
-rw-r--r--source/fi/sc/uiconfig/scalc/ui.po49
-rw-r--r--source/fi/scaddins/source/analysis.po2
-rw-r--r--source/fi/scaddins/source/datefunc.po2
-rw-r--r--source/fi/scaddins/source/pricing.po2
-rw-r--r--source/fi/sccomp/source/solver.po2
-rw-r--r--source/fi/scp2/source/accessories.po2
-rw-r--r--source/fi/scp2/source/activex.po2
-rw-r--r--source/fi/scp2/source/base.po2
-rw-r--r--source/fi/scp2/source/calc.po2
-rw-r--r--source/fi/scp2/source/draw.po2
-rw-r--r--source/fi/scp2/source/extensions.po2
-rw-r--r--source/fi/scp2/source/gnome.po2
-rw-r--r--source/fi/scp2/source/graphicfilter.po2
-rw-r--r--source/fi/scp2/source/impress.po2
-rw-r--r--source/fi/scp2/source/javafilter.po2
-rw-r--r--source/fi/scp2/source/kde.po2
-rw-r--r--source/fi/scp2/source/math.po2
-rw-r--r--source/fi/scp2/source/onlineupdate.po2
-rw-r--r--source/fi/scp2/source/ooo.po22
-rw-r--r--source/fi/scp2/source/python.po24
-rw-r--r--source/fi/scp2/source/quickstart.po2
-rw-r--r--source/fi/scp2/source/sdkoo.po2
-rw-r--r--source/fi/scp2/source/smoketest.po2
-rw-r--r--source/fi/scp2/source/stdlibs.po2
-rw-r--r--source/fi/scp2/source/tde.po2
-rw-r--r--source/fi/scp2/source/winexplorerext.po2
-rw-r--r--source/fi/scp2/source/writer.po2
-rw-r--r--source/fi/scp2/source/xsltfilter.po2
-rw-r--r--source/fi/sd/source/core.po2
-rw-r--r--source/fi/sd/source/filter/html.po2
-rw-r--r--source/fi/sd/source/ui/accessibility.po2
-rw-r--r--source/fi/sd/source/ui/animations.po19
-rw-r--r--source/fi/sd/source/ui/annotations.po2
-rw-r--r--source/fi/sd/source/ui/app.po15
-rw-r--r--source/fi/sd/source/ui/dlg.po21
-rw-r--r--source/fi/sd/source/ui/slideshow.po2
-rw-r--r--source/fi/sd/source/ui/table.po18
-rw-r--r--source/fi/sd/source/ui/view.po2
-rw-r--r--source/fi/sd/uiconfig/sdraw/ui.po13
-rw-r--r--source/fi/sd/uiconfig/simpress/ui.po13
-rw-r--r--source/fi/sdext/source/minimizer.po2
-rw-r--r--source/fi/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fi/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/fi/setup_native/source/mac.po2
-rw-r--r--source/fi/sfx2/source/appl.po14
-rw-r--r--source/fi/sfx2/source/bastyp.po2
-rw-r--r--source/fi/sfx2/source/control.po24
-rw-r--r--source/fi/sfx2/source/dialog.po64
-rw-r--r--source/fi/sfx2/source/doc.po198
-rw-r--r--source/fi/sfx2/source/menu.po2
-rw-r--r--source/fi/sfx2/source/view.po16
-rw-r--r--source/fi/sfx2/uiconfig/ui.po25
-rw-r--r--source/fi/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/fi/starmath/source.po2
-rw-r--r--source/fi/starmath/uiconfig/smath/ui.po16
-rw-r--r--source/fi/svl/source/items.po2
-rw-r--r--source/fi/svl/source/misc.po2
-rw-r--r--source/fi/svtools/source/contnr.po14
-rw-r--r--source/fi/svtools/source/control.po2
-rw-r--r--source/fi/svtools/source/dialogs.po2
-rw-r--r--source/fi/svtools/source/java.po2
-rw-r--r--source/fi/svtools/source/misc.po70
-rw-r--r--source/fi/svtools/source/toolpanel.po2
-rw-r--r--source/fi/svtools/uiconfig/ui.po91
-rw-r--r--source/fi/svx/inc.po17
-rw-r--r--source/fi/svx/source/accessibility.po2
-rw-r--r--source/fi/svx/source/core.po2
-rw-r--r--source/fi/svx/source/dialog.po251
-rw-r--r--source/fi/svx/source/engine3d.po2
-rw-r--r--source/fi/svx/source/fmcomp.po2
-rw-r--r--source/fi/svx/source/form.po2
-rw-r--r--source/fi/svx/source/gallery2.po2
-rw-r--r--source/fi/svx/source/items.po2
-rw-r--r--source/fi/svx/source/src.po8
-rw-r--r--source/fi/svx/source/stbctrls.po2
-rw-r--r--source/fi/svx/source/svdraw.po16
-rw-r--r--source/fi/svx/source/table.po2
-rw-r--r--source/fi/svx/source/tbxctrls.po2
-rw-r--r--source/fi/svx/source/toolbars.po2
-rw-r--r--source/fi/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/fi/svx/uiconfig/ui.po205
-rw-r--r--source/fi/sw/source/core/layout.po2
-rw-r--r--source/fi/sw/source/core/undo.po2
-rw-r--r--source/fi/sw/source/core/unocore.po2
-rw-r--r--source/fi/sw/source/ui/app.po2
-rw-r--r--source/fi/sw/source/ui/chrdlg.po2
-rw-r--r--source/fi/sw/source/ui/config.po2
-rw-r--r--source/fi/sw/source/ui/dbui.po2
-rw-r--r--source/fi/sw/source/ui/dialog.po2
-rw-r--r--source/fi/sw/source/ui/dochdl.po2
-rw-r--r--source/fi/sw/source/ui/docvw.po2
-rw-r--r--source/fi/sw/source/ui/envelp.po2
-rw-r--r--source/fi/sw/source/ui/fldui.po2
-rw-r--r--source/fi/sw/source/ui/fmtui.po2
-rw-r--r--source/fi/sw/source/ui/frmdlg.po2
-rw-r--r--source/fi/sw/source/ui/globdoc.po2
-rw-r--r--source/fi/sw/source/ui/index.po2
-rw-r--r--source/fi/sw/source/ui/lingu.po2
-rw-r--r--source/fi/sw/source/ui/misc.po2
-rw-r--r--source/fi/sw/source/ui/ribbar.po2
-rw-r--r--source/fi/sw/source/ui/shells.po2
-rw-r--r--source/fi/sw/source/ui/smartmenu.po2
-rw-r--r--source/fi/sw/source/ui/table.po2
-rw-r--r--source/fi/sw/source/ui/uiview.po2
-rw-r--r--source/fi/sw/source/ui/utlui.po2
-rw-r--r--source/fi/sw/source/ui/web.po2
-rw-r--r--source/fi/sw/source/ui/wrtsh.po2
-rw-r--r--source/fi/sw/uiconfig/sw/ui.po284
-rw-r--r--source/fi/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/fi/swext/mediawiki/help.po15
-rw-r--r--source/fi/swext/mediawiki/src.po2
-rw-r--r--source/fi/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fi/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/fi/sysui/desktop/share.po2
-rw-r--r--source/fi/tubes/uiconfig/ui.po25
-rw-r--r--source/fi/uui/source.po2
-rw-r--r--source/fi/vcl/qa/cppunit/builder.po92
-rw-r--r--source/fi/vcl/source/edit.po20
-rw-r--r--source/fi/vcl/source/src.po8
-rw-r--r--source/fi/vcl/uiconfig/ui.po60
-rw-r--r--source/fi/wizards/source/euro.po2
-rw-r--r--source/fi/wizards/source/formwizard.po2
-rw-r--r--source/fi/wizards/source/importwizard.po2
-rw-r--r--source/fi/wizards/source/template.po2
-rw-r--r--source/fi/xmlsecurity/source/component.po2
-rw-r--r--source/fi/xmlsecurity/source/dialogs.po2
-rw-r--r--source/fr/accessibility/source/helper.po2
-rw-r--r--source/fr/android/sdremote/res/values.po2
-rw-r--r--source/fr/avmedia/source/framework.po2
-rw-r--r--source/fr/avmedia/source/viewer.po2
-rw-r--r--source/fr/basctl/source/basicide.po2
-rw-r--r--source/fr/basctl/source/dlged.po2
-rw-r--r--source/fr/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/fr/basic/source/classes.po2
-rw-r--r--source/fr/basic/source/sbx.po2
-rw-r--r--source/fr/chart2/source/controller/dialogs.po2
-rw-r--r--source/fr/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/connectivity/source/resource.po2
-rw-r--r--source/fr/cui/source/customize.po2
-rw-r--r--source/fr/cui/source/dialogs.po2
-rw-r--r--source/fr/cui/source/options.po4
-rw-r--r--source/fr/cui/source/tabpages.po2
-rw-r--r--source/fr/cui/uiconfig/ui.po4
-rw-r--r--source/fr/dbaccess/source/core/resource.po2
-rw-r--r--source/fr/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/fr/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/fr/dbaccess/source/ui/app.po2
-rw-r--r--source/fr/dbaccess/source/ui/browser.po2
-rw-r--r--source/fr/dbaccess/source/ui/control.po2
-rw-r--r--source/fr/dbaccess/source/ui/dlg.po2
-rw-r--r--source/fr/dbaccess/source/ui/inc.po2
-rw-r--r--source/fr/dbaccess/source/ui/misc.po2
-rw-r--r--source/fr/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/fr/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/fr/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/fr/dbaccess/source/ui/uno.po2
-rw-r--r--source/fr/desktop/source/app.po2
-rw-r--r--source/fr/desktop/source/deployment/gui.po2
-rw-r--r--source/fr/desktop/source/deployment/manager.po2
-rw-r--r--source/fr/desktop/source/deployment/misc.po2
-rw-r--r--source/fr/desktop/source/deployment/registry.po2
-rw-r--r--source/fr/desktop/source/deployment/registry/component.po2
-rw-r--r--source/fr/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/fr/desktop/source/deployment/registry/help.po2
-rw-r--r--source/fr/desktop/source/deployment/registry/package.po2
-rw-r--r--source/fr/desktop/source/deployment/registry/script.po2
-rw-r--r--source/fr/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/fr/desktop/source/deployment/unopkg.po2
-rw-r--r--source/fr/desktop/uiconfig/ui.po2
-rw-r--r--source/fr/dictionaries/af_ZA.po2
-rw-r--r--source/fr/dictionaries/an_ES.po2
-rw-r--r--source/fr/dictionaries/ar.po2
-rw-r--r--source/fr/dictionaries/be_BY.po2
-rw-r--r--source/fr/dictionaries/bg_BG.po2
-rw-r--r--source/fr/dictionaries/bn_BD.po2
-rw-r--r--source/fr/dictionaries/br_FR.po2
-rw-r--r--source/fr/dictionaries/ca.po2
-rw-r--r--source/fr/dictionaries/cs_CZ.po2
-rw-r--r--source/fr/dictionaries/da_DK.po2
-rw-r--r--source/fr/dictionaries/de.po2
-rw-r--r--source/fr/dictionaries/el_GR.po2
-rw-r--r--source/fr/dictionaries/en.po2
-rw-r--r--source/fr/dictionaries/en/dialog.po2
-rw-r--r--source/fr/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fr/dictionaries/es.po2
-rw-r--r--source/fr/dictionaries/et_EE.po2
-rw-r--r--source/fr/dictionaries/fr_FR.po2
-rw-r--r--source/fr/dictionaries/gd_GB.po2
-rw-r--r--source/fr/dictionaries/gl.po2
-rw-r--r--source/fr/dictionaries/gu_IN.po2
-rw-r--r--source/fr/dictionaries/he_IL.po2
-rw-r--r--source/fr/dictionaries/hi_IN.po2
-rw-r--r--source/fr/dictionaries/hr_HR.po2
-rw-r--r--source/fr/dictionaries/hu_HU.po2
-rw-r--r--source/fr/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/fr/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fr/dictionaries/it_IT.po2
-rw-r--r--source/fr/dictionaries/ku_TR.po2
-rw-r--r--source/fr/dictionaries/lt_LT.po2
-rw-r--r--source/fr/dictionaries/lv_LV.po2
-rw-r--r--source/fr/dictionaries/ne_NP.po2
-rw-r--r--source/fr/dictionaries/nl_NL.po2
-rw-r--r--source/fr/dictionaries/no.po2
-rw-r--r--source/fr/dictionaries/oc_FR.po2
-rw-r--r--source/fr/dictionaries/pl_PL.po2
-rw-r--r--source/fr/dictionaries/pt_BR.po2
-rw-r--r--source/fr/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/fr/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fr/dictionaries/pt_PT.po2
-rw-r--r--source/fr/dictionaries/ro.po2
-rw-r--r--source/fr/dictionaries/ru_RU.po2
-rw-r--r--source/fr/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/fr/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fr/dictionaries/si_LK.po2
-rw-r--r--source/fr/dictionaries/sk_SK.po2
-rw-r--r--source/fr/dictionaries/sl_SI.po2
-rw-r--r--source/fr/dictionaries/sr.po2
-rw-r--r--source/fr/dictionaries/sv_SE.po2
-rw-r--r--source/fr/dictionaries/sw_TZ.po2
-rw-r--r--source/fr/dictionaries/te_IN.po2
-rw-r--r--source/fr/dictionaries/th_TH.po2
-rw-r--r--source/fr/dictionaries/uk_UA.po2
-rw-r--r--source/fr/dictionaries/vi.po2
-rw-r--r--source/fr/dictionaries/zu_ZA.po2
-rw-r--r--source/fr/editeng/source/accessibility.po2
-rw-r--r--source/fr/editeng/source/editeng.po2
-rw-r--r--source/fr/editeng/source/items.po2
-rw-r--r--source/fr/editeng/source/misc.po2
-rw-r--r--source/fr/editeng/source/outliner.po2
-rw-r--r--source/fr/extensions/source/abpilot.po2
-rw-r--r--source/fr/extensions/source/bibliography.po2
-rw-r--r--source/fr/extensions/source/dbpilots.po2
-rw-r--r--source/fr/extensions/source/propctrlr.po2
-rw-r--r--source/fr/extensions/source/scanner.po2
-rw-r--r--source/fr/extensions/source/update/check.po2
-rw-r--r--source/fr/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/fr/filter/source/config/fragments/filters.po2
-rw-r--r--source/fr/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/fr/filter/source/config/fragments/types.po2
-rw-r--r--source/fr/filter/source/flash.po2
-rw-r--r--source/fr/filter/source/graphicfilter/eps.po2
-rw-r--r--source/fr/filter/source/pdf.po2
-rw-r--r--source/fr/filter/source/t602.po2
-rw-r--r--source/fr/filter/source/xsltdialog.po2
-rw-r--r--source/fr/filter/uiconfig/ui.po2
-rw-r--r--source/fr/forms/source/resource.po2
-rw-r--r--source/fr/formula/source/core/resource.po44
-rw-r--r--source/fr/formula/source/ui/dlg.po2
-rw-r--r--source/fr/fpicker/source/office.po2
-rw-r--r--source/fr/framework/source/classes.po2
-rw-r--r--source/fr/framework/source/services.po2
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po4
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po2
-rw-r--r--source/fr/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/fr/librelogo/source/pythonpath.po2
-rw-r--r--source/fr/mysqlc/source.po2
-rw-r--r--source/fr/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/fr/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/fr/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/fr/nlpsolver/src/locale.po2
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office.po9
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/fr/padmin/source.po2
-rw-r--r--source/fr/readlicense_oo/docs.po2
-rw-r--r--source/fr/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/fr/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fr/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/fr/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/fr/reportbuilder/util.po2
-rw-r--r--source/fr/reportdesign/source/core/resource.po2
-rw-r--r--source/fr/reportdesign/source/ui/dlg.po2
-rw-r--r--source/fr/reportdesign/source/ui/inspection.po2
-rw-r--r--source/fr/reportdesign/source/ui/report.po2
-rw-r--r--source/fr/sc/source/core/src.po2
-rw-r--r--source/fr/sc/source/ui/cctrl.po2
-rw-r--r--source/fr/sc/source/ui/dbgui.po2
-rw-r--r--source/fr/sc/source/ui/docshell.po2
-rw-r--r--source/fr/sc/source/ui/drawfunc.po2
-rw-r--r--source/fr/sc/source/ui/formdlg.po2
-rw-r--r--source/fr/sc/source/ui/miscdlgs.po2
-rw-r--r--source/fr/sc/source/ui/navipi.po2
-rw-r--r--source/fr/sc/source/ui/optdlg.po2
-rw-r--r--source/fr/sc/source/ui/pagedlg.po2
-rw-r--r--source/fr/sc/source/ui/src.po389
-rw-r--r--source/fr/sc/source/ui/styleui.po4
-rw-r--r--source/fr/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/fr/scaddins/source/analysis.po2
-rw-r--r--source/fr/scaddins/source/datefunc.po2
-rw-r--r--source/fr/scaddins/source/pricing.po4
-rw-r--r--source/fr/sccomp/source/solver.po2
-rw-r--r--source/fr/scp2/source/accessories.po2
-rw-r--r--source/fr/scp2/source/activex.po2
-rw-r--r--source/fr/scp2/source/base.po2
-rw-r--r--source/fr/scp2/source/calc.po2
-rw-r--r--source/fr/scp2/source/draw.po2
-rw-r--r--source/fr/scp2/source/extensions.po2
-rw-r--r--source/fr/scp2/source/gnome.po2
-rw-r--r--source/fr/scp2/source/graphicfilter.po2
-rw-r--r--source/fr/scp2/source/impress.po2
-rw-r--r--source/fr/scp2/source/javafilter.po2
-rw-r--r--source/fr/scp2/source/kde.po2
-rw-r--r--source/fr/scp2/source/math.po2
-rw-r--r--source/fr/scp2/source/onlineupdate.po2
-rw-r--r--source/fr/scp2/source/ooo.po4
-rw-r--r--source/fr/scp2/source/python.po20
-rw-r--r--source/fr/scp2/source/quickstart.po2
-rw-r--r--source/fr/scp2/source/sdkoo.po2
-rw-r--r--source/fr/scp2/source/smoketest.po2
-rw-r--r--source/fr/scp2/source/stdlibs.po2
-rw-r--r--source/fr/scp2/source/tde.po2
-rw-r--r--source/fr/scp2/source/winexplorerext.po2
-rw-r--r--source/fr/scp2/source/writer.po2
-rw-r--r--source/fr/scp2/source/xsltfilter.po2
-rw-r--r--source/fr/sd/source/core.po2
-rw-r--r--source/fr/sd/source/filter/html.po2
-rw-r--r--source/fr/sd/source/ui/accessibility.po2
-rw-r--r--source/fr/sd/source/ui/animations.po2
-rw-r--r--source/fr/sd/source/ui/annotations.po2
-rw-r--r--source/fr/sd/source/ui/app.po4
-rw-r--r--source/fr/sd/source/ui/dlg.po2
-rw-r--r--source/fr/sd/source/ui/slideshow.po2
-rw-r--r--source/fr/sd/source/ui/table.po2
-rw-r--r--source/fr/sd/source/ui/view.po2
-rw-r--r--source/fr/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/fr/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/fr/sdext/source/minimizer.po2
-rw-r--r--source/fr/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fr/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/fr/setup_native/source/mac.po2
-rw-r--r--source/fr/sfx2/source/appl.po2
-rw-r--r--source/fr/sfx2/source/bastyp.po2
-rw-r--r--source/fr/sfx2/source/control.po23
-rw-r--r--source/fr/sfx2/source/dialog.po48
-rw-r--r--source/fr/sfx2/source/doc.po126
-rw-r--r--source/fr/sfx2/source/menu.po2
-rw-r--r--source/fr/sfx2/source/view.po2
-rw-r--r--source/fr/sfx2/uiconfig/ui.po2
-rw-r--r--source/fr/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/fr/starmath/source.po2
-rw-r--r--source/fr/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/fr/svl/source/items.po2
-rw-r--r--source/fr/svl/source/misc.po2
-rw-r--r--source/fr/svtools/source/contnr.po2
-rw-r--r--source/fr/svtools/source/control.po2
-rw-r--r--source/fr/svtools/source/dialogs.po2
-rw-r--r--source/fr/svtools/source/java.po2
-rw-r--r--source/fr/svtools/source/misc.po2
-rw-r--r--source/fr/svtools/source/toolpanel.po2
-rw-r--r--source/fr/svtools/uiconfig/ui.po51
-rw-r--r--source/fr/svx/inc.po2
-rw-r--r--source/fr/svx/source/accessibility.po2
-rw-r--r--source/fr/svx/source/core.po2
-rw-r--r--source/fr/svx/source/dialog.po217
-rw-r--r--source/fr/svx/source/engine3d.po2
-rw-r--r--source/fr/svx/source/fmcomp.po2
-rw-r--r--source/fr/svx/source/form.po2
-rw-r--r--source/fr/svx/source/gallery2.po2
-rw-r--r--source/fr/svx/source/items.po2
-rw-r--r--source/fr/svx/source/src.po2
-rw-r--r--source/fr/svx/source/stbctrls.po2
-rw-r--r--source/fr/svx/source/svdraw.po2
-rw-r--r--source/fr/svx/source/table.po2
-rw-r--r--source/fr/svx/source/tbxctrls.po2
-rw-r--r--source/fr/svx/source/toolbars.po2
-rw-r--r--source/fr/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/fr/svx/uiconfig/ui.po204
-rw-r--r--source/fr/sw/source/core/layout.po2
-rw-r--r--source/fr/sw/source/core/undo.po2
-rw-r--r--source/fr/sw/source/core/unocore.po2
-rw-r--r--source/fr/sw/source/ui/app.po4
-rw-r--r--source/fr/sw/source/ui/chrdlg.po2
-rw-r--r--source/fr/sw/source/ui/config.po2
-rw-r--r--source/fr/sw/source/ui/dbui.po2
-rw-r--r--source/fr/sw/source/ui/dialog.po2
-rw-r--r--source/fr/sw/source/ui/dochdl.po2
-rw-r--r--source/fr/sw/source/ui/docvw.po2
-rw-r--r--source/fr/sw/source/ui/envelp.po2
-rw-r--r--source/fr/sw/source/ui/fldui.po2
-rw-r--r--source/fr/sw/source/ui/fmtui.po2
-rw-r--r--source/fr/sw/source/ui/frmdlg.po2
-rw-r--r--source/fr/sw/source/ui/globdoc.po2
-rw-r--r--source/fr/sw/source/ui/index.po2
-rw-r--r--source/fr/sw/source/ui/lingu.po2
-rw-r--r--source/fr/sw/source/ui/misc.po2
-rw-r--r--source/fr/sw/source/ui/ribbar.po2
-rw-r--r--source/fr/sw/source/ui/shells.po2
-rw-r--r--source/fr/sw/source/ui/smartmenu.po2
-rw-r--r--source/fr/sw/source/ui/table.po2
-rw-r--r--source/fr/sw/source/ui/uiview.po2
-rw-r--r--source/fr/sw/source/ui/utlui.po2
-rw-r--r--source/fr/sw/source/ui/web.po2
-rw-r--r--source/fr/sw/source/ui/wrtsh.po2
-rw-r--r--source/fr/sw/uiconfig/sw/ui.po277
-rw-r--r--source/fr/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/fr/swext/mediawiki/help.po2
-rw-r--r--source/fr/swext/mediawiki/src.po2
-rw-r--r--source/fr/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/fr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/fr/sysui/desktop/share.po2
-rw-r--r--source/fr/tubes/uiconfig/ui.po2
-rw-r--r--source/fr/uui/source.po2
-rw-r--r--source/fr/vcl/qa/cppunit/builder.po2
-rw-r--r--source/fr/vcl/source/edit.po2
-rw-r--r--source/fr/vcl/source/src.po2
-rw-r--r--source/fr/vcl/uiconfig/ui.po2
-rw-r--r--source/fr/wizards/source/euro.po2
-rw-r--r--source/fr/wizards/source/formwizard.po2
-rw-r--r--source/fr/wizards/source/importwizard.po2
-rw-r--r--source/fr/wizards/source/template.po2
-rw-r--r--source/fr/xmlsecurity/source/component.po2
-rw-r--r--source/fr/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ga/accessibility/source/helper.po2
-rw-r--r--source/ga/android/sdremote/res/values.po43
-rw-r--r--source/ga/avmedia/source/framework.po2
-rw-r--r--source/ga/avmedia/source/viewer.po2
-rw-r--r--source/ga/basctl/source/basicide.po2
-rw-r--r--source/ga/basctl/source/dlged.po2
-rw-r--r--source/ga/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ga/basic/source/classes.po2
-rw-r--r--source/ga/basic/source/sbx.po2
-rw-r--r--source/ga/chart2/source/controller/dialogs.po2
-rw-r--r--source/ga/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/connectivity/source/resource.po2
-rw-r--r--source/ga/cui/source/customize.po2
-rw-r--r--source/ga/cui/source/dialogs.po6
-rw-r--r--source/ga/cui/source/options.po14
-rw-r--r--source/ga/cui/source/tabpages.po10
-rw-r--r--source/ga/cui/uiconfig/ui.po30
-rw-r--r--source/ga/dbaccess/source/core/resource.po2
-rw-r--r--source/ga/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ga/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ga/dbaccess/source/ui/app.po2
-rw-r--r--source/ga/dbaccess/source/ui/browser.po2
-rw-r--r--source/ga/dbaccess/source/ui/control.po2
-rw-r--r--source/ga/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ga/dbaccess/source/ui/inc.po2
-rw-r--r--source/ga/dbaccess/source/ui/misc.po2
-rw-r--r--source/ga/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ga/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ga/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ga/dbaccess/source/ui/uno.po2
-rw-r--r--source/ga/desktop/source/app.po2
-rw-r--r--source/ga/desktop/source/deployment/gui.po2
-rw-r--r--source/ga/desktop/source/deployment/manager.po2
-rw-r--r--source/ga/desktop/source/deployment/misc.po2
-rw-r--r--source/ga/desktop/source/deployment/registry.po2
-rw-r--r--source/ga/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ga/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ga/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ga/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ga/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ga/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ga/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ga/desktop/uiconfig/ui.po2
-rw-r--r--source/ga/dictionaries/af_ZA.po2
-rw-r--r--source/ga/dictionaries/an_ES.po2
-rw-r--r--source/ga/dictionaries/ar.po2
-rw-r--r--source/ga/dictionaries/be_BY.po2
-rw-r--r--source/ga/dictionaries/bg_BG.po2
-rw-r--r--source/ga/dictionaries/bn_BD.po2
-rw-r--r--source/ga/dictionaries/br_FR.po2
-rw-r--r--source/ga/dictionaries/ca.po2
-rw-r--r--source/ga/dictionaries/cs_CZ.po2
-rw-r--r--source/ga/dictionaries/da_DK.po2
-rw-r--r--source/ga/dictionaries/de.po2
-rw-r--r--source/ga/dictionaries/el_GR.po2
-rw-r--r--source/ga/dictionaries/en.po2
-rw-r--r--source/ga/dictionaries/en/dialog.po2
-rw-r--r--source/ga/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ga/dictionaries/es.po2
-rw-r--r--source/ga/dictionaries/et_EE.po2
-rw-r--r--source/ga/dictionaries/fr_FR.po2
-rw-r--r--source/ga/dictionaries/gd_GB.po2
-rw-r--r--source/ga/dictionaries/gl.po2
-rw-r--r--source/ga/dictionaries/gu_IN.po2
-rw-r--r--source/ga/dictionaries/he_IL.po2
-rw-r--r--source/ga/dictionaries/hi_IN.po2
-rw-r--r--source/ga/dictionaries/hr_HR.po2
-rw-r--r--source/ga/dictionaries/hu_HU.po2
-rw-r--r--source/ga/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ga/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ga/dictionaries/it_IT.po2
-rw-r--r--source/ga/dictionaries/ku_TR.po2
-rw-r--r--source/ga/dictionaries/lt_LT.po2
-rw-r--r--source/ga/dictionaries/lv_LV.po2
-rw-r--r--source/ga/dictionaries/ne_NP.po2
-rw-r--r--source/ga/dictionaries/nl_NL.po2
-rw-r--r--source/ga/dictionaries/no.po2
-rw-r--r--source/ga/dictionaries/oc_FR.po2
-rw-r--r--source/ga/dictionaries/pl_PL.po2
-rw-r--r--source/ga/dictionaries/pt_BR.po2
-rw-r--r--source/ga/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ga/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ga/dictionaries/pt_PT.po2
-rw-r--r--source/ga/dictionaries/ro.po2
-rw-r--r--source/ga/dictionaries/ru_RU.po2
-rw-r--r--source/ga/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ga/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ga/dictionaries/si_LK.po2
-rw-r--r--source/ga/dictionaries/sk_SK.po2
-rw-r--r--source/ga/dictionaries/sl_SI.po2
-rw-r--r--source/ga/dictionaries/sr.po2
-rw-r--r--source/ga/dictionaries/sv_SE.po2
-rw-r--r--source/ga/dictionaries/sw_TZ.po2
-rw-r--r--source/ga/dictionaries/te_IN.po2
-rw-r--r--source/ga/dictionaries/th_TH.po2
-rw-r--r--source/ga/dictionaries/uk_UA.po2
-rw-r--r--source/ga/dictionaries/vi.po2
-rw-r--r--source/ga/dictionaries/zu_ZA.po2
-rw-r--r--source/ga/editeng/source/accessibility.po2
-rw-r--r--source/ga/editeng/source/editeng.po2
-rw-r--r--source/ga/editeng/source/items.po2
-rw-r--r--source/ga/editeng/source/misc.po2
-rw-r--r--source/ga/editeng/source/outliner.po2
-rw-r--r--source/ga/extensions/source/abpilot.po2
-rw-r--r--source/ga/extensions/source/bibliography.po2
-rw-r--r--source/ga/extensions/source/dbpilots.po2
-rw-r--r--source/ga/extensions/source/propctrlr.po16
-rw-r--r--source/ga/extensions/source/scanner.po2
-rw-r--r--source/ga/extensions/source/update/check.po2
-rw-r--r--source/ga/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ga/filter/source/config/fragments/filters.po2
-rw-r--r--source/ga/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ga/filter/source/config/fragments/types.po2
-rw-r--r--source/ga/filter/source/flash.po2
-rw-r--r--source/ga/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ga/filter/source/pdf.po2
-rw-r--r--source/ga/filter/source/t602.po2
-rw-r--r--source/ga/filter/source/xsltdialog.po2
-rw-r--r--source/ga/filter/uiconfig/ui.po2
-rw-r--r--source/ga/forms/source/resource.po2
-rw-r--r--source/ga/formula/source/core/resource.po38
-rw-r--r--source/ga/formula/source/ui/dlg.po2
-rw-r--r--source/ga/fpicker/source/office.po2
-rw-r--r--source/ga/framework/source/classes.po2
-rw-r--r--source/ga/framework/source/services.po2
-rw-r--r--source/ga/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--source/ga/librelogo/source/pythonpath.po8
-rw-r--r--source/ga/mysqlc/source.po2
-rw-r--r--source/ga/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ga/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po30
-rw-r--r--source/ga/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ga/nlpsolver/src/locale.po26
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po35
-rw-r--r--source/ga/padmin/source.po14
-rw-r--r--source/ga/readlicense_oo/docs.po2
-rw-r--r--source/ga/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ga/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ga/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ga/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ga/reportbuilder/util.po2
-rw-r--r--source/ga/reportdesign/source/core/resource.po2
-rw-r--r--source/ga/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ga/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ga/reportdesign/source/ui/report.po2
-rw-r--r--source/ga/sc/source/core/src.po2
-rw-r--r--source/ga/sc/source/ui/cctrl.po2
-rw-r--r--source/ga/sc/source/ui/dbgui.po2
-rw-r--r--source/ga/sc/source/ui/docshell.po2
-rw-r--r--source/ga/sc/source/ui/drawfunc.po2
-rw-r--r--source/ga/sc/source/ui/formdlg.po2
-rw-r--r--source/ga/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ga/sc/source/ui/navipi.po2
-rw-r--r--source/ga/sc/source/ui/optdlg.po2
-rw-r--r--source/ga/sc/source/ui/pagedlg.po2
-rw-r--r--source/ga/sc/source/ui/src.po428
-rw-r--r--source/ga/sc/source/ui/styleui.po12
-rw-r--r--source/ga/sc/uiconfig/scalc/ui.po28
-rw-r--r--source/ga/scaddins/source/analysis.po2
-rw-r--r--source/ga/scaddins/source/datefunc.po2
-rw-r--r--source/ga/scaddins/source/pricing.po48
-rw-r--r--source/ga/sccomp/source/solver.po2
-rw-r--r--source/ga/scp2/source/accessories.po2
-rw-r--r--source/ga/scp2/source/activex.po2
-rw-r--r--source/ga/scp2/source/base.po2
-rw-r--r--source/ga/scp2/source/calc.po2
-rw-r--r--source/ga/scp2/source/draw.po2
-rw-r--r--source/ga/scp2/source/extensions.po2
-rw-r--r--source/ga/scp2/source/gnome.po2
-rw-r--r--source/ga/scp2/source/graphicfilter.po2
-rw-r--r--source/ga/scp2/source/impress.po2
-rw-r--r--source/ga/scp2/source/javafilter.po2
-rw-r--r--source/ga/scp2/source/kde.po2
-rw-r--r--source/ga/scp2/source/math.po2
-rw-r--r--source/ga/scp2/source/onlineupdate.po2
-rw-r--r--source/ga/scp2/source/ooo.po10
-rw-r--r--source/ga/scp2/source/python.po18
-rw-r--r--source/ga/scp2/source/quickstart.po2
-rw-r--r--source/ga/scp2/source/sdkoo.po2
-rw-r--r--source/ga/scp2/source/smoketest.po2
-rw-r--r--source/ga/scp2/source/stdlibs.po2
-rw-r--r--source/ga/scp2/source/tde.po2
-rw-r--r--source/ga/scp2/source/winexplorerext.po2
-rw-r--r--source/ga/scp2/source/writer.po2
-rw-r--r--source/ga/scp2/source/xsltfilter.po2
-rw-r--r--source/ga/sd/source/core.po2
-rw-r--r--source/ga/sd/source/filter/html.po2
-rw-r--r--source/ga/sd/source/ui/accessibility.po2
-rw-r--r--source/ga/sd/source/ui/animations.po2
-rw-r--r--source/ga/sd/source/ui/annotations.po2
-rw-r--r--source/ga/sd/source/ui/app.po12
-rw-r--r--source/ga/sd/source/ui/dlg.po4
-rw-r--r--source/ga/sd/source/ui/slideshow.po2
-rw-r--r--source/ga/sd/source/ui/table.po2
-rw-r--r--source/ga/sd/source/ui/view.po2
-rw-r--r--source/ga/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ga/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ga/sdext/source/minimizer.po2
-rw-r--r--source/ga/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ga/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ga/setup_native/source/mac.po2
-rw-r--r--source/ga/sfx2/source/appl.po15
-rw-r--r--source/ga/sfx2/source/bastyp.po2
-rw-r--r--source/ga/sfx2/source/control.po23
-rw-r--r--source/ga/sfx2/source/dialog.po54
-rw-r--r--source/ga/sfx2/source/doc.po93
-rw-r--r--source/ga/sfx2/source/menu.po6
-rw-r--r--source/ga/sfx2/source/view.po8
-rw-r--r--source/ga/sfx2/uiconfig/ui.po8
-rw-r--r--source/ga/shell/source/win32/shlxthandler/res.po6
-rw-r--r--source/ga/starmath/source.po6
-rw-r--r--source/ga/starmath/uiconfig/smath/ui.po6
-rw-r--r--source/ga/svl/source/items.po6
-rw-r--r--source/ga/svl/source/misc.po6
-rw-r--r--source/ga/svtools/source/contnr.po6
-rw-r--r--source/ga/svtools/source/control.po10
-rw-r--r--source/ga/svtools/source/dialogs.po315
-rw-r--r--source/ga/svtools/source/java.po6
-rw-r--r--source/ga/svtools/source/misc.po14
-rw-r--r--source/ga/svtools/source/toolpanel.po6
-rw-r--r--source/ga/svtools/uiconfig/ui.po51
-rw-r--r--source/ga/svx/inc.po8
-rw-r--r--source/ga/svx/source/accessibility.po6
-rw-r--r--source/ga/svx/source/core.po6
-rw-r--r--source/ga/svx/source/dialog.po223
-rw-r--r--source/ga/svx/source/engine3d.po6
-rw-r--r--source/ga/svx/source/fmcomp.po6
-rw-r--r--source/ga/svx/source/form.po6
-rw-r--r--source/ga/svx/source/gallery2.po6
-rw-r--r--source/ga/svx/source/items.po6
-rw-r--r--source/ga/svx/source/src.po6
-rw-r--r--source/ga/svx/source/stbctrls.po8
-rw-r--r--source/ga/svx/source/svdraw.po6
-rw-r--r--source/ga/svx/source/table.po6
-rw-r--r--source/ga/svx/source/tbxctrls.po6
-rw-r--r--source/ga/svx/source/toolbars.po6
-rw-r--r--source/ga/svx/source/unodialogs/textconversiondlgs.po6
-rw-r--r--source/ga/svx/uiconfig/ui.po202
-rw-r--r--source/ga/sw/source/core/layout.po6
-rw-r--r--source/ga/sw/source/core/undo.po6
-rw-r--r--source/ga/sw/source/core/unocore.po6
-rw-r--r--source/ga/sw/source/ui/app.po58
-rw-r--r--source/ga/sw/source/ui/chrdlg.po6
-rw-r--r--source/ga/sw/source/ui/config.po6
-rw-r--r--source/ga/sw/source/ui/dbui.po6
-rw-r--r--source/ga/sw/source/ui/dialog.po6
-rw-r--r--source/ga/sw/source/ui/dochdl.po6
-rw-r--r--source/ga/sw/source/ui/docvw.po6
-rw-r--r--source/ga/sw/source/ui/envelp.po6
-rw-r--r--source/ga/sw/source/ui/fldui.po6
-rw-r--r--source/ga/sw/source/ui/fmtui.po6
-rw-r--r--source/ga/sw/source/ui/frmdlg.po6
-rw-r--r--source/ga/sw/source/ui/globdoc.po6
-rw-r--r--source/ga/sw/source/ui/index.po6
-rw-r--r--source/ga/sw/source/ui/lingu.po6
-rw-r--r--source/ga/sw/source/ui/misc.po6
-rw-r--r--source/ga/sw/source/ui/ribbar.po6
-rw-r--r--source/ga/sw/source/ui/shells.po6
-rw-r--r--source/ga/sw/source/ui/smartmenu.po6
-rw-r--r--source/ga/sw/source/ui/table.po6
-rw-r--r--source/ga/sw/source/ui/uiview.po6
-rw-r--r--source/ga/sw/source/ui/utlui.po8
-rw-r--r--source/ga/sw/source/ui/web.po6
-rw-r--r--source/ga/sw/source/ui/wrtsh.po6
-rw-r--r--source/ga/sw/uiconfig/sw/ui.po276
-rw-r--r--source/ga/sw/uiconfig/swriter/ui.po122
-rw-r--r--source/ga/swext/mediawiki/help.po6
-rw-r--r--source/ga/swext/mediawiki/src.po8
-rw-r--r--source/ga/swext/mediawiki/src/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ga/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po6
-rw-r--r--source/ga/sysui/desktop/share.po6
-rw-r--r--source/ga/tubes/uiconfig/ui.po6
-rw-r--r--source/ga/uui/source.po6
-rw-r--r--source/ga/vcl/qa/cppunit/builder.po8
-rw-r--r--source/ga/vcl/source/edit.po6
-rw-r--r--source/ga/vcl/source/src.po6
-rw-r--r--source/ga/vcl/uiconfig/ui.po6
-rw-r--r--source/ga/wizards/source/euro.po6
-rw-r--r--source/ga/wizards/source/formwizard.po56
-rw-r--r--source/ga/wizards/source/importwizard.po6
-rw-r--r--source/ga/wizards/source/template.po6
-rw-r--r--source/ga/xmlsecurity/source/component.po6
-rw-r--r--source/ga/xmlsecurity/source/dialogs.po6
-rw-r--r--source/gd/accessibility/source/helper.po2
-rw-r--r--source/gd/android/sdremote/res/values.po10
-rw-r--r--source/gd/avmedia/source/framework.po2
-rw-r--r--source/gd/avmedia/source/viewer.po2
-rw-r--r--source/gd/basctl/source/basicide.po2
-rw-r--r--source/gd/basctl/source/dlged.po2
-rw-r--r--source/gd/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/gd/basic/source/classes.po2
-rw-r--r--source/gd/basic/source/sbx.po2
-rw-r--r--source/gd/chart2/source/controller/dialogs.po2
-rw-r--r--source/gd/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/connectivity/source/resource.po2
-rw-r--r--source/gd/cui/source/customize.po2
-rw-r--r--source/gd/cui/source/dialogs.po10
-rw-r--r--source/gd/cui/source/options.po10
-rw-r--r--source/gd/cui/source/tabpages.po4
-rw-r--r--source/gd/cui/uiconfig/ui.po36
-rw-r--r--source/gd/dbaccess/source/core/resource.po2
-rw-r--r--source/gd/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/gd/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/gd/dbaccess/source/ui/app.po2
-rw-r--r--source/gd/dbaccess/source/ui/browser.po2
-rw-r--r--source/gd/dbaccess/source/ui/control.po2
-rw-r--r--source/gd/dbaccess/source/ui/dlg.po2
-rw-r--r--source/gd/dbaccess/source/ui/inc.po2
-rw-r--r--source/gd/dbaccess/source/ui/misc.po2
-rw-r--r--source/gd/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/gd/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/gd/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/gd/dbaccess/source/ui/uno.po2
-rw-r--r--source/gd/desktop/source/app.po2
-rw-r--r--source/gd/desktop/source/deployment/gui.po2
-rw-r--r--source/gd/desktop/source/deployment/manager.po2
-rw-r--r--source/gd/desktop/source/deployment/misc.po2
-rw-r--r--source/gd/desktop/source/deployment/registry.po2
-rw-r--r--source/gd/desktop/source/deployment/registry/component.po2
-rw-r--r--source/gd/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/gd/desktop/source/deployment/registry/help.po2
-rw-r--r--source/gd/desktop/source/deployment/registry/package.po2
-rw-r--r--source/gd/desktop/source/deployment/registry/script.po2
-rw-r--r--source/gd/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/gd/desktop/source/deployment/unopkg.po2
-rw-r--r--source/gd/desktop/uiconfig/ui.po2
-rw-r--r--source/gd/dictionaries/af_ZA.po2
-rw-r--r--source/gd/dictionaries/an_ES.po2
-rw-r--r--source/gd/dictionaries/ar.po2
-rw-r--r--source/gd/dictionaries/be_BY.po2
-rw-r--r--source/gd/dictionaries/bg_BG.po2
-rw-r--r--source/gd/dictionaries/bn_BD.po2
-rw-r--r--source/gd/dictionaries/br_FR.po2
-rw-r--r--source/gd/dictionaries/ca.po2
-rw-r--r--source/gd/dictionaries/cs_CZ.po2
-rw-r--r--source/gd/dictionaries/da_DK.po2
-rw-r--r--source/gd/dictionaries/de.po2
-rw-r--r--source/gd/dictionaries/el_GR.po2
-rw-r--r--source/gd/dictionaries/en.po2
-rw-r--r--source/gd/dictionaries/en/dialog.po2
-rw-r--r--source/gd/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gd/dictionaries/es.po2
-rw-r--r--source/gd/dictionaries/et_EE.po2
-rw-r--r--source/gd/dictionaries/fr_FR.po2
-rw-r--r--source/gd/dictionaries/gd_GB.po2
-rw-r--r--source/gd/dictionaries/gl.po2
-rw-r--r--source/gd/dictionaries/gu_IN.po2
-rw-r--r--source/gd/dictionaries/he_IL.po2
-rw-r--r--source/gd/dictionaries/hi_IN.po2
-rw-r--r--source/gd/dictionaries/hr_HR.po2
-rw-r--r--source/gd/dictionaries/hu_HU.po2
-rw-r--r--source/gd/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/gd/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gd/dictionaries/it_IT.po2
-rw-r--r--source/gd/dictionaries/ku_TR.po2
-rw-r--r--source/gd/dictionaries/lt_LT.po2
-rw-r--r--source/gd/dictionaries/lv_LV.po2
-rw-r--r--source/gd/dictionaries/ne_NP.po2
-rw-r--r--source/gd/dictionaries/nl_NL.po2
-rw-r--r--source/gd/dictionaries/no.po2
-rw-r--r--source/gd/dictionaries/oc_FR.po2
-rw-r--r--source/gd/dictionaries/pl_PL.po2
-rw-r--r--source/gd/dictionaries/pt_BR.po2
-rw-r--r--source/gd/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/gd/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gd/dictionaries/pt_PT.po2
-rw-r--r--source/gd/dictionaries/ro.po2
-rw-r--r--source/gd/dictionaries/ru_RU.po2
-rw-r--r--source/gd/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/gd/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gd/dictionaries/si_LK.po2
-rw-r--r--source/gd/dictionaries/sk_SK.po2
-rw-r--r--source/gd/dictionaries/sl_SI.po2
-rw-r--r--source/gd/dictionaries/sr.po2
-rw-r--r--source/gd/dictionaries/sv_SE.po2
-rw-r--r--source/gd/dictionaries/sw_TZ.po2
-rw-r--r--source/gd/dictionaries/te_IN.po2
-rw-r--r--source/gd/dictionaries/th_TH.po2
-rw-r--r--source/gd/dictionaries/uk_UA.po2
-rw-r--r--source/gd/dictionaries/vi.po2
-rw-r--r--source/gd/dictionaries/zu_ZA.po2
-rw-r--r--source/gd/editeng/source/accessibility.po2
-rw-r--r--source/gd/editeng/source/editeng.po2
-rw-r--r--source/gd/editeng/source/items.po4
-rw-r--r--source/gd/editeng/source/misc.po2
-rw-r--r--source/gd/editeng/source/outliner.po2
-rw-r--r--source/gd/extensions/source/abpilot.po2
-rw-r--r--source/gd/extensions/source/bibliography.po2
-rw-r--r--source/gd/extensions/source/dbpilots.po2
-rw-r--r--source/gd/extensions/source/propctrlr.po2
-rw-r--r--source/gd/extensions/source/scanner.po2
-rw-r--r--source/gd/extensions/source/update/check.po2
-rw-r--r--source/gd/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/gd/filter/source/config/fragments/filters.po2
-rw-r--r--source/gd/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/gd/filter/source/config/fragments/types.po2
-rw-r--r--source/gd/filter/source/flash.po2
-rw-r--r--source/gd/filter/source/graphicfilter/eps.po2
-rw-r--r--source/gd/filter/source/pdf.po2
-rw-r--r--source/gd/filter/source/t602.po2
-rw-r--r--source/gd/filter/source/xsltdialog.po2
-rw-r--r--source/gd/filter/uiconfig/ui.po2
-rw-r--r--source/gd/forms/source/resource.po2
-rw-r--r--source/gd/formula/source/core/resource.po44
-rw-r--r--source/gd/formula/source/ui/dlg.po2
-rw-r--r--source/gd/fpicker/source/office.po2
-rw-r--r--source/gd/framework/source/classes.po2
-rw-r--r--source/gd/framework/source/services.po2
-rw-r--r--source/gd/instsetoo_native/inc_openoffice/windows/msi_languages.po9
-rw-r--r--source/gd/librelogo/source/pythonpath.po132
-rw-r--r--source/gd/mysqlc/source.po2
-rw-r--r--source/gd/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gd/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/gd/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/gd/nlpsolver/src/locale.po2
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office.po16
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/gd/padmin/source.po17
-rw-r--r--source/gd/readlicense_oo/docs.po2
-rw-r--r--source/gd/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/gd/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gd/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/gd/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/gd/reportbuilder/util.po2
-rw-r--r--source/gd/reportdesign/source/core/resource.po2
-rw-r--r--source/gd/reportdesign/source/ui/dlg.po7
-rw-r--r--source/gd/reportdesign/source/ui/inspection.po2
-rw-r--r--source/gd/reportdesign/source/ui/report.po2
-rw-r--r--source/gd/sc/source/core/src.po2
-rw-r--r--source/gd/sc/source/ui/cctrl.po2
-rw-r--r--source/gd/sc/source/ui/dbgui.po8
-rw-r--r--source/gd/sc/source/ui/docshell.po2
-rw-r--r--source/gd/sc/source/ui/drawfunc.po2
-rw-r--r--source/gd/sc/source/ui/formdlg.po2
-rw-r--r--source/gd/sc/source/ui/miscdlgs.po2
-rw-r--r--source/gd/sc/source/ui/navipi.po2
-rw-r--r--source/gd/sc/source/ui/optdlg.po2
-rw-r--r--source/gd/sc/source/ui/pagedlg.po2
-rw-r--r--source/gd/sc/source/ui/src.po443
-rw-r--r--source/gd/sc/source/ui/styleui.po15
-rw-r--r--source/gd/sc/uiconfig/scalc/ui.po32
-rw-r--r--source/gd/scaddins/source/analysis.po2
-rw-r--r--source/gd/scaddins/source/datefunc.po2
-rw-r--r--source/gd/scaddins/source/pricing.po180
-rw-r--r--source/gd/sccomp/source/solver.po2
-rw-r--r--source/gd/scp2/source/accessories.po2
-rw-r--r--source/gd/scp2/source/activex.po2
-rw-r--r--source/gd/scp2/source/base.po2
-rw-r--r--source/gd/scp2/source/calc.po2
-rw-r--r--source/gd/scp2/source/draw.po2
-rw-r--r--source/gd/scp2/source/extensions.po2
-rw-r--r--source/gd/scp2/source/gnome.po2
-rw-r--r--source/gd/scp2/source/graphicfilter.po2
-rw-r--r--source/gd/scp2/source/impress.po2
-rw-r--r--source/gd/scp2/source/javafilter.po2
-rw-r--r--source/gd/scp2/source/kde.po2
-rw-r--r--source/gd/scp2/source/math.po2
-rw-r--r--source/gd/scp2/source/onlineupdate.po2
-rw-r--r--source/gd/scp2/source/ooo.po14
-rw-r--r--source/gd/scp2/source/python.po22
-rw-r--r--source/gd/scp2/source/quickstart.po2
-rw-r--r--source/gd/scp2/source/sdkoo.po2
-rw-r--r--source/gd/scp2/source/smoketest.po2
-rw-r--r--source/gd/scp2/source/stdlibs.po2
-rw-r--r--source/gd/scp2/source/tde.po2
-rw-r--r--source/gd/scp2/source/winexplorerext.po2
-rw-r--r--source/gd/scp2/source/writer.po2
-rw-r--r--source/gd/scp2/source/xsltfilter.po2
-rw-r--r--source/gd/sd/source/core.po2
-rw-r--r--source/gd/sd/source/filter/html.po2
-rw-r--r--source/gd/sd/source/ui/accessibility.po2
-rw-r--r--source/gd/sd/source/ui/animations.po2
-rw-r--r--source/gd/sd/source/ui/annotations.po2
-rw-r--r--source/gd/sd/source/ui/app.po14
-rw-r--r--source/gd/sd/source/ui/dlg.po2
-rw-r--r--source/gd/sd/source/ui/slideshow.po2
-rw-r--r--source/gd/sd/source/ui/table.po2
-rw-r--r--source/gd/sd/source/ui/view.po2
-rw-r--r--source/gd/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/gd/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/gd/sdext/source/minimizer.po2
-rw-r--r--source/gd/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gd/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/gd/setup_native/source/mac.po2
-rw-r--r--source/gd/sfx2/source/appl.po12
-rw-r--r--source/gd/sfx2/source/bastyp.po2
-rw-r--r--source/gd/sfx2/source/control.po25
-rw-r--r--source/gd/sfx2/source/dialog.po54
-rw-r--r--source/gd/sfx2/source/doc.po126
-rw-r--r--source/gd/sfx2/source/menu.po2
-rw-r--r--source/gd/sfx2/source/view.po2
-rw-r--r--source/gd/sfx2/uiconfig/ui.po8
-rw-r--r--source/gd/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/gd/starmath/source.po2
-rw-r--r--source/gd/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/gd/svl/source/items.po2
-rw-r--r--source/gd/svl/source/misc.po2
-rw-r--r--source/gd/svtools/source/contnr.po2
-rw-r--r--source/gd/svtools/source/control.po2
-rw-r--r--source/gd/svtools/source/dialogs.po2
-rw-r--r--source/gd/svtools/source/java.po2
-rw-r--r--source/gd/svtools/source/misc.po8
-rw-r--r--source/gd/svtools/source/toolpanel.po2
-rw-r--r--source/gd/svtools/uiconfig/ui.po53
-rw-r--r--source/gd/svx/inc.po8
-rw-r--r--source/gd/svx/source/accessibility.po2
-rw-r--r--source/gd/svx/source/core.po2
-rw-r--r--source/gd/svx/source/dialog.po219
-rw-r--r--source/gd/svx/source/engine3d.po2
-rw-r--r--source/gd/svx/source/fmcomp.po2
-rw-r--r--source/gd/svx/source/form.po2
-rw-r--r--source/gd/svx/source/gallery2.po2
-rw-r--r--source/gd/svx/source/items.po2
-rw-r--r--source/gd/svx/source/src.po2
-rw-r--r--source/gd/svx/source/stbctrls.po2
-rw-r--r--source/gd/svx/source/svdraw.po2
-rw-r--r--source/gd/svx/source/table.po2
-rw-r--r--source/gd/svx/source/tbxctrls.po2
-rw-r--r--source/gd/svx/source/toolbars.po2
-rw-r--r--source/gd/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/gd/svx/uiconfig/ui.po206
-rw-r--r--source/gd/sw/source/core/layout.po2
-rw-r--r--source/gd/sw/source/core/undo.po2
-rw-r--r--source/gd/sw/source/core/unocore.po2
-rw-r--r--source/gd/sw/source/ui/app.po58
-rw-r--r--source/gd/sw/source/ui/chrdlg.po2
-rw-r--r--source/gd/sw/source/ui/config.po2
-rw-r--r--source/gd/sw/source/ui/dbui.po2
-rw-r--r--source/gd/sw/source/ui/dialog.po2
-rw-r--r--source/gd/sw/source/ui/dochdl.po2
-rw-r--r--source/gd/sw/source/ui/docvw.po2
-rw-r--r--source/gd/sw/source/ui/envelp.po2
-rw-r--r--source/gd/sw/source/ui/fldui.po2
-rw-r--r--source/gd/sw/source/ui/fmtui.po2
-rw-r--r--source/gd/sw/source/ui/frmdlg.po2
-rw-r--r--source/gd/sw/source/ui/globdoc.po2
-rw-r--r--source/gd/sw/source/ui/index.po2
-rw-r--r--source/gd/sw/source/ui/lingu.po2
-rw-r--r--source/gd/sw/source/ui/misc.po2
-rw-r--r--source/gd/sw/source/ui/ribbar.po2
-rw-r--r--source/gd/sw/source/ui/shells.po2
-rw-r--r--source/gd/sw/source/ui/smartmenu.po2
-rw-r--r--source/gd/sw/source/ui/table.po2
-rw-r--r--source/gd/sw/source/ui/uiview.po2
-rw-r--r--source/gd/sw/source/ui/utlui.po2
-rw-r--r--source/gd/sw/source/ui/web.po2
-rw-r--r--source/gd/sw/source/ui/wrtsh.po2
-rw-r--r--source/gd/sw/uiconfig/sw/ui.po278
-rw-r--r--source/gd/sw/uiconfig/swriter/ui.po124
-rw-r--r--source/gd/swext/mediawiki/help.po2
-rw-r--r--source/gd/swext/mediawiki/src.po2
-rw-r--r--source/gd/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gd/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/gd/sysui/desktop/share.po2
-rw-r--r--source/gd/tubes/uiconfig/ui.po8
-rw-r--r--source/gd/uui/source.po2
-rw-r--r--source/gd/vcl/qa/cppunit/builder.po2
-rw-r--r--source/gd/vcl/source/edit.po2
-rw-r--r--source/gd/vcl/source/src.po2
-rw-r--r--source/gd/vcl/uiconfig/ui.po2
-rw-r--r--source/gd/wizards/source/euro.po2
-rw-r--r--source/gd/wizards/source/formwizard.po2
-rw-r--r--source/gd/wizards/source/importwizard.po2
-rw-r--r--source/gd/wizards/source/template.po8
-rw-r--r--source/gd/xmlsecurity/source/component.po2
-rw-r--r--source/gd/xmlsecurity/source/dialogs.po2
-rw-r--r--source/gl/accessibility/source/helper.po2
-rw-r--r--source/gl/android/sdremote/res/values.po4
-rw-r--r--source/gl/avmedia/source/framework.po2
-rw-r--r--source/gl/avmedia/source/viewer.po2
-rw-r--r--source/gl/basctl/source/basicide.po2
-rw-r--r--source/gl/basctl/source/dlged.po2
-rw-r--r--source/gl/basctl/uiconfig/basicide/ui.po4
-rw-r--r--source/gl/basic/source/classes.po2
-rw-r--r--source/gl/basic/source/sbx.po2
-rw-r--r--source/gl/chart2/source/controller/dialogs.po2
-rw-r--r--source/gl/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/connectivity/source/resource.po2
-rw-r--r--source/gl/cui/source/customize.po4
-rw-r--r--source/gl/cui/source/dialogs.po4
-rw-r--r--source/gl/cui/source/options.po4
-rw-r--r--source/gl/cui/source/tabpages.po54
-rw-r--r--source/gl/cui/uiconfig/ui.po209
-rw-r--r--source/gl/dbaccess/source/core/resource.po2
-rw-r--r--source/gl/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/gl/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/gl/dbaccess/source/ui/app.po2
-rw-r--r--source/gl/dbaccess/source/ui/browser.po8
-rw-r--r--source/gl/dbaccess/source/ui/control.po2
-rw-r--r--source/gl/dbaccess/source/ui/dlg.po9
-rw-r--r--source/gl/dbaccess/source/ui/inc.po2
-rw-r--r--source/gl/dbaccess/source/ui/misc.po2
-rw-r--r--source/gl/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/gl/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/gl/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/gl/dbaccess/source/ui/uno.po2
-rw-r--r--source/gl/desktop/source/app.po2
-rw-r--r--source/gl/desktop/source/deployment/gui.po2
-rw-r--r--source/gl/desktop/source/deployment/manager.po2
-rw-r--r--source/gl/desktop/source/deployment/misc.po2
-rw-r--r--source/gl/desktop/source/deployment/registry.po2
-rw-r--r--source/gl/desktop/source/deployment/registry/component.po2
-rw-r--r--source/gl/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/gl/desktop/source/deployment/registry/help.po2
-rw-r--r--source/gl/desktop/source/deployment/registry/package.po2
-rw-r--r--source/gl/desktop/source/deployment/registry/script.po2
-rw-r--r--source/gl/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/gl/desktop/source/deployment/unopkg.po2
-rw-r--r--source/gl/desktop/uiconfig/ui.po2
-rw-r--r--source/gl/dictionaries/af_ZA.po2
-rw-r--r--source/gl/dictionaries/an_ES.po2
-rw-r--r--source/gl/dictionaries/ar.po2
-rw-r--r--source/gl/dictionaries/be_BY.po2
-rw-r--r--source/gl/dictionaries/bg_BG.po2
-rw-r--r--source/gl/dictionaries/bn_BD.po2
-rw-r--r--source/gl/dictionaries/br_FR.po2
-rw-r--r--source/gl/dictionaries/ca.po2
-rw-r--r--source/gl/dictionaries/cs_CZ.po2
-rw-r--r--source/gl/dictionaries/da_DK.po2
-rw-r--r--source/gl/dictionaries/de.po2
-rw-r--r--source/gl/dictionaries/el_GR.po2
-rw-r--r--source/gl/dictionaries/en.po2
-rw-r--r--source/gl/dictionaries/en/dialog.po2
-rw-r--r--source/gl/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gl/dictionaries/es.po13
-rw-r--r--source/gl/dictionaries/et_EE.po2
-rw-r--r--source/gl/dictionaries/fr_FR.po2
-rw-r--r--source/gl/dictionaries/gd_GB.po2
-rw-r--r--source/gl/dictionaries/gl.po10
-rw-r--r--source/gl/dictionaries/gu_IN.po2
-rw-r--r--source/gl/dictionaries/he_IL.po2
-rw-r--r--source/gl/dictionaries/hi_IN.po2
-rw-r--r--source/gl/dictionaries/hr_HR.po2
-rw-r--r--source/gl/dictionaries/hu_HU.po2
-rw-r--r--source/gl/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/gl/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gl/dictionaries/it_IT.po2
-rw-r--r--source/gl/dictionaries/ku_TR.po2
-rw-r--r--source/gl/dictionaries/lt_LT.po2
-rw-r--r--source/gl/dictionaries/lv_LV.po2
-rw-r--r--source/gl/dictionaries/ne_NP.po2
-rw-r--r--source/gl/dictionaries/nl_NL.po2
-rw-r--r--source/gl/dictionaries/no.po2
-rw-r--r--source/gl/dictionaries/oc_FR.po2
-rw-r--r--source/gl/dictionaries/pl_PL.po2
-rw-r--r--source/gl/dictionaries/pt_BR.po9
-rw-r--r--source/gl/dictionaries/pt_BR/dialog.po14
-rw-r--r--source/gl/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gl/dictionaries/pt_PT.po2
-rw-r--r--source/gl/dictionaries/ro.po2
-rw-r--r--source/gl/dictionaries/ru_RU.po2
-rw-r--r--source/gl/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/gl/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gl/dictionaries/si_LK.po2
-rw-r--r--source/gl/dictionaries/sk_SK.po2
-rw-r--r--source/gl/dictionaries/sl_SI.po2
-rw-r--r--source/gl/dictionaries/sr.po2
-rw-r--r--source/gl/dictionaries/sv_SE.po2
-rw-r--r--source/gl/dictionaries/sw_TZ.po2
-rw-r--r--source/gl/dictionaries/te_IN.po2
-rw-r--r--source/gl/dictionaries/th_TH.po2
-rw-r--r--source/gl/dictionaries/uk_UA.po2
-rw-r--r--source/gl/dictionaries/vi.po2
-rw-r--r--source/gl/dictionaries/zu_ZA.po2
-rw-r--r--source/gl/editeng/source/accessibility.po2
-rw-r--r--source/gl/editeng/source/editeng.po2
-rw-r--r--source/gl/editeng/source/items.po2
-rw-r--r--source/gl/editeng/source/misc.po2
-rw-r--r--source/gl/editeng/source/outliner.po2
-rw-r--r--source/gl/extensions/source/abpilot.po2
-rw-r--r--source/gl/extensions/source/bibliography.po2
-rw-r--r--source/gl/extensions/source/dbpilots.po2
-rw-r--r--source/gl/extensions/source/propctrlr.po2
-rw-r--r--source/gl/extensions/source/scanner.po2
-rw-r--r--source/gl/extensions/source/update/check.po2
-rw-r--r--source/gl/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/gl/filter/source/config/fragments/filters.po2
-rw-r--r--source/gl/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/gl/filter/source/config/fragments/types.po2
-rw-r--r--source/gl/filter/source/flash.po2
-rw-r--r--source/gl/filter/source/graphicfilter/eps.po2
-rw-r--r--source/gl/filter/source/pdf.po2
-rw-r--r--source/gl/filter/source/t602.po2
-rw-r--r--source/gl/filter/source/xsltdialog.po2
-rw-r--r--source/gl/filter/uiconfig/ui.po36
-rw-r--r--source/gl/forms/source/resource.po2
-rw-r--r--source/gl/formula/source/core/resource.po45
-rw-r--r--source/gl/formula/source/ui/dlg.po2
-rw-r--r--source/gl/fpicker/source/office.po10
-rw-r--r--source/gl/framework/source/classes.po2
-rw-r--r--source/gl/framework/source/services.po2
-rw-r--r--source/gl/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/gl/librelogo/source/pythonpath.po42
-rw-r--r--source/gl/mysqlc/source.po2
-rw-r--r--source/gl/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/gl/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/gl/nlpsolver/src/locale.po2
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/gl/padmin/source.po2
-rw-r--r--source/gl/readlicense_oo/docs.po2
-rw-r--r--source/gl/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/gl/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gl/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/gl/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/gl/reportbuilder/util.po2
-rw-r--r--source/gl/reportdesign/source/core/resource.po2
-rw-r--r--source/gl/reportdesign/source/ui/dlg.po2
-rw-r--r--source/gl/reportdesign/source/ui/inspection.po2
-rw-r--r--source/gl/reportdesign/source/ui/report.po2
-rw-r--r--source/gl/sc/source/core/src.po2
-rw-r--r--source/gl/sc/source/ui/cctrl.po2
-rw-r--r--source/gl/sc/source/ui/dbgui.po2
-rw-r--r--source/gl/sc/source/ui/docshell.po2
-rw-r--r--source/gl/sc/source/ui/drawfunc.po2
-rw-r--r--source/gl/sc/source/ui/formdlg.po2
-rw-r--r--source/gl/sc/source/ui/miscdlgs.po2
-rw-r--r--source/gl/sc/source/ui/navipi.po2
-rw-r--r--source/gl/sc/source/ui/optdlg.po2
-rw-r--r--source/gl/sc/source/ui/pagedlg.po2
-rw-r--r--source/gl/sc/source/ui/src.po383
-rw-r--r--source/gl/sc/source/ui/styleui.po2
-rw-r--r--source/gl/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/gl/scaddins/source/analysis.po2
-rw-r--r--source/gl/scaddins/source/datefunc.po2
-rw-r--r--source/gl/scaddins/source/pricing.po2
-rw-r--r--source/gl/sccomp/source/solver.po2
-rw-r--r--source/gl/scp2/source/accessories.po2
-rw-r--r--source/gl/scp2/source/activex.po2
-rw-r--r--source/gl/scp2/source/base.po2
-rw-r--r--source/gl/scp2/source/calc.po2
-rw-r--r--source/gl/scp2/source/draw.po2
-rw-r--r--source/gl/scp2/source/extensions.po2
-rw-r--r--source/gl/scp2/source/gnome.po2
-rw-r--r--source/gl/scp2/source/graphicfilter.po2
-rw-r--r--source/gl/scp2/source/impress.po2
-rw-r--r--source/gl/scp2/source/javafilter.po2
-rw-r--r--source/gl/scp2/source/kde.po2
-rw-r--r--source/gl/scp2/source/math.po2
-rw-r--r--source/gl/scp2/source/onlineupdate.po2
-rw-r--r--source/gl/scp2/source/ooo.po2
-rw-r--r--source/gl/scp2/source/python.po18
-rw-r--r--source/gl/scp2/source/quickstart.po2
-rw-r--r--source/gl/scp2/source/sdkoo.po2
-rw-r--r--source/gl/scp2/source/smoketest.po2
-rw-r--r--source/gl/scp2/source/stdlibs.po2
-rw-r--r--source/gl/scp2/source/tde.po2
-rw-r--r--source/gl/scp2/source/winexplorerext.po2
-rw-r--r--source/gl/scp2/source/writer.po2
-rw-r--r--source/gl/scp2/source/xsltfilter.po2
-rw-r--r--source/gl/sd/source/core.po2
-rw-r--r--source/gl/sd/source/filter/html.po2
-rw-r--r--source/gl/sd/source/ui/accessibility.po2
-rw-r--r--source/gl/sd/source/ui/animations.po2
-rw-r--r--source/gl/sd/source/ui/annotations.po2
-rw-r--r--source/gl/sd/source/ui/app.po2
-rw-r--r--source/gl/sd/source/ui/dlg.po2
-rw-r--r--source/gl/sd/source/ui/slideshow.po2
-rw-r--r--source/gl/sd/source/ui/table.po2
-rw-r--r--source/gl/sd/source/ui/view.po2
-rw-r--r--source/gl/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/gl/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/gl/sdext/source/minimizer.po2
-rw-r--r--source/gl/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gl/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/gl/setup_native/source/mac.po2
-rw-r--r--source/gl/sfx2/source/appl.po2
-rw-r--r--source/gl/sfx2/source/bastyp.po2
-rw-r--r--source/gl/sfx2/source/control.po23
-rw-r--r--source/gl/sfx2/source/dialog.po46
-rw-r--r--source/gl/sfx2/source/doc.po126
-rw-r--r--source/gl/sfx2/source/menu.po2
-rw-r--r--source/gl/sfx2/source/view.po2
-rw-r--r--source/gl/sfx2/uiconfig/ui.po2
-rw-r--r--source/gl/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/gl/starmath/source.po2
-rw-r--r--source/gl/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/gl/svl/source/items.po2
-rw-r--r--source/gl/svl/source/misc.po2
-rw-r--r--source/gl/svtools/source/contnr.po2
-rw-r--r--source/gl/svtools/source/control.po2
-rw-r--r--source/gl/svtools/source/dialogs.po2
-rw-r--r--source/gl/svtools/source/java.po2
-rw-r--r--source/gl/svtools/source/misc.po2
-rw-r--r--source/gl/svtools/source/toolpanel.po2
-rw-r--r--source/gl/svtools/uiconfig/ui.po53
-rw-r--r--source/gl/svx/inc.po2
-rw-r--r--source/gl/svx/source/accessibility.po2
-rw-r--r--source/gl/svx/source/core.po2
-rw-r--r--source/gl/svx/source/dialog.po224
-rw-r--r--source/gl/svx/source/engine3d.po2
-rw-r--r--source/gl/svx/source/fmcomp.po2
-rw-r--r--source/gl/svx/source/form.po2
-rw-r--r--source/gl/svx/source/gallery2.po2
-rw-r--r--source/gl/svx/source/items.po2
-rw-r--r--source/gl/svx/source/src.po2
-rw-r--r--source/gl/svx/source/stbctrls.po2
-rw-r--r--source/gl/svx/source/svdraw.po2
-rw-r--r--source/gl/svx/source/table.po2
-rw-r--r--source/gl/svx/source/tbxctrls.po2
-rw-r--r--source/gl/svx/source/toolbars.po2
-rw-r--r--source/gl/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/gl/svx/uiconfig/ui.po204
-rw-r--r--source/gl/sw/source/core/layout.po2
-rw-r--r--source/gl/sw/source/core/undo.po2
-rw-r--r--source/gl/sw/source/core/unocore.po2
-rw-r--r--source/gl/sw/source/ui/app.po2
-rw-r--r--source/gl/sw/source/ui/chrdlg.po2
-rw-r--r--source/gl/sw/source/ui/config.po2
-rw-r--r--source/gl/sw/source/ui/dbui.po2
-rw-r--r--source/gl/sw/source/ui/dialog.po2
-rw-r--r--source/gl/sw/source/ui/dochdl.po2
-rw-r--r--source/gl/sw/source/ui/docvw.po2
-rw-r--r--source/gl/sw/source/ui/envelp.po2
-rw-r--r--source/gl/sw/source/ui/fldui.po2
-rw-r--r--source/gl/sw/source/ui/fmtui.po2
-rw-r--r--source/gl/sw/source/ui/frmdlg.po2
-rw-r--r--source/gl/sw/source/ui/globdoc.po2
-rw-r--r--source/gl/sw/source/ui/index.po2
-rw-r--r--source/gl/sw/source/ui/lingu.po2
-rw-r--r--source/gl/sw/source/ui/misc.po2
-rw-r--r--source/gl/sw/source/ui/ribbar.po2
-rw-r--r--source/gl/sw/source/ui/shells.po2
-rw-r--r--source/gl/sw/source/ui/smartmenu.po2
-rw-r--r--source/gl/sw/source/ui/table.po2
-rw-r--r--source/gl/sw/source/ui/uiview.po2
-rw-r--r--source/gl/sw/source/ui/utlui.po2
-rw-r--r--source/gl/sw/source/ui/web.po2
-rw-r--r--source/gl/sw/source/ui/wrtsh.po2
-rw-r--r--source/gl/sw/uiconfig/sw/ui.po282
-rw-r--r--source/gl/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/gl/swext/mediawiki/help.po2
-rw-r--r--source/gl/swext/mediawiki/src.po2
-rw-r--r--source/gl/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/gl/sysui/desktop/share.po2
-rw-r--r--source/gl/tubes/uiconfig/ui.po2
-rw-r--r--source/gl/uui/source.po2
-rw-r--r--source/gl/vcl/qa/cppunit/builder.po2
-rw-r--r--source/gl/vcl/source/edit.po2
-rw-r--r--source/gl/vcl/source/src.po2
-rw-r--r--source/gl/vcl/uiconfig/ui.po2
-rw-r--r--source/gl/wizards/source/euro.po2
-rw-r--r--source/gl/wizards/source/formwizard.po2
-rw-r--r--source/gl/wizards/source/importwizard.po2
-rw-r--r--source/gl/wizards/source/template.po2
-rw-r--r--source/gl/xmlsecurity/source/component.po2
-rw-r--r--source/gl/xmlsecurity/source/dialogs.po2
-rw-r--r--source/gu/accessibility/source/helper.po2
-rw-r--r--source/gu/android/sdremote/res/values.po111
-rw-r--r--source/gu/avmedia/source/framework.po2
-rw-r--r--source/gu/avmedia/source/viewer.po2
-rw-r--r--source/gu/basctl/source/basicide.po2
-rw-r--r--source/gu/basctl/source/dlged.po2
-rw-r--r--source/gu/basctl/uiconfig/basicide/ui.po17
-rw-r--r--source/gu/basic/source/classes.po2
-rw-r--r--source/gu/basic/source/sbx.po2
-rw-r--r--source/gu/chart2/source/controller/dialogs.po2
-rw-r--r--source/gu/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/connectivity/source/resource.po2
-rw-r--r--source/gu/cui/source/customize.po9
-rw-r--r--source/gu/cui/source/dialogs.po17
-rw-r--r--source/gu/cui/source/options.po32
-rw-r--r--source/gu/cui/source/tabpages.po70
-rw-r--r--source/gu/cui/uiconfig/ui.po217
-rw-r--r--source/gu/dbaccess/source/core/resource.po2
-rw-r--r--source/gu/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/gu/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/gu/dbaccess/source/ui/app.po2
-rw-r--r--source/gu/dbaccess/source/ui/browser.po6
-rw-r--r--source/gu/dbaccess/source/ui/control.po2
-rw-r--r--source/gu/dbaccess/source/ui/dlg.po9
-rw-r--r--source/gu/dbaccess/source/ui/inc.po2
-rw-r--r--source/gu/dbaccess/source/ui/misc.po2
-rw-r--r--source/gu/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/gu/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/gu/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/gu/dbaccess/source/ui/uno.po2
-rw-r--r--source/gu/desktop/source/app.po2
-rw-r--r--source/gu/desktop/source/deployment/gui.po2
-rw-r--r--source/gu/desktop/source/deployment/manager.po2
-rw-r--r--source/gu/desktop/source/deployment/misc.po2
-rw-r--r--source/gu/desktop/source/deployment/registry.po2
-rw-r--r--source/gu/desktop/source/deployment/registry/component.po2
-rw-r--r--source/gu/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/gu/desktop/source/deployment/registry/help.po2
-rw-r--r--source/gu/desktop/source/deployment/registry/package.po2
-rw-r--r--source/gu/desktop/source/deployment/registry/script.po2
-rw-r--r--source/gu/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/gu/desktop/source/deployment/unopkg.po2
-rw-r--r--source/gu/desktop/uiconfig/ui.po2
-rw-r--r--source/gu/dictionaries/af_ZA.po2
-rw-r--r--source/gu/dictionaries/an_ES.po2
-rw-r--r--source/gu/dictionaries/ar.po2
-rw-r--r--source/gu/dictionaries/be_BY.po2
-rw-r--r--source/gu/dictionaries/bg_BG.po2
-rw-r--r--source/gu/dictionaries/bn_BD.po2
-rw-r--r--source/gu/dictionaries/br_FR.po2
-rw-r--r--source/gu/dictionaries/ca.po2
-rw-r--r--source/gu/dictionaries/cs_CZ.po2
-rw-r--r--source/gu/dictionaries/da_DK.po2
-rw-r--r--source/gu/dictionaries/de.po2
-rw-r--r--source/gu/dictionaries/el_GR.po2
-rw-r--r--source/gu/dictionaries/en.po2
-rw-r--r--source/gu/dictionaries/en/dialog.po2
-rw-r--r--source/gu/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gu/dictionaries/es.po2
-rw-r--r--source/gu/dictionaries/et_EE.po2
-rw-r--r--source/gu/dictionaries/fr_FR.po2
-rw-r--r--source/gu/dictionaries/gd_GB.po2
-rw-r--r--source/gu/dictionaries/gl.po2
-rw-r--r--source/gu/dictionaries/gu_IN.po2
-rw-r--r--source/gu/dictionaries/he_IL.po2
-rw-r--r--source/gu/dictionaries/hi_IN.po2
-rw-r--r--source/gu/dictionaries/hr_HR.po2
-rw-r--r--source/gu/dictionaries/hu_HU.po2
-rw-r--r--source/gu/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/gu/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gu/dictionaries/it_IT.po2
-rw-r--r--source/gu/dictionaries/ku_TR.po2
-rw-r--r--source/gu/dictionaries/lt_LT.po2
-rw-r--r--source/gu/dictionaries/lv_LV.po2
-rw-r--r--source/gu/dictionaries/ne_NP.po2
-rw-r--r--source/gu/dictionaries/nl_NL.po2
-rw-r--r--source/gu/dictionaries/no.po2
-rw-r--r--source/gu/dictionaries/oc_FR.po2
-rw-r--r--source/gu/dictionaries/pl_PL.po2
-rw-r--r--source/gu/dictionaries/pt_BR.po2
-rw-r--r--source/gu/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/gu/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po14
-rw-r--r--source/gu/dictionaries/pt_PT.po2
-rw-r--r--source/gu/dictionaries/ro.po2
-rw-r--r--source/gu/dictionaries/ru_RU.po2
-rw-r--r--source/gu/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/gu/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gu/dictionaries/si_LK.po2
-rw-r--r--source/gu/dictionaries/sk_SK.po2
-rw-r--r--source/gu/dictionaries/sl_SI.po2
-rw-r--r--source/gu/dictionaries/sr.po2
-rw-r--r--source/gu/dictionaries/sv_SE.po2
-rw-r--r--source/gu/dictionaries/sw_TZ.po2
-rw-r--r--source/gu/dictionaries/te_IN.po2
-rw-r--r--source/gu/dictionaries/th_TH.po2
-rw-r--r--source/gu/dictionaries/uk_UA.po2
-rw-r--r--source/gu/dictionaries/vi.po2
-rw-r--r--source/gu/dictionaries/zu_ZA.po2
-rw-r--r--source/gu/editeng/source/accessibility.po2
-rw-r--r--source/gu/editeng/source/editeng.po2
-rw-r--r--source/gu/editeng/source/items.po2
-rw-r--r--source/gu/editeng/source/misc.po2
-rw-r--r--source/gu/editeng/source/outliner.po2
-rw-r--r--source/gu/extensions/source/abpilot.po2
-rw-r--r--source/gu/extensions/source/bibliography.po2
-rw-r--r--source/gu/extensions/source/dbpilots.po2
-rw-r--r--source/gu/extensions/source/propctrlr.po2
-rw-r--r--source/gu/extensions/source/scanner.po2
-rw-r--r--source/gu/extensions/source/update/check.po2
-rw-r--r--source/gu/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/gu/filter/source/config/fragments/filters.po2
-rw-r--r--source/gu/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/gu/filter/source/config/fragments/types.po2
-rw-r--r--source/gu/filter/source/flash.po2
-rw-r--r--source/gu/filter/source/graphicfilter/eps.po2
-rw-r--r--source/gu/filter/source/pdf.po19
-rw-r--r--source/gu/filter/source/t602.po2
-rw-r--r--source/gu/filter/source/xsltdialog.po11
-rw-r--r--source/gu/filter/uiconfig/ui.po36
-rw-r--r--source/gu/forms/source/resource.po2
-rw-r--r--source/gu/formula/source/core/resource.po45
-rw-r--r--source/gu/formula/source/ui/dlg.po2
-rw-r--r--source/gu/fpicker/source/office.po6
-rw-r--r--source/gu/framework/source/classes.po2
-rw-r--r--source/gu/framework/source/services.po2
-rw-r--r--source/gu/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/gu/librelogo/source/pythonpath.po185
-rw-r--r--source/gu/mysqlc/source.po2
-rw-r--r--source/gu/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/gu/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po11
-rw-r--r--source/gu/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/gu/nlpsolver/src/locale.po2
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office.po163
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po73
-rw-r--r--source/gu/padmin/source.po17
-rw-r--r--source/gu/readlicense_oo/docs.po2
-rw-r--r--source/gu/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/gu/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gu/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/gu/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/gu/reportbuilder/util.po2
-rw-r--r--source/gu/reportdesign/source/core/resource.po2
-rw-r--r--source/gu/reportdesign/source/ui/dlg.po2
-rw-r--r--source/gu/reportdesign/source/ui/inspection.po2
-rw-r--r--source/gu/reportdesign/source/ui/report.po2
-rw-r--r--source/gu/sc/source/core/src.po2
-rw-r--r--source/gu/sc/source/ui/cctrl.po2
-rw-r--r--source/gu/sc/source/ui/dbgui.po13
-rw-r--r--source/gu/sc/source/ui/docshell.po2
-rw-r--r--source/gu/sc/source/ui/drawfunc.po7
-rw-r--r--source/gu/sc/source/ui/formdlg.po2
-rw-r--r--source/gu/sc/source/ui/miscdlgs.po2
-rw-r--r--source/gu/sc/source/ui/navipi.po2
-rw-r--r--source/gu/sc/source/ui/optdlg.po11
-rw-r--r--source/gu/sc/source/ui/pagedlg.po2
-rw-r--r--source/gu/sc/source/ui/src.po540
-rw-r--r--source/gu/sc/source/ui/styleui.po17
-rw-r--r--source/gu/sc/uiconfig/scalc/ui.po49
-rw-r--r--source/gu/scaddins/source/analysis.po2
-rw-r--r--source/gu/scaddins/source/datefunc.po2
-rw-r--r--source/gu/scaddins/source/pricing.po24
-rw-r--r--source/gu/sccomp/source/solver.po2
-rw-r--r--source/gu/scp2/source/accessories.po2
-rw-r--r--source/gu/scp2/source/activex.po2
-rw-r--r--source/gu/scp2/source/base.po2
-rw-r--r--source/gu/scp2/source/calc.po2
-rw-r--r--source/gu/scp2/source/draw.po2
-rw-r--r--source/gu/scp2/source/extensions.po2
-rw-r--r--source/gu/scp2/source/gnome.po2
-rw-r--r--source/gu/scp2/source/graphicfilter.po2
-rw-r--r--source/gu/scp2/source/impress.po2
-rw-r--r--source/gu/scp2/source/javafilter.po2
-rw-r--r--source/gu/scp2/source/kde.po2
-rw-r--r--source/gu/scp2/source/math.po2
-rw-r--r--source/gu/scp2/source/onlineupdate.po2
-rw-r--r--source/gu/scp2/source/ooo.po2
-rw-r--r--source/gu/scp2/source/python.po27
-rw-r--r--source/gu/scp2/source/quickstart.po2
-rw-r--r--source/gu/scp2/source/sdkoo.po2
-rw-r--r--source/gu/scp2/source/smoketest.po2
-rw-r--r--source/gu/scp2/source/stdlibs.po2
-rw-r--r--source/gu/scp2/source/tde.po2
-rw-r--r--source/gu/scp2/source/winexplorerext.po2
-rw-r--r--source/gu/scp2/source/writer.po2
-rw-r--r--source/gu/scp2/source/xsltfilter.po2
-rw-r--r--source/gu/sd/source/core.po2
-rw-r--r--source/gu/sd/source/filter/html.po2
-rw-r--r--source/gu/sd/source/ui/accessibility.po2
-rw-r--r--source/gu/sd/source/ui/animations.po42
-rw-r--r--source/gu/sd/source/ui/annotations.po2
-rw-r--r--source/gu/sd/source/ui/app.po20
-rw-r--r--source/gu/sd/source/ui/dlg.po24
-rw-r--r--source/gu/sd/source/ui/slideshow.po2
-rw-r--r--source/gu/sd/source/ui/table.po25
-rw-r--r--source/gu/sd/source/ui/view.po2
-rw-r--r--source/gu/sd/uiconfig/sdraw/ui.po15
-rw-r--r--source/gu/sd/uiconfig/simpress/ui.po15
-rw-r--r--source/gu/sdext/source/minimizer.po2
-rw-r--r--source/gu/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gu/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po62
-rw-r--r--source/gu/setup_native/source/mac.po2
-rw-r--r--source/gu/sfx2/source/appl.po10
-rw-r--r--source/gu/sfx2/source/bastyp.po2
-rw-r--r--source/gu/sfx2/source/control.po23
-rw-r--r--source/gu/sfx2/source/dialog.po46
-rw-r--r--source/gu/sfx2/source/doc.po134
-rw-r--r--source/gu/sfx2/source/menu.po2
-rw-r--r--source/gu/sfx2/source/view.po2
-rw-r--r--source/gu/sfx2/uiconfig/ui.po23
-rw-r--r--source/gu/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/gu/starmath/source.po2
-rw-r--r--source/gu/starmath/uiconfig/smath/ui.po14
-rw-r--r--source/gu/svl/source/items.po2
-rw-r--r--source/gu/svl/source/misc.po2
-rw-r--r--source/gu/svtools/source/contnr.po7
-rw-r--r--source/gu/svtools/source/control.po2
-rw-r--r--source/gu/svtools/source/dialogs.po2
-rw-r--r--source/gu/svtools/source/java.po2
-rw-r--r--source/gu/svtools/source/misc.po61
-rw-r--r--source/gu/svtools/source/toolpanel.po2
-rw-r--r--source/gu/svtools/uiconfig/ui.po53
-rw-r--r--source/gu/svx/inc.po15
-rw-r--r--source/gu/svx/source/accessibility.po2
-rw-r--r--source/gu/svx/source/core.po2
-rw-r--r--source/gu/svx/source/dialog.po239
-rw-r--r--source/gu/svx/source/engine3d.po2
-rw-r--r--source/gu/svx/source/fmcomp.po2
-rw-r--r--source/gu/svx/source/form.po2
-rw-r--r--source/gu/svx/source/gallery2.po2
-rw-r--r--source/gu/svx/source/items.po2
-rw-r--r--source/gu/svx/source/src.po2
-rw-r--r--source/gu/svx/source/stbctrls.po2
-rw-r--r--source/gu/svx/source/svdraw.po11
-rw-r--r--source/gu/svx/source/table.po2
-rw-r--r--source/gu/svx/source/tbxctrls.po2
-rw-r--r--source/gu/svx/source/toolbars.po2
-rw-r--r--source/gu/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/gu/svx/uiconfig/ui.po206
-rw-r--r--source/gu/sw/source/core/layout.po2
-rw-r--r--source/gu/sw/source/core/undo.po8
-rw-r--r--source/gu/sw/source/core/unocore.po2
-rw-r--r--source/gu/sw/source/ui/app.po66
-rw-r--r--source/gu/sw/source/ui/chrdlg.po9
-rw-r--r--source/gu/sw/source/ui/config.po7
-rw-r--r--source/gu/sw/source/ui/dbui.po2
-rw-r--r--source/gu/sw/source/ui/dialog.po2
-rw-r--r--source/gu/sw/source/ui/dochdl.po2
-rw-r--r--source/gu/sw/source/ui/docvw.po2
-rw-r--r--source/gu/sw/source/ui/envelp.po2
-rw-r--r--source/gu/sw/source/ui/fldui.po2
-rw-r--r--source/gu/sw/source/ui/fmtui.po2
-rw-r--r--source/gu/sw/source/ui/frmdlg.po2
-rw-r--r--source/gu/sw/source/ui/globdoc.po2
-rw-r--r--source/gu/sw/source/ui/index.po10
-rw-r--r--source/gu/sw/source/ui/lingu.po2
-rw-r--r--source/gu/sw/source/ui/misc.po2
-rw-r--r--source/gu/sw/source/ui/ribbar.po2
-rw-r--r--source/gu/sw/source/ui/shells.po2
-rw-r--r--source/gu/sw/source/ui/smartmenu.po2
-rw-r--r--source/gu/sw/source/ui/table.po9
-rw-r--r--source/gu/sw/source/ui/uiview.po2
-rw-r--r--source/gu/sw/source/ui/utlui.po67
-rw-r--r--source/gu/sw/source/ui/web.po2
-rw-r--r--source/gu/sw/source/ui/wrtsh.po2
-rw-r--r--source/gu/sw/uiconfig/sw/ui.po278
-rw-r--r--source/gu/sw/uiconfig/swriter/ui.po356
-rw-r--r--source/gu/swext/mediawiki/help.po12
-rw-r--r--source/gu/swext/mediawiki/src.po2
-rw-r--r--source/gu/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/gu/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/gu/sysui/desktop/share.po2
-rw-r--r--source/gu/tubes/uiconfig/ui.po20
-rw-r--r--source/gu/uui/source.po2
-rw-r--r--source/gu/vcl/qa/cppunit/builder.po87
-rw-r--r--source/gu/vcl/source/edit.po20
-rw-r--r--source/gu/vcl/source/src.po13
-rw-r--r--source/gu/vcl/uiconfig/ui.po86
-rw-r--r--source/gu/wizards/source/euro.po2
-rw-r--r--source/gu/wizards/source/formwizard.po7
-rw-r--r--source/gu/wizards/source/importwizard.po2
-rw-r--r--source/gu/wizards/source/template.po22
-rw-r--r--source/gu/xmlsecurity/source/component.po2
-rw-r--r--source/gu/xmlsecurity/source/dialogs.po2
-rw-r--r--source/he/accessibility/source/helper.po8
-rw-r--r--source/he/android/sdremote/res/values.po31
-rw-r--r--source/he/avmedia/source/framework.po2
-rw-r--r--source/he/avmedia/source/viewer.po2
-rw-r--r--source/he/basctl/source/basicide.po50
-rw-r--r--source/he/basctl/source/dlged.po12
-rw-r--r--source/he/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/he/basic/source/classes.po2
-rw-r--r--source/he/basic/source/sbx.po2
-rw-r--r--source/he/chart2/source/controller/dialogs.po27
-rw-r--r--source/he/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/connectivity/source/resource.po2
-rw-r--r--source/he/cui/source/customize.po2
-rw-r--r--source/he/cui/source/dialogs.po2
-rw-r--r--source/he/cui/source/options.po4
-rw-r--r--source/he/cui/source/tabpages.po16
-rw-r--r--source/he/cui/uiconfig/ui.po24
-rw-r--r--source/he/dbaccess/source/core/resource.po2
-rw-r--r--source/he/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/he/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/he/dbaccess/source/ui/app.po2
-rw-r--r--source/he/dbaccess/source/ui/browser.po2
-rw-r--r--source/he/dbaccess/source/ui/control.po2
-rw-r--r--source/he/dbaccess/source/ui/dlg.po2
-rw-r--r--source/he/dbaccess/source/ui/inc.po2
-rw-r--r--source/he/dbaccess/source/ui/misc.po2
-rw-r--r--source/he/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/he/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/he/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/he/dbaccess/source/ui/uno.po2
-rw-r--r--source/he/desktop/source/app.po2
-rw-r--r--source/he/desktop/source/deployment/gui.po2
-rw-r--r--source/he/desktop/source/deployment/manager.po2
-rw-r--r--source/he/desktop/source/deployment/misc.po2
-rw-r--r--source/he/desktop/source/deployment/registry.po2
-rw-r--r--source/he/desktop/source/deployment/registry/component.po2
-rw-r--r--source/he/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/he/desktop/source/deployment/registry/help.po2
-rw-r--r--source/he/desktop/source/deployment/registry/package.po2
-rw-r--r--source/he/desktop/source/deployment/registry/script.po2
-rw-r--r--source/he/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/he/desktop/source/deployment/unopkg.po2
-rw-r--r--source/he/desktop/uiconfig/ui.po2
-rw-r--r--source/he/dictionaries/af_ZA.po2
-rw-r--r--source/he/dictionaries/an_ES.po2
-rw-r--r--source/he/dictionaries/ar.po2
-rw-r--r--source/he/dictionaries/be_BY.po2
-rw-r--r--source/he/dictionaries/bg_BG.po2
-rw-r--r--source/he/dictionaries/bn_BD.po2
-rw-r--r--source/he/dictionaries/br_FR.po2
-rw-r--r--source/he/dictionaries/ca.po2
-rw-r--r--source/he/dictionaries/cs_CZ.po2
-rw-r--r--source/he/dictionaries/da_DK.po2
-rw-r--r--source/he/dictionaries/de.po2
-rw-r--r--source/he/dictionaries/el_GR.po2
-rw-r--r--source/he/dictionaries/en.po2
-rw-r--r--source/he/dictionaries/en/dialog.po2
-rw-r--r--source/he/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/he/dictionaries/es.po2
-rw-r--r--source/he/dictionaries/et_EE.po2
-rw-r--r--source/he/dictionaries/fr_FR.po2
-rw-r--r--source/he/dictionaries/gd_GB.po2
-rw-r--r--source/he/dictionaries/gl.po2
-rw-r--r--source/he/dictionaries/gu_IN.po2
-rw-r--r--source/he/dictionaries/he_IL.po2
-rw-r--r--source/he/dictionaries/hi_IN.po2
-rw-r--r--source/he/dictionaries/hr_HR.po2
-rw-r--r--source/he/dictionaries/hu_HU.po2
-rw-r--r--source/he/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/he/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/he/dictionaries/it_IT.po2
-rw-r--r--source/he/dictionaries/ku_TR.po2
-rw-r--r--source/he/dictionaries/lt_LT.po2
-rw-r--r--source/he/dictionaries/lv_LV.po2
-rw-r--r--source/he/dictionaries/ne_NP.po2
-rw-r--r--source/he/dictionaries/nl_NL.po2
-rw-r--r--source/he/dictionaries/no.po2
-rw-r--r--source/he/dictionaries/oc_FR.po2
-rw-r--r--source/he/dictionaries/pl_PL.po2
-rw-r--r--source/he/dictionaries/pt_BR.po9
-rw-r--r--source/he/dictionaries/pt_BR/dialog.po76
-rw-r--r--source/he/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po14
-rw-r--r--source/he/dictionaries/pt_PT.po2
-rw-r--r--source/he/dictionaries/ro.po2
-rw-r--r--source/he/dictionaries/ru_RU.po2
-rw-r--r--source/he/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/he/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/he/dictionaries/si_LK.po2
-rw-r--r--source/he/dictionaries/sk_SK.po2
-rw-r--r--source/he/dictionaries/sl_SI.po2
-rw-r--r--source/he/dictionaries/sr.po2
-rw-r--r--source/he/dictionaries/sv_SE.po2
-rw-r--r--source/he/dictionaries/sw_TZ.po2
-rw-r--r--source/he/dictionaries/te_IN.po2
-rw-r--r--source/he/dictionaries/th_TH.po2
-rw-r--r--source/he/dictionaries/uk_UA.po2
-rw-r--r--source/he/dictionaries/vi.po2
-rw-r--r--source/he/dictionaries/zu_ZA.po2
-rw-r--r--source/he/editeng/source/accessibility.po2
-rw-r--r--source/he/editeng/source/editeng.po2
-rw-r--r--source/he/editeng/source/items.po2
-rw-r--r--source/he/editeng/source/misc.po2
-rw-r--r--source/he/editeng/source/outliner.po2
-rw-r--r--source/he/extensions/source/abpilot.po2
-rw-r--r--source/he/extensions/source/bibliography.po2
-rw-r--r--source/he/extensions/source/dbpilots.po2
-rw-r--r--source/he/extensions/source/propctrlr.po2
-rw-r--r--source/he/extensions/source/scanner.po2
-rw-r--r--source/he/extensions/source/update/check.po2
-rw-r--r--source/he/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/he/filter/source/config/fragments/filters.po2
-rw-r--r--source/he/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/he/filter/source/config/fragments/types.po2
-rw-r--r--source/he/filter/source/flash.po2
-rw-r--r--source/he/filter/source/graphicfilter/eps.po2
-rw-r--r--source/he/filter/source/pdf.po2
-rw-r--r--source/he/filter/source/t602.po2
-rw-r--r--source/he/filter/source/xsltdialog.po2
-rw-r--r--source/he/filter/uiconfig/ui.po36
-rw-r--r--source/he/forms/source/resource.po2
-rw-r--r--source/he/formula/source/core/resource.po46
-rw-r--r--source/he/formula/source/ui/dlg.po2
-rw-r--r--source/he/fpicker/source/office.po2
-rw-r--r--source/he/framework/source/classes.po2
-rw-r--r--source/he/framework/source/services.po2
-rw-r--r--source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/he/librelogo/source/pythonpath.po25
-rw-r--r--source/he/mysqlc/source.po2
-rw-r--r--source/he/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/he/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po12
-rw-r--r--source/he/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/he/nlpsolver/src/locale.po2
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office.po167
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po45
-rw-r--r--source/he/padmin/source.po19
-rw-r--r--source/he/readlicense_oo/docs.po2
-rw-r--r--source/he/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/he/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/he/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/he/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/he/reportbuilder/util.po2
-rw-r--r--source/he/reportdesign/source/core/resource.po2
-rw-r--r--source/he/reportdesign/source/ui/dlg.po2
-rw-r--r--source/he/reportdesign/source/ui/inspection.po2
-rw-r--r--source/he/reportdesign/source/ui/report.po2
-rw-r--r--source/he/sc/source/core/src.po2
-rw-r--r--source/he/sc/source/ui/cctrl.po2
-rw-r--r--source/he/sc/source/ui/dbgui.po2
-rw-r--r--source/he/sc/source/ui/docshell.po2
-rw-r--r--source/he/sc/source/ui/drawfunc.po2
-rw-r--r--source/he/sc/source/ui/formdlg.po2
-rw-r--r--source/he/sc/source/ui/miscdlgs.po2
-rw-r--r--source/he/sc/source/ui/navipi.po2
-rw-r--r--source/he/sc/source/ui/optdlg.po2
-rw-r--r--source/he/sc/source/ui/pagedlg.po2
-rw-r--r--source/he/sc/source/ui/src.po471
-rw-r--r--source/he/sc/source/ui/styleui.po19
-rw-r--r--source/he/sc/uiconfig/scalc/ui.po32
-rw-r--r--source/he/scaddins/source/analysis.po2
-rw-r--r--source/he/scaddins/source/datefunc.po2
-rw-r--r--source/he/scaddins/source/pricing.po2
-rw-r--r--source/he/sccomp/source/solver.po2
-rw-r--r--source/he/scp2/source/accessories.po2
-rw-r--r--source/he/scp2/source/activex.po2
-rw-r--r--source/he/scp2/source/base.po2
-rw-r--r--source/he/scp2/source/calc.po2
-rw-r--r--source/he/scp2/source/draw.po2
-rw-r--r--source/he/scp2/source/extensions.po2
-rw-r--r--source/he/scp2/source/gnome.po2
-rw-r--r--source/he/scp2/source/graphicfilter.po2
-rw-r--r--source/he/scp2/source/impress.po2
-rw-r--r--source/he/scp2/source/javafilter.po2
-rw-r--r--source/he/scp2/source/kde.po2
-rw-r--r--source/he/scp2/source/math.po2
-rw-r--r--source/he/scp2/source/onlineupdate.po2
-rw-r--r--source/he/scp2/source/ooo.po18
-rw-r--r--source/he/scp2/source/python.po26
-rw-r--r--source/he/scp2/source/quickstart.po2
-rw-r--r--source/he/scp2/source/sdkoo.po2
-rw-r--r--source/he/scp2/source/smoketest.po2
-rw-r--r--source/he/scp2/source/stdlibs.po2
-rw-r--r--source/he/scp2/source/tde.po2
-rw-r--r--source/he/scp2/source/winexplorerext.po2
-rw-r--r--source/he/scp2/source/writer.po2
-rw-r--r--source/he/scp2/source/xsltfilter.po2
-rw-r--r--source/he/sd/source/core.po2
-rw-r--r--source/he/sd/source/filter/html.po2
-rw-r--r--source/he/sd/source/ui/accessibility.po2
-rw-r--r--source/he/sd/source/ui/animations.po2
-rw-r--r--source/he/sd/source/ui/annotations.po2
-rw-r--r--source/he/sd/source/ui/app.po16
-rw-r--r--source/he/sd/source/ui/dlg.po12
-rw-r--r--source/he/sd/source/ui/slideshow.po2
-rw-r--r--source/he/sd/source/ui/table.po2
-rw-r--r--source/he/sd/source/ui/view.po2
-rw-r--r--source/he/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/he/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/he/sdext/source/minimizer.po2
-rw-r--r--source/he/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/he/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/he/setup_native/source/mac.po2
-rw-r--r--source/he/sfx2/source/appl.po2
-rw-r--r--source/he/sfx2/source/bastyp.po2
-rw-r--r--source/he/sfx2/source/control.po25
-rw-r--r--source/he/sfx2/source/dialog.po58
-rw-r--r--source/he/sfx2/source/doc.po128
-rw-r--r--source/he/sfx2/source/menu.po2
-rw-r--r--source/he/sfx2/source/view.po2
-rw-r--r--source/he/sfx2/uiconfig/ui.po10
-rw-r--r--source/he/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/he/starmath/source.po2
-rw-r--r--source/he/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/he/svl/source/items.po2
-rw-r--r--source/he/svl/source/misc.po2
-rw-r--r--source/he/svtools/source/contnr.po2
-rw-r--r--source/he/svtools/source/control.po2
-rw-r--r--source/he/svtools/source/dialogs.po2
-rw-r--r--source/he/svtools/source/java.po2
-rw-r--r--source/he/svtools/source/misc.po12
-rw-r--r--source/he/svtools/source/toolpanel.po2
-rw-r--r--source/he/svtools/uiconfig/ui.po69
-rw-r--r--source/he/svx/inc.po26
-rw-r--r--source/he/svx/source/accessibility.po2
-rw-r--r--source/he/svx/source/core.po2
-rw-r--r--source/he/svx/source/dialog.po235
-rw-r--r--source/he/svx/source/engine3d.po2
-rw-r--r--source/he/svx/source/fmcomp.po2
-rw-r--r--source/he/svx/source/form.po2
-rw-r--r--source/he/svx/source/gallery2.po2
-rw-r--r--source/he/svx/source/items.po2
-rw-r--r--source/he/svx/source/src.po2
-rw-r--r--source/he/svx/source/stbctrls.po2
-rw-r--r--source/he/svx/source/svdraw.po18
-rw-r--r--source/he/svx/source/table.po2
-rw-r--r--source/he/svx/source/tbxctrls.po2
-rw-r--r--source/he/svx/source/toolbars.po2
-rw-r--r--source/he/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/he/svx/uiconfig/ui.po206
-rw-r--r--source/he/sw/source/core/layout.po2
-rw-r--r--source/he/sw/source/core/undo.po2
-rw-r--r--source/he/sw/source/core/unocore.po2
-rw-r--r--source/he/sw/source/ui/app.po66
-rw-r--r--source/he/sw/source/ui/chrdlg.po2
-rw-r--r--source/he/sw/source/ui/config.po2
-rw-r--r--source/he/sw/source/ui/dbui.po2
-rw-r--r--source/he/sw/source/ui/dialog.po2
-rw-r--r--source/he/sw/source/ui/dochdl.po2
-rw-r--r--source/he/sw/source/ui/docvw.po2
-rw-r--r--source/he/sw/source/ui/envelp.po2
-rw-r--r--source/he/sw/source/ui/fldui.po2
-rw-r--r--source/he/sw/source/ui/fmtui.po2
-rw-r--r--source/he/sw/source/ui/frmdlg.po2
-rw-r--r--source/he/sw/source/ui/globdoc.po2
-rw-r--r--source/he/sw/source/ui/index.po2
-rw-r--r--source/he/sw/source/ui/lingu.po2
-rw-r--r--source/he/sw/source/ui/misc.po2
-rw-r--r--source/he/sw/source/ui/ribbar.po2
-rw-r--r--source/he/sw/source/ui/shells.po2
-rw-r--r--source/he/sw/source/ui/smartmenu.po2
-rw-r--r--source/he/sw/source/ui/table.po2
-rw-r--r--source/he/sw/source/ui/uiview.po2
-rw-r--r--source/he/sw/source/ui/utlui.po48
-rw-r--r--source/he/sw/source/ui/web.po2
-rw-r--r--source/he/sw/source/ui/wrtsh.po2
-rw-r--r--source/he/sw/uiconfig/sw/ui.po278
-rw-r--r--source/he/sw/uiconfig/swriter/ui.po152
-rw-r--r--source/he/swext/mediawiki/help.po2
-rw-r--r--source/he/swext/mediawiki/src.po2
-rw-r--r--source/he/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/he/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/he/sysui/desktop/share.po2
-rw-r--r--source/he/tubes/uiconfig/ui.po20
-rw-r--r--source/he/uui/source.po2
-rw-r--r--source/he/vcl/qa/cppunit/builder.po15
-rw-r--r--source/he/vcl/source/edit.po2
-rw-r--r--source/he/vcl/source/src.po2
-rw-r--r--source/he/vcl/uiconfig/ui.po2
-rw-r--r--source/he/wizards/source/euro.po2
-rw-r--r--source/he/wizards/source/formwizard.po2
-rw-r--r--source/he/wizards/source/importwizard.po2
-rw-r--r--source/he/wizards/source/template.po2
-rw-r--r--source/he/xmlsecurity/source/component.po2
-rw-r--r--source/he/xmlsecurity/source/dialogs.po2
-rw-r--r--source/hi/accessibility/source/helper.po2
-rw-r--r--source/hi/android/sdremote/res/values.po2
-rw-r--r--source/hi/avmedia/source/framework.po2
-rw-r--r--source/hi/avmedia/source/viewer.po2
-rw-r--r--source/hi/basctl/source/basicide.po2
-rw-r--r--source/hi/basctl/source/dlged.po2
-rw-r--r--source/hi/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/hi/basic/source/classes.po2
-rw-r--r--source/hi/basic/source/sbx.po2
-rw-r--r--source/hi/chart2/source/controller/dialogs.po2
-rw-r--r--source/hi/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/connectivity/source/resource.po2
-rw-r--r--source/hi/cui/source/customize.po2
-rw-r--r--source/hi/cui/source/dialogs.po2
-rw-r--r--source/hi/cui/source/options.po2
-rw-r--r--source/hi/cui/source/tabpages.po2
-rw-r--r--source/hi/cui/uiconfig/ui.po2
-rw-r--r--source/hi/dbaccess/source/core/resource.po2
-rw-r--r--source/hi/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/hi/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/hi/dbaccess/source/ui/app.po2
-rw-r--r--source/hi/dbaccess/source/ui/browser.po2
-rw-r--r--source/hi/dbaccess/source/ui/control.po2
-rw-r--r--source/hi/dbaccess/source/ui/dlg.po2
-rw-r--r--source/hi/dbaccess/source/ui/inc.po2
-rw-r--r--source/hi/dbaccess/source/ui/misc.po2
-rw-r--r--source/hi/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/hi/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/hi/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/hi/dbaccess/source/ui/uno.po2
-rw-r--r--source/hi/desktop/source/app.po2
-rw-r--r--source/hi/desktop/source/deployment/gui.po2
-rw-r--r--source/hi/desktop/source/deployment/manager.po2
-rw-r--r--source/hi/desktop/source/deployment/misc.po2
-rw-r--r--source/hi/desktop/source/deployment/registry.po2
-rw-r--r--source/hi/desktop/source/deployment/registry/component.po2
-rw-r--r--source/hi/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/hi/desktop/source/deployment/registry/help.po2
-rw-r--r--source/hi/desktop/source/deployment/registry/package.po2
-rw-r--r--source/hi/desktop/source/deployment/registry/script.po2
-rw-r--r--source/hi/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/hi/desktop/source/deployment/unopkg.po2
-rw-r--r--source/hi/desktop/uiconfig/ui.po2
-rw-r--r--source/hi/dictionaries/af_ZA.po2
-rw-r--r--source/hi/dictionaries/an_ES.po2
-rw-r--r--source/hi/dictionaries/ar.po2
-rw-r--r--source/hi/dictionaries/be_BY.po2
-rw-r--r--source/hi/dictionaries/bg_BG.po2
-rw-r--r--source/hi/dictionaries/bn_BD.po2
-rw-r--r--source/hi/dictionaries/br_FR.po2
-rw-r--r--source/hi/dictionaries/ca.po2
-rw-r--r--source/hi/dictionaries/cs_CZ.po2
-rw-r--r--source/hi/dictionaries/da_DK.po2
-rw-r--r--source/hi/dictionaries/de.po2
-rw-r--r--source/hi/dictionaries/el_GR.po2
-rw-r--r--source/hi/dictionaries/en.po2
-rw-r--r--source/hi/dictionaries/en/dialog.po2
-rw-r--r--source/hi/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hi/dictionaries/es.po2
-rw-r--r--source/hi/dictionaries/et_EE.po2
-rw-r--r--source/hi/dictionaries/fr_FR.po2
-rw-r--r--source/hi/dictionaries/gd_GB.po2
-rw-r--r--source/hi/dictionaries/gl.po2
-rw-r--r--source/hi/dictionaries/gu_IN.po2
-rw-r--r--source/hi/dictionaries/he_IL.po2
-rw-r--r--source/hi/dictionaries/hi_IN.po2
-rw-r--r--source/hi/dictionaries/hr_HR.po2
-rw-r--r--source/hi/dictionaries/hu_HU.po2
-rw-r--r--source/hi/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/hi/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hi/dictionaries/it_IT.po2
-rw-r--r--source/hi/dictionaries/ku_TR.po2
-rw-r--r--source/hi/dictionaries/lt_LT.po2
-rw-r--r--source/hi/dictionaries/lv_LV.po2
-rw-r--r--source/hi/dictionaries/ne_NP.po2
-rw-r--r--source/hi/dictionaries/nl_NL.po2
-rw-r--r--source/hi/dictionaries/no.po2
-rw-r--r--source/hi/dictionaries/oc_FR.po2
-rw-r--r--source/hi/dictionaries/pl_PL.po2
-rw-r--r--source/hi/dictionaries/pt_BR.po2
-rw-r--r--source/hi/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/hi/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hi/dictionaries/pt_PT.po2
-rw-r--r--source/hi/dictionaries/ro.po2
-rw-r--r--source/hi/dictionaries/ru_RU.po2
-rw-r--r--source/hi/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/hi/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hi/dictionaries/si_LK.po2
-rw-r--r--source/hi/dictionaries/sk_SK.po2
-rw-r--r--source/hi/dictionaries/sl_SI.po2
-rw-r--r--source/hi/dictionaries/sr.po2
-rw-r--r--source/hi/dictionaries/sv_SE.po2
-rw-r--r--source/hi/dictionaries/sw_TZ.po2
-rw-r--r--source/hi/dictionaries/te_IN.po2
-rw-r--r--source/hi/dictionaries/th_TH.po2
-rw-r--r--source/hi/dictionaries/uk_UA.po2
-rw-r--r--source/hi/dictionaries/vi.po2
-rw-r--r--source/hi/dictionaries/zu_ZA.po2
-rw-r--r--source/hi/editeng/source/accessibility.po2
-rw-r--r--source/hi/editeng/source/editeng.po2
-rw-r--r--source/hi/editeng/source/items.po2
-rw-r--r--source/hi/editeng/source/misc.po2
-rw-r--r--source/hi/editeng/source/outliner.po2
-rw-r--r--source/hi/extensions/source/abpilot.po2
-rw-r--r--source/hi/extensions/source/bibliography.po2
-rw-r--r--source/hi/extensions/source/dbpilots.po2
-rw-r--r--source/hi/extensions/source/propctrlr.po2
-rw-r--r--source/hi/extensions/source/scanner.po2
-rw-r--r--source/hi/extensions/source/update/check.po2
-rw-r--r--source/hi/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/hi/filter/source/config/fragments/filters.po2
-rw-r--r--source/hi/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/hi/filter/source/config/fragments/types.po2
-rw-r--r--source/hi/filter/source/flash.po2
-rw-r--r--source/hi/filter/source/graphicfilter/eps.po2
-rw-r--r--source/hi/filter/source/pdf.po2
-rw-r--r--source/hi/filter/source/t602.po2
-rw-r--r--source/hi/filter/source/xsltdialog.po2
-rw-r--r--source/hi/filter/uiconfig/ui.po2
-rw-r--r--source/hi/forms/source/resource.po2
-rw-r--r--source/hi/formula/source/core/resource.po38
-rw-r--r--source/hi/formula/source/ui/dlg.po2
-rw-r--r--source/hi/fpicker/source/office.po2
-rw-r--r--source/hi/framework/source/classes.po2
-rw-r--r--source/hi/framework/source/services.po2
-rw-r--r--source/hi/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/hi/librelogo/source/pythonpath.po2
-rw-r--r--source/hi/mysqlc/source.po2
-rw-r--r--source/hi/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hi/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/hi/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/hi/nlpsolver/src/locale.po2
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/hi/padmin/source.po2
-rw-r--r--source/hi/readlicense_oo/docs.po2
-rw-r--r--source/hi/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/hi/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hi/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/hi/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/hi/reportbuilder/util.po2
-rw-r--r--source/hi/reportdesign/source/core/resource.po2
-rw-r--r--source/hi/reportdesign/source/ui/dlg.po2
-rw-r--r--source/hi/reportdesign/source/ui/inspection.po2
-rw-r--r--source/hi/reportdesign/source/ui/report.po2
-rw-r--r--source/hi/sc/source/core/src.po2
-rw-r--r--source/hi/sc/source/ui/cctrl.po2
-rw-r--r--source/hi/sc/source/ui/dbgui.po2
-rw-r--r--source/hi/sc/source/ui/docshell.po2
-rw-r--r--source/hi/sc/source/ui/drawfunc.po2
-rw-r--r--source/hi/sc/source/ui/formdlg.po2
-rw-r--r--source/hi/sc/source/ui/miscdlgs.po2
-rw-r--r--source/hi/sc/source/ui/navipi.po2
-rw-r--r--source/hi/sc/source/ui/optdlg.po2
-rw-r--r--source/hi/sc/source/ui/pagedlg.po2
-rw-r--r--source/hi/sc/source/ui/src.po383
-rw-r--r--source/hi/sc/source/ui/styleui.po2
-rw-r--r--source/hi/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/hi/scaddins/source/analysis.po2
-rw-r--r--source/hi/scaddins/source/datefunc.po2
-rw-r--r--source/hi/scaddins/source/pricing.po2
-rw-r--r--source/hi/sccomp/source/solver.po2
-rw-r--r--source/hi/scp2/source/accessories.po2
-rw-r--r--source/hi/scp2/source/activex.po2
-rw-r--r--source/hi/scp2/source/base.po2
-rw-r--r--source/hi/scp2/source/calc.po2
-rw-r--r--source/hi/scp2/source/draw.po2
-rw-r--r--source/hi/scp2/source/extensions.po2
-rw-r--r--source/hi/scp2/source/gnome.po2
-rw-r--r--source/hi/scp2/source/graphicfilter.po2
-rw-r--r--source/hi/scp2/source/impress.po2
-rw-r--r--source/hi/scp2/source/javafilter.po2
-rw-r--r--source/hi/scp2/source/kde.po2
-rw-r--r--source/hi/scp2/source/math.po2
-rw-r--r--source/hi/scp2/source/onlineupdate.po2
-rw-r--r--source/hi/scp2/source/ooo.po2
-rw-r--r--source/hi/scp2/source/python.po18
-rw-r--r--source/hi/scp2/source/quickstart.po2
-rw-r--r--source/hi/scp2/source/sdkoo.po2
-rw-r--r--source/hi/scp2/source/smoketest.po2
-rw-r--r--source/hi/scp2/source/stdlibs.po2
-rw-r--r--source/hi/scp2/source/tde.po2
-rw-r--r--source/hi/scp2/source/winexplorerext.po2
-rw-r--r--source/hi/scp2/source/writer.po2
-rw-r--r--source/hi/scp2/source/xsltfilter.po2
-rw-r--r--source/hi/sd/source/core.po2
-rw-r--r--source/hi/sd/source/filter/html.po2
-rw-r--r--source/hi/sd/source/ui/accessibility.po2
-rw-r--r--source/hi/sd/source/ui/animations.po2
-rw-r--r--source/hi/sd/source/ui/annotations.po2
-rw-r--r--source/hi/sd/source/ui/app.po2
-rw-r--r--source/hi/sd/source/ui/dlg.po2
-rw-r--r--source/hi/sd/source/ui/slideshow.po2
-rw-r--r--source/hi/sd/source/ui/table.po2
-rw-r--r--source/hi/sd/source/ui/view.po2
-rw-r--r--source/hi/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/hi/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/hi/sdext/source/minimizer.po2
-rw-r--r--source/hi/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hi/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/hi/setup_native/source/mac.po2
-rw-r--r--source/hi/sfx2/source/appl.po2
-rw-r--r--source/hi/sfx2/source/bastyp.po2
-rw-r--r--source/hi/sfx2/source/control.po23
-rw-r--r--source/hi/sfx2/source/dialog.po46
-rw-r--r--source/hi/sfx2/source/doc.po126
-rw-r--r--source/hi/sfx2/source/menu.po2
-rw-r--r--source/hi/sfx2/source/view.po2
-rw-r--r--source/hi/sfx2/uiconfig/ui.po2
-rw-r--r--source/hi/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/hi/starmath/source.po2
-rw-r--r--source/hi/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/hi/svl/source/items.po2
-rw-r--r--source/hi/svl/source/misc.po2
-rw-r--r--source/hi/svtools/source/contnr.po2
-rw-r--r--source/hi/svtools/source/control.po2
-rw-r--r--source/hi/svtools/source/dialogs.po2
-rw-r--r--source/hi/svtools/source/java.po2
-rw-r--r--source/hi/svtools/source/misc.po2
-rw-r--r--source/hi/svtools/source/toolpanel.po2
-rw-r--r--source/hi/svtools/uiconfig/ui.po53
-rw-r--r--source/hi/svx/inc.po2
-rw-r--r--source/hi/svx/source/accessibility.po2
-rw-r--r--source/hi/svx/source/core.po2
-rw-r--r--source/hi/svx/source/dialog.po226
-rw-r--r--source/hi/svx/source/engine3d.po2
-rw-r--r--source/hi/svx/source/fmcomp.po2
-rw-r--r--source/hi/svx/source/form.po2
-rw-r--r--source/hi/svx/source/gallery2.po2
-rw-r--r--source/hi/svx/source/items.po2
-rw-r--r--source/hi/svx/source/src.po2
-rw-r--r--source/hi/svx/source/stbctrls.po2
-rw-r--r--source/hi/svx/source/svdraw.po2
-rw-r--r--source/hi/svx/source/table.po2
-rw-r--r--source/hi/svx/source/tbxctrls.po2
-rw-r--r--source/hi/svx/source/toolbars.po2
-rw-r--r--source/hi/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/hi/svx/uiconfig/ui.po204
-rw-r--r--source/hi/sw/source/core/layout.po2
-rw-r--r--source/hi/sw/source/core/undo.po2
-rw-r--r--source/hi/sw/source/core/unocore.po2
-rw-r--r--source/hi/sw/source/ui/app.po2
-rw-r--r--source/hi/sw/source/ui/chrdlg.po2
-rw-r--r--source/hi/sw/source/ui/config.po2
-rw-r--r--source/hi/sw/source/ui/dbui.po2
-rw-r--r--source/hi/sw/source/ui/dialog.po2
-rw-r--r--source/hi/sw/source/ui/dochdl.po2
-rw-r--r--source/hi/sw/source/ui/docvw.po2
-rw-r--r--source/hi/sw/source/ui/envelp.po2
-rw-r--r--source/hi/sw/source/ui/fldui.po2
-rw-r--r--source/hi/sw/source/ui/fmtui.po2
-rw-r--r--source/hi/sw/source/ui/frmdlg.po2
-rw-r--r--source/hi/sw/source/ui/globdoc.po2
-rw-r--r--source/hi/sw/source/ui/index.po2
-rw-r--r--source/hi/sw/source/ui/lingu.po2
-rw-r--r--source/hi/sw/source/ui/misc.po2
-rw-r--r--source/hi/sw/source/ui/ribbar.po2
-rw-r--r--source/hi/sw/source/ui/shells.po2
-rw-r--r--source/hi/sw/source/ui/smartmenu.po2
-rw-r--r--source/hi/sw/source/ui/table.po2
-rw-r--r--source/hi/sw/source/ui/uiview.po2
-rw-r--r--source/hi/sw/source/ui/utlui.po2
-rw-r--r--source/hi/sw/source/ui/web.po2
-rw-r--r--source/hi/sw/source/ui/wrtsh.po2
-rw-r--r--source/hi/sw/uiconfig/sw/ui.po281
-rw-r--r--source/hi/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/hi/swext/mediawiki/help.po2
-rw-r--r--source/hi/swext/mediawiki/src.po2
-rw-r--r--source/hi/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hi/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/hi/sysui/desktop/share.po2
-rw-r--r--source/hi/tubes/uiconfig/ui.po2
-rw-r--r--source/hi/uui/source.po2
-rw-r--r--source/hi/vcl/qa/cppunit/builder.po2
-rw-r--r--source/hi/vcl/source/edit.po2
-rw-r--r--source/hi/vcl/source/src.po2
-rw-r--r--source/hi/vcl/uiconfig/ui.po2
-rw-r--r--source/hi/wizards/source/euro.po2
-rw-r--r--source/hi/wizards/source/formwizard.po2
-rw-r--r--source/hi/wizards/source/importwizard.po2
-rw-r--r--source/hi/wizards/source/template.po2
-rw-r--r--source/hi/xmlsecurity/source/component.po2
-rw-r--r--source/hi/xmlsecurity/source/dialogs.po2
-rw-r--r--source/hr/accessibility/source/helper.po2
-rw-r--r--source/hr/android/sdremote/res/values.po2
-rw-r--r--source/hr/avmedia/source/framework.po2
-rw-r--r--source/hr/avmedia/source/viewer.po2
-rw-r--r--source/hr/basctl/source/basicide.po2
-rw-r--r--source/hr/basctl/source/dlged.po2
-rw-r--r--source/hr/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/hr/basic/source/classes.po2
-rw-r--r--source/hr/basic/source/sbx.po2
-rw-r--r--source/hr/chart2/source/controller/dialogs.po2
-rw-r--r--source/hr/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/connectivity/source/resource.po2
-rw-r--r--source/hr/cui/source/customize.po2
-rw-r--r--source/hr/cui/source/dialogs.po2
-rw-r--r--source/hr/cui/source/options.po2
-rw-r--r--source/hr/cui/source/tabpages.po2
-rw-r--r--source/hr/cui/uiconfig/ui.po2
-rw-r--r--source/hr/dbaccess/source/core/resource.po2
-rw-r--r--source/hr/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/hr/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/hr/dbaccess/source/ui/app.po2
-rw-r--r--source/hr/dbaccess/source/ui/browser.po2
-rw-r--r--source/hr/dbaccess/source/ui/control.po2
-rw-r--r--source/hr/dbaccess/source/ui/dlg.po2
-rw-r--r--source/hr/dbaccess/source/ui/inc.po2
-rw-r--r--source/hr/dbaccess/source/ui/misc.po2
-rw-r--r--source/hr/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/hr/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/hr/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/hr/dbaccess/source/ui/uno.po2
-rw-r--r--source/hr/desktop/source/app.po2
-rw-r--r--source/hr/desktop/source/deployment/gui.po2
-rw-r--r--source/hr/desktop/source/deployment/manager.po2
-rw-r--r--source/hr/desktop/source/deployment/misc.po2
-rw-r--r--source/hr/desktop/source/deployment/registry.po2
-rw-r--r--source/hr/desktop/source/deployment/registry/component.po2
-rw-r--r--source/hr/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/hr/desktop/source/deployment/registry/help.po2
-rw-r--r--source/hr/desktop/source/deployment/registry/package.po2
-rw-r--r--source/hr/desktop/source/deployment/registry/script.po2
-rw-r--r--source/hr/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/hr/desktop/source/deployment/unopkg.po2
-rw-r--r--source/hr/desktop/uiconfig/ui.po2
-rw-r--r--source/hr/dictionaries/af_ZA.po2
-rw-r--r--source/hr/dictionaries/an_ES.po2
-rw-r--r--source/hr/dictionaries/ar.po2
-rw-r--r--source/hr/dictionaries/be_BY.po2
-rw-r--r--source/hr/dictionaries/bg_BG.po2
-rw-r--r--source/hr/dictionaries/bn_BD.po2
-rw-r--r--source/hr/dictionaries/br_FR.po2
-rw-r--r--source/hr/dictionaries/ca.po2
-rw-r--r--source/hr/dictionaries/cs_CZ.po2
-rw-r--r--source/hr/dictionaries/da_DK.po2
-rw-r--r--source/hr/dictionaries/de.po2
-rw-r--r--source/hr/dictionaries/el_GR.po2
-rw-r--r--source/hr/dictionaries/en.po2
-rw-r--r--source/hr/dictionaries/en/dialog.po2
-rw-r--r--source/hr/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hr/dictionaries/es.po2
-rw-r--r--source/hr/dictionaries/et_EE.po2
-rw-r--r--source/hr/dictionaries/fr_FR.po2
-rw-r--r--source/hr/dictionaries/gd_GB.po2
-rw-r--r--source/hr/dictionaries/gl.po2
-rw-r--r--source/hr/dictionaries/gu_IN.po2
-rw-r--r--source/hr/dictionaries/he_IL.po2
-rw-r--r--source/hr/dictionaries/hi_IN.po2
-rw-r--r--source/hr/dictionaries/hr_HR.po2
-rw-r--r--source/hr/dictionaries/hu_HU.po2
-rw-r--r--source/hr/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/hr/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hr/dictionaries/it_IT.po2
-rw-r--r--source/hr/dictionaries/ku_TR.po2
-rw-r--r--source/hr/dictionaries/lt_LT.po2
-rw-r--r--source/hr/dictionaries/lv_LV.po2
-rw-r--r--source/hr/dictionaries/ne_NP.po2
-rw-r--r--source/hr/dictionaries/nl_NL.po2
-rw-r--r--source/hr/dictionaries/no.po2
-rw-r--r--source/hr/dictionaries/oc_FR.po2
-rw-r--r--source/hr/dictionaries/pl_PL.po2
-rw-r--r--source/hr/dictionaries/pt_BR.po2
-rw-r--r--source/hr/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/hr/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hr/dictionaries/pt_PT.po2
-rw-r--r--source/hr/dictionaries/ro.po2
-rw-r--r--source/hr/dictionaries/ru_RU.po2
-rw-r--r--source/hr/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/hr/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hr/dictionaries/si_LK.po2
-rw-r--r--source/hr/dictionaries/sk_SK.po2
-rw-r--r--source/hr/dictionaries/sl_SI.po2
-rw-r--r--source/hr/dictionaries/sr.po2
-rw-r--r--source/hr/dictionaries/sv_SE.po2
-rw-r--r--source/hr/dictionaries/sw_TZ.po2
-rw-r--r--source/hr/dictionaries/te_IN.po2
-rw-r--r--source/hr/dictionaries/th_TH.po2
-rw-r--r--source/hr/dictionaries/uk_UA.po2
-rw-r--r--source/hr/dictionaries/vi.po2
-rw-r--r--source/hr/dictionaries/zu_ZA.po2
-rw-r--r--source/hr/editeng/source/accessibility.po2
-rw-r--r--source/hr/editeng/source/editeng.po2
-rw-r--r--source/hr/editeng/source/items.po2
-rw-r--r--source/hr/editeng/source/misc.po2
-rw-r--r--source/hr/editeng/source/outliner.po2
-rw-r--r--source/hr/extensions/source/abpilot.po2
-rw-r--r--source/hr/extensions/source/bibliography.po2
-rw-r--r--source/hr/extensions/source/dbpilots.po2
-rw-r--r--source/hr/extensions/source/propctrlr.po2
-rw-r--r--source/hr/extensions/source/scanner.po2
-rw-r--r--source/hr/extensions/source/update/check.po2
-rw-r--r--source/hr/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/hr/filter/source/config/fragments/filters.po2
-rw-r--r--source/hr/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/hr/filter/source/config/fragments/types.po2
-rw-r--r--source/hr/filter/source/flash.po2
-rw-r--r--source/hr/filter/source/graphicfilter/eps.po2
-rw-r--r--source/hr/filter/source/pdf.po2
-rw-r--r--source/hr/filter/source/t602.po2
-rw-r--r--source/hr/filter/source/xsltdialog.po2
-rw-r--r--source/hr/filter/uiconfig/ui.po2
-rw-r--r--source/hr/forms/source/resource.po2
-rw-r--r--source/hr/formula/source/core/resource.po38
-rw-r--r--source/hr/formula/source/ui/dlg.po2
-rw-r--r--source/hr/fpicker/source/office.po2
-rw-r--r--source/hr/framework/source/classes.po2
-rw-r--r--source/hr/framework/source/services.po2
-rw-r--r--source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/hr/librelogo/source/pythonpath.po2
-rw-r--r--source/hr/mysqlc/source.po2
-rw-r--r--source/hr/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hr/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/hr/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/hr/nlpsolver/src/locale.po2
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/hr/padmin/source.po2
-rw-r--r--source/hr/readlicense_oo/docs.po2
-rw-r--r--source/hr/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/hr/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hr/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/hr/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/hr/reportbuilder/util.po2
-rw-r--r--source/hr/reportdesign/source/core/resource.po2
-rw-r--r--source/hr/reportdesign/source/ui/dlg.po2
-rw-r--r--source/hr/reportdesign/source/ui/inspection.po2
-rw-r--r--source/hr/reportdesign/source/ui/report.po2
-rw-r--r--source/hr/sc/source/core/src.po2
-rw-r--r--source/hr/sc/source/ui/cctrl.po2
-rw-r--r--source/hr/sc/source/ui/dbgui.po2
-rw-r--r--source/hr/sc/source/ui/docshell.po2
-rw-r--r--source/hr/sc/source/ui/drawfunc.po2
-rw-r--r--source/hr/sc/source/ui/formdlg.po2
-rw-r--r--source/hr/sc/source/ui/miscdlgs.po2
-rw-r--r--source/hr/sc/source/ui/navipi.po2
-rw-r--r--source/hr/sc/source/ui/optdlg.po2
-rw-r--r--source/hr/sc/source/ui/pagedlg.po2
-rw-r--r--source/hr/sc/source/ui/src.po379
-rw-r--r--source/hr/sc/source/ui/styleui.po2
-rw-r--r--source/hr/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/hr/scaddins/source/analysis.po2
-rw-r--r--source/hr/scaddins/source/datefunc.po2
-rw-r--r--source/hr/scaddins/source/pricing.po2
-rw-r--r--source/hr/sccomp/source/solver.po2
-rw-r--r--source/hr/scp2/source/accessories.po2
-rw-r--r--source/hr/scp2/source/activex.po2
-rw-r--r--source/hr/scp2/source/base.po2
-rw-r--r--source/hr/scp2/source/calc.po2
-rw-r--r--source/hr/scp2/source/draw.po2
-rw-r--r--source/hr/scp2/source/extensions.po2
-rw-r--r--source/hr/scp2/source/gnome.po2
-rw-r--r--source/hr/scp2/source/graphicfilter.po2
-rw-r--r--source/hr/scp2/source/impress.po2
-rw-r--r--source/hr/scp2/source/javafilter.po2
-rw-r--r--source/hr/scp2/source/kde.po2
-rw-r--r--source/hr/scp2/source/math.po2
-rw-r--r--source/hr/scp2/source/onlineupdate.po2
-rw-r--r--source/hr/scp2/source/ooo.po2
-rw-r--r--source/hr/scp2/source/python.po18
-rw-r--r--source/hr/scp2/source/quickstart.po2
-rw-r--r--source/hr/scp2/source/sdkoo.po2
-rw-r--r--source/hr/scp2/source/smoketest.po2
-rw-r--r--source/hr/scp2/source/stdlibs.po2
-rw-r--r--source/hr/scp2/source/tde.po2
-rw-r--r--source/hr/scp2/source/winexplorerext.po2
-rw-r--r--source/hr/scp2/source/writer.po2
-rw-r--r--source/hr/scp2/source/xsltfilter.po2
-rw-r--r--source/hr/sd/source/core.po2
-rw-r--r--source/hr/sd/source/filter/html.po2
-rw-r--r--source/hr/sd/source/ui/accessibility.po2
-rw-r--r--source/hr/sd/source/ui/animations.po2
-rw-r--r--source/hr/sd/source/ui/annotations.po2
-rw-r--r--source/hr/sd/source/ui/app.po2
-rw-r--r--source/hr/sd/source/ui/dlg.po2
-rw-r--r--source/hr/sd/source/ui/slideshow.po2
-rw-r--r--source/hr/sd/source/ui/table.po2
-rw-r--r--source/hr/sd/source/ui/view.po2
-rw-r--r--source/hr/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/hr/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/hr/sdext/source/minimizer.po2
-rw-r--r--source/hr/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hr/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/hr/setup_native/source/mac.po2
-rw-r--r--source/hr/sfx2/source/appl.po2
-rw-r--r--source/hr/sfx2/source/bastyp.po2
-rw-r--r--source/hr/sfx2/source/control.po23
-rw-r--r--source/hr/sfx2/source/dialog.po46
-rw-r--r--source/hr/sfx2/source/doc.po126
-rw-r--r--source/hr/sfx2/source/menu.po2
-rw-r--r--source/hr/sfx2/source/view.po2
-rw-r--r--source/hr/sfx2/uiconfig/ui.po2
-rw-r--r--source/hr/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/hr/starmath/source.po2
-rw-r--r--source/hr/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/hr/svl/source/items.po2
-rw-r--r--source/hr/svl/source/misc.po2
-rw-r--r--source/hr/svtools/source/contnr.po2
-rw-r--r--source/hr/svtools/source/control.po2
-rw-r--r--source/hr/svtools/source/dialogs.po2
-rw-r--r--source/hr/svtools/source/java.po2
-rw-r--r--source/hr/svtools/source/misc.po2
-rw-r--r--source/hr/svtools/source/toolpanel.po2
-rw-r--r--source/hr/svtools/uiconfig/ui.po55
-rw-r--r--source/hr/svx/inc.po2
-rw-r--r--source/hr/svx/source/accessibility.po2
-rw-r--r--source/hr/svx/source/core.po2
-rw-r--r--source/hr/svx/source/dialog.po224
-rw-r--r--source/hr/svx/source/engine3d.po2
-rw-r--r--source/hr/svx/source/fmcomp.po2
-rw-r--r--source/hr/svx/source/form.po2
-rw-r--r--source/hr/svx/source/gallery2.po2
-rw-r--r--source/hr/svx/source/items.po2
-rw-r--r--source/hr/svx/source/src.po2
-rw-r--r--source/hr/svx/source/stbctrls.po2
-rw-r--r--source/hr/svx/source/svdraw.po2
-rw-r--r--source/hr/svx/source/table.po2
-rw-r--r--source/hr/svx/source/tbxctrls.po2
-rw-r--r--source/hr/svx/source/toolbars.po2
-rw-r--r--source/hr/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/hr/svx/uiconfig/ui.po204
-rw-r--r--source/hr/sw/source/core/layout.po2
-rw-r--r--source/hr/sw/source/core/undo.po2
-rw-r--r--source/hr/sw/source/core/unocore.po2
-rw-r--r--source/hr/sw/source/ui/app.po2
-rw-r--r--source/hr/sw/source/ui/chrdlg.po2
-rw-r--r--source/hr/sw/source/ui/config.po2
-rw-r--r--source/hr/sw/source/ui/dbui.po2
-rw-r--r--source/hr/sw/source/ui/dialog.po2
-rw-r--r--source/hr/sw/source/ui/dochdl.po2
-rw-r--r--source/hr/sw/source/ui/docvw.po2
-rw-r--r--source/hr/sw/source/ui/envelp.po2
-rw-r--r--source/hr/sw/source/ui/fldui.po2
-rw-r--r--source/hr/sw/source/ui/fmtui.po2
-rw-r--r--source/hr/sw/source/ui/frmdlg.po2
-rw-r--r--source/hr/sw/source/ui/globdoc.po2
-rw-r--r--source/hr/sw/source/ui/index.po2
-rw-r--r--source/hr/sw/source/ui/lingu.po2
-rw-r--r--source/hr/sw/source/ui/misc.po2
-rw-r--r--source/hr/sw/source/ui/ribbar.po2
-rw-r--r--source/hr/sw/source/ui/shells.po2
-rw-r--r--source/hr/sw/source/ui/smartmenu.po2
-rw-r--r--source/hr/sw/source/ui/table.po2
-rw-r--r--source/hr/sw/source/ui/uiview.po2
-rw-r--r--source/hr/sw/source/ui/utlui.po2
-rw-r--r--source/hr/sw/source/ui/web.po2
-rw-r--r--source/hr/sw/source/ui/wrtsh.po2
-rw-r--r--source/hr/sw/uiconfig/sw/ui.po284
-rw-r--r--source/hr/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/hr/swext/mediawiki/help.po2
-rw-r--r--source/hr/swext/mediawiki/src.po2
-rw-r--r--source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/hr/sysui/desktop/share.po2
-rw-r--r--source/hr/tubes/uiconfig/ui.po2
-rw-r--r--source/hr/uui/source.po2
-rw-r--r--source/hr/vcl/qa/cppunit/builder.po2
-rw-r--r--source/hr/vcl/source/edit.po2
-rw-r--r--source/hr/vcl/source/src.po2
-rw-r--r--source/hr/vcl/uiconfig/ui.po2
-rw-r--r--source/hr/wizards/source/euro.po2
-rw-r--r--source/hr/wizards/source/formwizard.po2
-rw-r--r--source/hr/wizards/source/importwizard.po2
-rw-r--r--source/hr/wizards/source/template.po2
-rw-r--r--source/hr/xmlsecurity/source/component.po2
-rw-r--r--source/hr/xmlsecurity/source/dialogs.po2
-rw-r--r--source/hu/accessibility/source/helper.po2
-rw-r--r--source/hu/android/sdremote/res/values.po4
-rw-r--r--source/hu/avmedia/source/framework.po2
-rw-r--r--source/hu/avmedia/source/viewer.po2
-rw-r--r--source/hu/basctl/source/basicide.po2
-rw-r--r--source/hu/basctl/source/dlged.po2
-rw-r--r--source/hu/basctl/uiconfig/basicide/ui.po4
-rw-r--r--source/hu/basic/source/classes.po2
-rw-r--r--source/hu/basic/source/sbx.po2
-rw-r--r--source/hu/chart2/source/controller/dialogs.po2
-rw-r--r--source/hu/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/connectivity/source/resource.po2
-rw-r--r--source/hu/cui/source/customize.po4
-rw-r--r--source/hu/cui/source/dialogs.po4
-rw-r--r--source/hu/cui/source/options.po4
-rw-r--r--source/hu/cui/source/tabpages.po4
-rw-r--r--source/hu/cui/uiconfig/ui.po4
-rw-r--r--source/hu/dbaccess/source/core/resource.po2
-rw-r--r--source/hu/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/hu/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/hu/dbaccess/source/ui/app.po2
-rw-r--r--source/hu/dbaccess/source/ui/browser.po4
-rw-r--r--source/hu/dbaccess/source/ui/control.po2
-rw-r--r--source/hu/dbaccess/source/ui/dlg.po4
-rw-r--r--source/hu/dbaccess/source/ui/inc.po2
-rw-r--r--source/hu/dbaccess/source/ui/misc.po2
-rw-r--r--source/hu/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/hu/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/hu/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/hu/dbaccess/source/ui/uno.po2
-rw-r--r--source/hu/desktop/source/app.po2
-rw-r--r--source/hu/desktop/source/deployment/gui.po2
-rw-r--r--source/hu/desktop/source/deployment/manager.po2
-rw-r--r--source/hu/desktop/source/deployment/misc.po2
-rw-r--r--source/hu/desktop/source/deployment/registry.po2
-rw-r--r--source/hu/desktop/source/deployment/registry/component.po2
-rw-r--r--source/hu/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/hu/desktop/source/deployment/registry/help.po2
-rw-r--r--source/hu/desktop/source/deployment/registry/package.po2
-rw-r--r--source/hu/desktop/source/deployment/registry/script.po2
-rw-r--r--source/hu/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/hu/desktop/source/deployment/unopkg.po2
-rw-r--r--source/hu/desktop/uiconfig/ui.po2
-rw-r--r--source/hu/dictionaries/af_ZA.po2
-rw-r--r--source/hu/dictionaries/an_ES.po2
-rw-r--r--source/hu/dictionaries/ar.po2
-rw-r--r--source/hu/dictionaries/be_BY.po2
-rw-r--r--source/hu/dictionaries/bg_BG.po2
-rw-r--r--source/hu/dictionaries/bn_BD.po2
-rw-r--r--source/hu/dictionaries/br_FR.po2
-rw-r--r--source/hu/dictionaries/ca.po2
-rw-r--r--source/hu/dictionaries/cs_CZ.po2
-rw-r--r--source/hu/dictionaries/da_DK.po2
-rw-r--r--source/hu/dictionaries/de.po2
-rw-r--r--source/hu/dictionaries/el_GR.po2
-rw-r--r--source/hu/dictionaries/en.po2
-rw-r--r--source/hu/dictionaries/en/dialog.po4
-rw-r--r--source/hu/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hu/dictionaries/es.po4
-rw-r--r--source/hu/dictionaries/et_EE.po2
-rw-r--r--source/hu/dictionaries/fr_FR.po2
-rw-r--r--source/hu/dictionaries/gd_GB.po2
-rw-r--r--source/hu/dictionaries/gl.po2
-rw-r--r--source/hu/dictionaries/gu_IN.po2
-rw-r--r--source/hu/dictionaries/he_IL.po2
-rw-r--r--source/hu/dictionaries/hi_IN.po2
-rw-r--r--source/hu/dictionaries/hr_HR.po2
-rw-r--r--source/hu/dictionaries/hu_HU.po2
-rw-r--r--source/hu/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/hu/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hu/dictionaries/it_IT.po2
-rw-r--r--source/hu/dictionaries/ku_TR.po2
-rw-r--r--source/hu/dictionaries/lt_LT.po2
-rw-r--r--source/hu/dictionaries/lv_LV.po2
-rw-r--r--source/hu/dictionaries/ne_NP.po2
-rw-r--r--source/hu/dictionaries/nl_NL.po2
-rw-r--r--source/hu/dictionaries/no.po2
-rw-r--r--source/hu/dictionaries/oc_FR.po2
-rw-r--r--source/hu/dictionaries/pl_PL.po2
-rw-r--r--source/hu/dictionaries/pt_BR.po4
-rw-r--r--source/hu/dictionaries/pt_BR/dialog.po6
-rw-r--r--source/hu/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po6
-rw-r--r--source/hu/dictionaries/pt_PT.po2
-rw-r--r--source/hu/dictionaries/ro.po2
-rw-r--r--source/hu/dictionaries/ru_RU.po2
-rw-r--r--source/hu/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/hu/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hu/dictionaries/si_LK.po2
-rw-r--r--source/hu/dictionaries/sk_SK.po2
-rw-r--r--source/hu/dictionaries/sl_SI.po2
-rw-r--r--source/hu/dictionaries/sr.po2
-rw-r--r--source/hu/dictionaries/sv_SE.po2
-rw-r--r--source/hu/dictionaries/sw_TZ.po2
-rw-r--r--source/hu/dictionaries/te_IN.po2
-rw-r--r--source/hu/dictionaries/th_TH.po2
-rw-r--r--source/hu/dictionaries/uk_UA.po2
-rw-r--r--source/hu/dictionaries/vi.po2
-rw-r--r--source/hu/dictionaries/zu_ZA.po2
-rw-r--r--source/hu/editeng/source/accessibility.po2
-rw-r--r--source/hu/editeng/source/editeng.po2
-rw-r--r--source/hu/editeng/source/items.po2
-rw-r--r--source/hu/editeng/source/misc.po2
-rw-r--r--source/hu/editeng/source/outliner.po2
-rw-r--r--source/hu/extensions/source/abpilot.po2
-rw-r--r--source/hu/extensions/source/bibliography.po2
-rw-r--r--source/hu/extensions/source/dbpilots.po2
-rw-r--r--source/hu/extensions/source/propctrlr.po4
-rw-r--r--source/hu/extensions/source/scanner.po2
-rw-r--r--source/hu/extensions/source/update/check.po2
-rw-r--r--source/hu/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/hu/filter/source/config/fragments/filters.po2
-rw-r--r--source/hu/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/hu/filter/source/config/fragments/types.po2
-rw-r--r--source/hu/filter/source/flash.po2
-rw-r--r--source/hu/filter/source/graphicfilter/eps.po2
-rw-r--r--source/hu/filter/source/pdf.po4
-rw-r--r--source/hu/filter/source/t602.po2
-rw-r--r--source/hu/filter/source/xsltdialog.po4
-rw-r--r--source/hu/filter/uiconfig/ui.po4
-rw-r--r--source/hu/forms/source/resource.po2
-rw-r--r--source/hu/formula/source/core/resource.po42
-rw-r--r--source/hu/formula/source/ui/dlg.po2
-rw-r--r--source/hu/fpicker/source/office.po4
-rw-r--r--source/hu/framework/source/classes.po2
-rw-r--r--source/hu/framework/source/services.po2
-rw-r--r--source/hu/helpcontent2/source/text/swriter/librelogo.po628
-rw-r--r--source/hu/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/hu/librelogo/source/pythonpath.po4
-rw-r--r--source/hu/mysqlc/source.po2
-rw-r--r--source/hu/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/hu/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po4
-rw-r--r--source/hu/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/hu/nlpsolver/src/locale.po2
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office.po13
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po33
-rw-r--r--source/hu/padmin/source.po4
-rw-r--r--source/hu/readlicense_oo/docs.po2
-rw-r--r--source/hu/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/hu/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hu/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/hu/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/hu/reportbuilder/util.po2
-rw-r--r--source/hu/reportdesign/source/core/resource.po2
-rw-r--r--source/hu/reportdesign/source/ui/dlg.po2
-rw-r--r--source/hu/reportdesign/source/ui/inspection.po2
-rw-r--r--source/hu/reportdesign/source/ui/report.po2
-rw-r--r--source/hu/sc/source/core/src.po2
-rw-r--r--source/hu/sc/source/ui/cctrl.po2
-rw-r--r--source/hu/sc/source/ui/dbgui.po4
-rw-r--r--source/hu/sc/source/ui/docshell.po2
-rw-r--r--source/hu/sc/source/ui/drawfunc.po4
-rw-r--r--source/hu/sc/source/ui/formdlg.po2
-rw-r--r--source/hu/sc/source/ui/miscdlgs.po2
-rw-r--r--source/hu/sc/source/ui/navipi.po2
-rw-r--r--source/hu/sc/source/ui/optdlg.po4
-rw-r--r--source/hu/sc/source/ui/pagedlg.po2
-rw-r--r--source/hu/sc/source/ui/src.po393
-rw-r--r--source/hu/sc/source/ui/styleui.po4
-rw-r--r--source/hu/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/hu/scaddins/source/analysis.po2
-rw-r--r--source/hu/scaddins/source/datefunc.po2
-rw-r--r--source/hu/scaddins/source/pricing.po2
-rw-r--r--source/hu/sccomp/source/solver.po2
-rw-r--r--source/hu/scp2/source/accessories.po2
-rw-r--r--source/hu/scp2/source/activex.po2
-rw-r--r--source/hu/scp2/source/base.po2
-rw-r--r--source/hu/scp2/source/calc.po2
-rw-r--r--source/hu/scp2/source/draw.po2
-rw-r--r--source/hu/scp2/source/extensions.po2
-rw-r--r--source/hu/scp2/source/gnome.po2
-rw-r--r--source/hu/scp2/source/graphicfilter.po2
-rw-r--r--source/hu/scp2/source/impress.po2
-rw-r--r--source/hu/scp2/source/javafilter.po2
-rw-r--r--source/hu/scp2/source/kde.po2
-rw-r--r--source/hu/scp2/source/math.po2
-rw-r--r--source/hu/scp2/source/onlineupdate.po2
-rw-r--r--source/hu/scp2/source/ooo.po4
-rw-r--r--source/hu/scp2/source/python.po25
-rw-r--r--source/hu/scp2/source/quickstart.po2
-rw-r--r--source/hu/scp2/source/sdkoo.po2
-rw-r--r--source/hu/scp2/source/smoketest.po2
-rw-r--r--source/hu/scp2/source/stdlibs.po2
-rw-r--r--source/hu/scp2/source/tde.po2
-rw-r--r--source/hu/scp2/source/winexplorerext.po2
-rw-r--r--source/hu/scp2/source/writer.po2
-rw-r--r--source/hu/scp2/source/xsltfilter.po2
-rw-r--r--source/hu/sd/source/core.po2
-rw-r--r--source/hu/sd/source/filter/html.po2
-rw-r--r--source/hu/sd/source/ui/accessibility.po2
-rw-r--r--source/hu/sd/source/ui/animations.po4
-rw-r--r--source/hu/sd/source/ui/annotations.po2
-rw-r--r--source/hu/sd/source/ui/app.po4
-rw-r--r--source/hu/sd/source/ui/dlg.po4
-rw-r--r--source/hu/sd/source/ui/slideshow.po2
-rw-r--r--source/hu/sd/source/ui/table.po4
-rw-r--r--source/hu/sd/source/ui/view.po2
-rw-r--r--source/hu/sd/uiconfig/sdraw/ui.po4
-rw-r--r--source/hu/sd/uiconfig/simpress/ui.po4
-rw-r--r--source/hu/sdext/source/minimizer.po2
-rw-r--r--source/hu/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hu/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/hu/setup_native/source/mac.po2
-rw-r--r--source/hu/sfx2/source/appl.po4
-rw-r--r--source/hu/sfx2/source/bastyp.po2
-rw-r--r--source/hu/sfx2/source/control.po25
-rw-r--r--source/hu/sfx2/source/dialog.po48
-rw-r--r--source/hu/sfx2/source/doc.po128
-rw-r--r--source/hu/sfx2/source/menu.po2
-rw-r--r--source/hu/sfx2/source/view.po4
-rw-r--r--source/hu/sfx2/uiconfig/ui.po4
-rw-r--r--source/hu/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/hu/starmath/source.po2
-rw-r--r--source/hu/starmath/uiconfig/smath/ui.po4
-rw-r--r--source/hu/svl/source/items.po2
-rw-r--r--source/hu/svl/source/misc.po2
-rw-r--r--source/hu/svtools/source/contnr.po4
-rw-r--r--source/hu/svtools/source/control.po2
-rw-r--r--source/hu/svtools/source/dialogs.po2
-rw-r--r--source/hu/svtools/source/java.po2
-rw-r--r--source/hu/svtools/source/misc.po4
-rw-r--r--source/hu/svtools/source/toolpanel.po2
-rw-r--r--source/hu/svtools/uiconfig/ui.po51
-rw-r--r--source/hu/svx/inc.po4
-rw-r--r--source/hu/svx/source/accessibility.po2
-rw-r--r--source/hu/svx/source/core.po2
-rw-r--r--source/hu/svx/source/dialog.po219
-rw-r--r--source/hu/svx/source/engine3d.po2
-rw-r--r--source/hu/svx/source/fmcomp.po2
-rw-r--r--source/hu/svx/source/form.po2
-rw-r--r--source/hu/svx/source/gallery2.po2
-rw-r--r--source/hu/svx/source/items.po2
-rw-r--r--source/hu/svx/source/src.po2
-rw-r--r--source/hu/svx/source/stbctrls.po2
-rw-r--r--source/hu/svx/source/svdraw.po4
-rw-r--r--source/hu/svx/source/table.po2
-rw-r--r--source/hu/svx/source/tbxctrls.po2
-rw-r--r--source/hu/svx/source/toolbars.po2
-rw-r--r--source/hu/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/hu/svx/uiconfig/ui.po205
-rw-r--r--source/hu/sw/source/core/layout.po2
-rw-r--r--source/hu/sw/source/core/undo.po4
-rw-r--r--source/hu/sw/source/core/unocore.po2
-rw-r--r--source/hu/sw/source/ui/app.po4
-rw-r--r--source/hu/sw/source/ui/chrdlg.po4
-rw-r--r--source/hu/sw/source/ui/config.po4
-rw-r--r--source/hu/sw/source/ui/dbui.po2
-rw-r--r--source/hu/sw/source/ui/dialog.po2
-rw-r--r--source/hu/sw/source/ui/dochdl.po2
-rw-r--r--source/hu/sw/source/ui/docvw.po2
-rw-r--r--source/hu/sw/source/ui/envelp.po2
-rw-r--r--source/hu/sw/source/ui/fldui.po2
-rw-r--r--source/hu/sw/source/ui/fmtui.po2
-rw-r--r--source/hu/sw/source/ui/frmdlg.po2
-rw-r--r--source/hu/sw/source/ui/globdoc.po2
-rw-r--r--source/hu/sw/source/ui/index.po4
-rw-r--r--source/hu/sw/source/ui/lingu.po2
-rw-r--r--source/hu/sw/source/ui/misc.po2
-rw-r--r--source/hu/sw/source/ui/ribbar.po2
-rw-r--r--source/hu/sw/source/ui/shells.po2
-rw-r--r--source/hu/sw/source/ui/smartmenu.po2
-rw-r--r--source/hu/sw/source/ui/table.po4
-rw-r--r--source/hu/sw/source/ui/uiview.po2
-rw-r--r--source/hu/sw/source/ui/utlui.po4
-rw-r--r--source/hu/sw/source/ui/web.po2
-rw-r--r--source/hu/sw/source/ui/wrtsh.po2
-rw-r--r--source/hu/sw/uiconfig/sw/ui.po278
-rw-r--r--source/hu/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/hu/swext/mediawiki/help.po4
-rw-r--r--source/hu/swext/mediawiki/src.po2
-rw-r--r--source/hu/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/hu/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/hu/sysui/desktop/share.po2
-rw-r--r--source/hu/tubes/uiconfig/ui.po4
-rw-r--r--source/hu/uui/source.po2
-rw-r--r--source/hu/vcl/qa/cppunit/builder.po4
-rw-r--r--source/hu/vcl/source/edit.po4
-rw-r--r--source/hu/vcl/source/src.po4
-rw-r--r--source/hu/vcl/uiconfig/ui.po4
-rw-r--r--source/hu/wizards/source/euro.po2
-rw-r--r--source/hu/wizards/source/formwizard.po4
-rw-r--r--source/hu/wizards/source/importwizard.po2
-rw-r--r--source/hu/wizards/source/template.po11
-rw-r--r--source/hu/xmlsecurity/source/component.po2
-rw-r--r--source/hu/xmlsecurity/source/dialogs.po2
-rw-r--r--source/id/accessibility/source/helper.po2
-rw-r--r--source/id/android/sdremote/res/values.po42
-rw-r--r--source/id/avmedia/source/framework.po2
-rw-r--r--source/id/avmedia/source/viewer.po2
-rw-r--r--source/id/basctl/source/basicide.po2
-rw-r--r--source/id/basctl/source/dlged.po2
-rw-r--r--source/id/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/id/basic/source/classes.po2
-rw-r--r--source/id/basic/source/sbx.po2
-rw-r--r--source/id/chart2/source/controller/dialogs.po2
-rw-r--r--source/id/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/connectivity/source/resource.po2
-rw-r--r--source/id/cui/source/customize.po2
-rw-r--r--source/id/cui/source/dialogs.po2
-rw-r--r--source/id/cui/source/options.po20
-rw-r--r--source/id/cui/source/tabpages.po17
-rw-r--r--source/id/cui/uiconfig/ui.po2
-rw-r--r--source/id/dbaccess/source/core/resource.po2
-rw-r--r--source/id/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/id/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/id/dbaccess/source/ui/app.po2
-rw-r--r--source/id/dbaccess/source/ui/browser.po2
-rw-r--r--source/id/dbaccess/source/ui/control.po2
-rw-r--r--source/id/dbaccess/source/ui/dlg.po2
-rw-r--r--source/id/dbaccess/source/ui/inc.po2
-rw-r--r--source/id/dbaccess/source/ui/misc.po2
-rw-r--r--source/id/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/id/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/id/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/id/dbaccess/source/ui/uno.po2
-rw-r--r--source/id/desktop/source/app.po2
-rw-r--r--source/id/desktop/source/deployment/gui.po2
-rw-r--r--source/id/desktop/source/deployment/manager.po2
-rw-r--r--source/id/desktop/source/deployment/misc.po2
-rw-r--r--source/id/desktop/source/deployment/registry.po2
-rw-r--r--source/id/desktop/source/deployment/registry/component.po2
-rw-r--r--source/id/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/id/desktop/source/deployment/registry/help.po2
-rw-r--r--source/id/desktop/source/deployment/registry/package.po2
-rw-r--r--source/id/desktop/source/deployment/registry/script.po2
-rw-r--r--source/id/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/id/desktop/source/deployment/unopkg.po2
-rw-r--r--source/id/desktop/uiconfig/ui.po2
-rw-r--r--source/id/dictionaries/af_ZA.po2
-rw-r--r--source/id/dictionaries/an_ES.po2
-rw-r--r--source/id/dictionaries/ar.po2
-rw-r--r--source/id/dictionaries/be_BY.po2
-rw-r--r--source/id/dictionaries/bg_BG.po2
-rw-r--r--source/id/dictionaries/bn_BD.po2
-rw-r--r--source/id/dictionaries/br_FR.po2
-rw-r--r--source/id/dictionaries/ca.po2
-rw-r--r--source/id/dictionaries/cs_CZ.po2
-rw-r--r--source/id/dictionaries/da_DK.po2
-rw-r--r--source/id/dictionaries/de.po2
-rw-r--r--source/id/dictionaries/el_GR.po2
-rw-r--r--source/id/dictionaries/en.po2
-rw-r--r--source/id/dictionaries/en/dialog.po2
-rw-r--r--source/id/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/id/dictionaries/es.po2
-rw-r--r--source/id/dictionaries/et_EE.po2
-rw-r--r--source/id/dictionaries/fr_FR.po2
-rw-r--r--source/id/dictionaries/gd_GB.po2
-rw-r--r--source/id/dictionaries/gl.po2
-rw-r--r--source/id/dictionaries/gu_IN.po2
-rw-r--r--source/id/dictionaries/he_IL.po2
-rw-r--r--source/id/dictionaries/hi_IN.po2
-rw-r--r--source/id/dictionaries/hr_HR.po2
-rw-r--r--source/id/dictionaries/hu_HU.po2
-rw-r--r--source/id/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/id/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/id/dictionaries/it_IT.po2
-rw-r--r--source/id/dictionaries/ku_TR.po2
-rw-r--r--source/id/dictionaries/lt_LT.po2
-rw-r--r--source/id/dictionaries/lv_LV.po2
-rw-r--r--source/id/dictionaries/ne_NP.po2
-rw-r--r--source/id/dictionaries/nl_NL.po2
-rw-r--r--source/id/dictionaries/no.po2
-rw-r--r--source/id/dictionaries/oc_FR.po2
-rw-r--r--source/id/dictionaries/pl_PL.po2
-rw-r--r--source/id/dictionaries/pt_BR.po7
-rw-r--r--source/id/dictionaries/pt_BR/dialog.po82
-rw-r--r--source/id/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po12
-rw-r--r--source/id/dictionaries/pt_PT.po2
-rw-r--r--source/id/dictionaries/ro.po2
-rw-r--r--source/id/dictionaries/ru_RU.po2
-rw-r--r--source/id/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/id/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/id/dictionaries/si_LK.po2
-rw-r--r--source/id/dictionaries/sk_SK.po2
-rw-r--r--source/id/dictionaries/sl_SI.po2
-rw-r--r--source/id/dictionaries/sr.po2
-rw-r--r--source/id/dictionaries/sv_SE.po2
-rw-r--r--source/id/dictionaries/sw_TZ.po2
-rw-r--r--source/id/dictionaries/te_IN.po2
-rw-r--r--source/id/dictionaries/th_TH.po2
-rw-r--r--source/id/dictionaries/uk_UA.po2
-rw-r--r--source/id/dictionaries/vi.po2
-rw-r--r--source/id/dictionaries/zu_ZA.po2
-rw-r--r--source/id/editeng/source/accessibility.po2
-rw-r--r--source/id/editeng/source/editeng.po2
-rw-r--r--source/id/editeng/source/items.po2
-rw-r--r--source/id/editeng/source/misc.po2
-rw-r--r--source/id/editeng/source/outliner.po2
-rw-r--r--source/id/extensions/source/abpilot.po2
-rw-r--r--source/id/extensions/source/bibliography.po2
-rw-r--r--source/id/extensions/source/dbpilots.po2
-rw-r--r--source/id/extensions/source/propctrlr.po2
-rw-r--r--source/id/extensions/source/scanner.po2
-rw-r--r--source/id/extensions/source/update/check.po2
-rw-r--r--source/id/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/id/filter/source/config/fragments/filters.po2
-rw-r--r--source/id/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/id/filter/source/config/fragments/types.po2
-rw-r--r--source/id/filter/source/flash.po2
-rw-r--r--source/id/filter/source/graphicfilter/eps.po2
-rw-r--r--source/id/filter/source/pdf.po2
-rw-r--r--source/id/filter/source/t602.po2
-rw-r--r--source/id/filter/source/xsltdialog.po2
-rw-r--r--source/id/filter/uiconfig/ui.po4
-rw-r--r--source/id/forms/source/resource.po2
-rw-r--r--source/id/formula/source/core/resource.po46
-rw-r--r--source/id/formula/source/ui/dlg.po2
-rw-r--r--source/id/fpicker/source/office.po2
-rw-r--r--source/id/framework/source/classes.po2
-rw-r--r--source/id/framework/source/services.po2
-rw-r--r--source/id/helpcontent2/source/text/sbasic/guide.po11
-rw-r--r--source/id/helpcontent2/source/text/scalc/05.po9
-rw-r--r--source/id/helpcontent2/source/text/schart/01.po9
-rw-r--r--source/id/helpcontent2/source/text/sdraw/04.po8
-rw-r--r--source/id/helpcontent2/source/text/shared.po9
-rw-r--r--source/id/helpcontent2/source/text/simpress.po81
-rw-r--r--source/id/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/id/helpcontent2/source/text/simpress/02.po25
-rw-r--r--source/id/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/id/librelogo/source/pythonpath.po2
-rw-r--r--source/id/mysqlc/source.po2
-rw-r--r--source/id/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/id/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po4
-rw-r--r--source/id/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/id/nlpsolver/src/locale.po2
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/id/padmin/source.po4
-rw-r--r--source/id/readlicense_oo/docs.po2
-rw-r--r--source/id/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/id/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/id/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/id/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/id/reportbuilder/util.po2
-rw-r--r--source/id/reportdesign/source/core/resource.po2
-rw-r--r--source/id/reportdesign/source/ui/dlg.po2
-rw-r--r--source/id/reportdesign/source/ui/inspection.po2
-rw-r--r--source/id/reportdesign/source/ui/report.po2
-rw-r--r--source/id/sc/source/core/src.po2
-rw-r--r--source/id/sc/source/ui/cctrl.po2
-rw-r--r--source/id/sc/source/ui/dbgui.po2
-rw-r--r--source/id/sc/source/ui/docshell.po2
-rw-r--r--source/id/sc/source/ui/drawfunc.po2
-rw-r--r--source/id/sc/source/ui/formdlg.po2
-rw-r--r--source/id/sc/source/ui/miscdlgs.po2
-rw-r--r--source/id/sc/source/ui/navipi.po2
-rw-r--r--source/id/sc/source/ui/optdlg.po2
-rw-r--r--source/id/sc/source/ui/pagedlg.po2
-rw-r--r--source/id/sc/source/ui/src.po383
-rw-r--r--source/id/sc/source/ui/styleui.po2
-rw-r--r--source/id/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/id/scaddins/source/analysis.po2
-rw-r--r--source/id/scaddins/source/datefunc.po2
-rw-r--r--source/id/scaddins/source/pricing.po2
-rw-r--r--source/id/sccomp/source/solver.po2
-rw-r--r--source/id/scp2/source/accessories.po2
-rw-r--r--source/id/scp2/source/activex.po2
-rw-r--r--source/id/scp2/source/base.po2
-rw-r--r--source/id/scp2/source/calc.po2
-rw-r--r--source/id/scp2/source/draw.po2
-rw-r--r--source/id/scp2/source/extensions.po2
-rw-r--r--source/id/scp2/source/gnome.po2
-rw-r--r--source/id/scp2/source/graphicfilter.po2
-rw-r--r--source/id/scp2/source/impress.po2
-rw-r--r--source/id/scp2/source/javafilter.po2
-rw-r--r--source/id/scp2/source/kde.po2
-rw-r--r--source/id/scp2/source/math.po2
-rw-r--r--source/id/scp2/source/onlineupdate.po2
-rw-r--r--source/id/scp2/source/ooo.po4
-rw-r--r--source/id/scp2/source/python.po24
-rw-r--r--source/id/scp2/source/quickstart.po2
-rw-r--r--source/id/scp2/source/sdkoo.po2
-rw-r--r--source/id/scp2/source/smoketest.po2
-rw-r--r--source/id/scp2/source/stdlibs.po2
-rw-r--r--source/id/scp2/source/tde.po2
-rw-r--r--source/id/scp2/source/winexplorerext.po2
-rw-r--r--source/id/scp2/source/writer.po2
-rw-r--r--source/id/scp2/source/xsltfilter.po2
-rw-r--r--source/id/sd/source/core.po2
-rw-r--r--source/id/sd/source/filter/html.po2
-rw-r--r--source/id/sd/source/ui/accessibility.po2
-rw-r--r--source/id/sd/source/ui/animations.po42
-rw-r--r--source/id/sd/source/ui/annotations.po2
-rw-r--r--source/id/sd/source/ui/app.po20
-rw-r--r--source/id/sd/source/ui/dlg.po12
-rw-r--r--source/id/sd/source/ui/slideshow.po2
-rw-r--r--source/id/sd/source/ui/table.po2
-rw-r--r--source/id/sd/source/ui/view.po2
-rw-r--r--source/id/sd/uiconfig/sdraw/ui.po16
-rw-r--r--source/id/sd/uiconfig/simpress/ui.po16
-rw-r--r--source/id/sdext/source/minimizer.po2
-rw-r--r--source/id/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/id/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/id/setup_native/source/mac.po2
-rw-r--r--source/id/sfx2/source/appl.po2
-rw-r--r--source/id/sfx2/source/bastyp.po2
-rw-r--r--source/id/sfx2/source/control.po23
-rw-r--r--source/id/sfx2/source/dialog.po46
-rw-r--r--source/id/sfx2/source/doc.po126
-rw-r--r--source/id/sfx2/source/menu.po2
-rw-r--r--source/id/sfx2/source/view.po2
-rw-r--r--source/id/sfx2/uiconfig/ui.po2
-rw-r--r--source/id/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/id/starmath/source.po2
-rw-r--r--source/id/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/id/svl/source/items.po2
-rw-r--r--source/id/svl/source/misc.po2
-rw-r--r--source/id/svtools/source/contnr.po2
-rw-r--r--source/id/svtools/source/control.po2
-rw-r--r--source/id/svtools/source/dialogs.po2
-rw-r--r--source/id/svtools/source/java.po2
-rw-r--r--source/id/svtools/source/misc.po2
-rw-r--r--source/id/svtools/source/toolpanel.po2
-rw-r--r--source/id/svtools/uiconfig/ui.po53
-rw-r--r--source/id/svx/inc.po2
-rw-r--r--source/id/svx/source/accessibility.po2
-rw-r--r--source/id/svx/source/core.po2
-rw-r--r--source/id/svx/source/dialog.po224
-rw-r--r--source/id/svx/source/engine3d.po2
-rw-r--r--source/id/svx/source/fmcomp.po2
-rw-r--r--source/id/svx/source/form.po2
-rw-r--r--source/id/svx/source/gallery2.po2
-rw-r--r--source/id/svx/source/items.po2
-rw-r--r--source/id/svx/source/src.po2
-rw-r--r--source/id/svx/source/stbctrls.po2
-rw-r--r--source/id/svx/source/svdraw.po2
-rw-r--r--source/id/svx/source/table.po2
-rw-r--r--source/id/svx/source/tbxctrls.po2
-rw-r--r--source/id/svx/source/toolbars.po2
-rw-r--r--source/id/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/id/svx/uiconfig/ui.po204
-rw-r--r--source/id/sw/source/core/layout.po2
-rw-r--r--source/id/sw/source/core/undo.po8
-rw-r--r--source/id/sw/source/core/unocore.po2
-rw-r--r--source/id/sw/source/ui/app.po68
-rw-r--r--source/id/sw/source/ui/chrdlg.po9
-rw-r--r--source/id/sw/source/ui/config.po7
-rw-r--r--source/id/sw/source/ui/dbui.po2
-rw-r--r--source/id/sw/source/ui/dialog.po2
-rw-r--r--source/id/sw/source/ui/dochdl.po2
-rw-r--r--source/id/sw/source/ui/docvw.po2
-rw-r--r--source/id/sw/source/ui/envelp.po2
-rw-r--r--source/id/sw/source/ui/fldui.po2
-rw-r--r--source/id/sw/source/ui/fmtui.po2
-rw-r--r--source/id/sw/source/ui/frmdlg.po2
-rw-r--r--source/id/sw/source/ui/globdoc.po2
-rw-r--r--source/id/sw/source/ui/index.po8
-rw-r--r--source/id/sw/source/ui/lingu.po2
-rw-r--r--source/id/sw/source/ui/misc.po2
-rw-r--r--source/id/sw/source/ui/ribbar.po2
-rw-r--r--source/id/sw/source/ui/shells.po2
-rw-r--r--source/id/sw/source/ui/smartmenu.po2
-rw-r--r--source/id/sw/source/ui/table.po9
-rw-r--r--source/id/sw/source/ui/uiview.po2
-rw-r--r--source/id/sw/source/ui/utlui.po63
-rw-r--r--source/id/sw/source/ui/web.po2
-rw-r--r--source/id/sw/source/ui/wrtsh.po2
-rw-r--r--source/id/sw/uiconfig/sw/ui.po280
-rw-r--r--source/id/sw/uiconfig/swriter/ui.po194
-rw-r--r--source/id/swext/mediawiki/help.po2
-rw-r--r--source/id/swext/mediawiki/src.po2
-rw-r--r--source/id/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/id/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/id/sysui/desktop/share.po2
-rw-r--r--source/id/tubes/uiconfig/ui.po4
-rw-r--r--source/id/uui/source.po2
-rw-r--r--source/id/vcl/qa/cppunit/builder.po2
-rw-r--r--source/id/vcl/source/edit.po2
-rw-r--r--source/id/vcl/source/src.po2
-rw-r--r--source/id/vcl/uiconfig/ui.po2
-rw-r--r--source/id/wizards/source/euro.po2
-rw-r--r--source/id/wizards/source/formwizard.po2
-rw-r--r--source/id/wizards/source/importwizard.po2
-rw-r--r--source/id/wizards/source/template.po2
-rw-r--r--source/id/xmlsecurity/source/component.po2
-rw-r--r--source/id/xmlsecurity/source/dialogs.po2
-rw-r--r--source/is/accessibility/source/helper.po2
-rw-r--r--source/is/android/sdremote/res/values.po111
-rw-r--r--source/is/avmedia/source/framework.po2
-rw-r--r--source/is/avmedia/source/viewer.po2
-rw-r--r--source/is/basctl/source/basicide.po2
-rw-r--r--source/is/basctl/source/dlged.po2
-rw-r--r--source/is/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/is/basic/source/classes.po2
-rw-r--r--source/is/basic/source/sbx.po2
-rw-r--r--source/is/chart2/source/controller/dialogs.po2
-rw-r--r--source/is/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/connectivity/source/resource.po2
-rw-r--r--source/is/cui/source/customize.po2
-rw-r--r--source/is/cui/source/dialogs.po2
-rw-r--r--source/is/cui/source/options.po2
-rw-r--r--source/is/cui/source/tabpages.po2
-rw-r--r--source/is/cui/uiconfig/ui.po2
-rw-r--r--source/is/dbaccess/source/core/resource.po2
-rw-r--r--source/is/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/is/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/is/dbaccess/source/ui/app.po2
-rw-r--r--source/is/dbaccess/source/ui/browser.po2
-rw-r--r--source/is/dbaccess/source/ui/control.po2
-rw-r--r--source/is/dbaccess/source/ui/dlg.po7
-rw-r--r--source/is/dbaccess/source/ui/inc.po2
-rw-r--r--source/is/dbaccess/source/ui/misc.po2
-rw-r--r--source/is/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/is/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/is/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/is/dbaccess/source/ui/uno.po2
-rw-r--r--source/is/desktop/source/app.po2
-rw-r--r--source/is/desktop/source/deployment/gui.po2
-rw-r--r--source/is/desktop/source/deployment/manager.po2
-rw-r--r--source/is/desktop/source/deployment/misc.po2
-rw-r--r--source/is/desktop/source/deployment/registry.po2
-rw-r--r--source/is/desktop/source/deployment/registry/component.po2
-rw-r--r--source/is/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/is/desktop/source/deployment/registry/help.po2
-rw-r--r--source/is/desktop/source/deployment/registry/package.po2
-rw-r--r--source/is/desktop/source/deployment/registry/script.po2
-rw-r--r--source/is/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/is/desktop/source/deployment/unopkg.po2
-rw-r--r--source/is/desktop/uiconfig/ui.po2
-rw-r--r--source/is/dictionaries/af_ZA.po2
-rw-r--r--source/is/dictionaries/an_ES.po2
-rw-r--r--source/is/dictionaries/ar.po2
-rw-r--r--source/is/dictionaries/be_BY.po2
-rw-r--r--source/is/dictionaries/bg_BG.po2
-rw-r--r--source/is/dictionaries/bn_BD.po2
-rw-r--r--source/is/dictionaries/br_FR.po2
-rw-r--r--source/is/dictionaries/ca.po2
-rw-r--r--source/is/dictionaries/cs_CZ.po2
-rw-r--r--source/is/dictionaries/da_DK.po2
-rw-r--r--source/is/dictionaries/de.po9
-rw-r--r--source/is/dictionaries/el_GR.po2
-rw-r--r--source/is/dictionaries/en.po2
-rw-r--r--source/is/dictionaries/en/dialog.po10
-rw-r--r--source/is/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/is/dictionaries/es.po2
-rw-r--r--source/is/dictionaries/et_EE.po2
-rw-r--r--source/is/dictionaries/fr_FR.po2
-rw-r--r--source/is/dictionaries/gd_GB.po2
-rw-r--r--source/is/dictionaries/gl.po2
-rw-r--r--source/is/dictionaries/gu_IN.po2
-rw-r--r--source/is/dictionaries/he_IL.po2
-rw-r--r--source/is/dictionaries/hi_IN.po2
-rw-r--r--source/is/dictionaries/hr_HR.po2
-rw-r--r--source/is/dictionaries/hu_HU.po2
-rw-r--r--source/is/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/is/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/is/dictionaries/it_IT.po2
-rw-r--r--source/is/dictionaries/ku_TR.po2
-rw-r--r--source/is/dictionaries/lt_LT.po2
-rw-r--r--source/is/dictionaries/lv_LV.po2
-rw-r--r--source/is/dictionaries/ne_NP.po2
-rw-r--r--source/is/dictionaries/nl_NL.po2
-rw-r--r--source/is/dictionaries/no.po2
-rw-r--r--source/is/dictionaries/oc_FR.po2
-rw-r--r--source/is/dictionaries/pl_PL.po2
-rw-r--r--source/is/dictionaries/pt_BR.po2
-rw-r--r--source/is/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/is/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/is/dictionaries/pt_PT.po2
-rw-r--r--source/is/dictionaries/ro.po2
-rw-r--r--source/is/dictionaries/ru_RU.po2
-rw-r--r--source/is/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/is/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/is/dictionaries/si_LK.po2
-rw-r--r--source/is/dictionaries/sk_SK.po2
-rw-r--r--source/is/dictionaries/sl_SI.po2
-rw-r--r--source/is/dictionaries/sr.po2
-rw-r--r--source/is/dictionaries/sv_SE.po2
-rw-r--r--source/is/dictionaries/sw_TZ.po2
-rw-r--r--source/is/dictionaries/te_IN.po2
-rw-r--r--source/is/dictionaries/th_TH.po2
-rw-r--r--source/is/dictionaries/uk_UA.po2
-rw-r--r--source/is/dictionaries/vi.po2
-rw-r--r--source/is/dictionaries/zu_ZA.po2
-rw-r--r--source/is/editeng/source/accessibility.po2
-rw-r--r--source/is/editeng/source/editeng.po2
-rw-r--r--source/is/editeng/source/items.po2
-rw-r--r--source/is/editeng/source/misc.po2
-rw-r--r--source/is/editeng/source/outliner.po2
-rw-r--r--source/is/extensions/source/abpilot.po2
-rw-r--r--source/is/extensions/source/bibliography.po2
-rw-r--r--source/is/extensions/source/dbpilots.po2
-rw-r--r--source/is/extensions/source/propctrlr.po13
-rw-r--r--source/is/extensions/source/scanner.po2
-rw-r--r--source/is/extensions/source/update/check.po2
-rw-r--r--source/is/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/is/filter/source/config/fragments/filters.po2
-rw-r--r--source/is/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/is/filter/source/config/fragments/types.po2
-rw-r--r--source/is/filter/source/flash.po2
-rw-r--r--source/is/filter/source/graphicfilter/eps.po2
-rw-r--r--source/is/filter/source/pdf.po17
-rw-r--r--source/is/filter/source/t602.po2
-rw-r--r--source/is/filter/source/xsltdialog.po9
-rw-r--r--source/is/filter/uiconfig/ui.po36
-rw-r--r--source/is/forms/source/resource.po2
-rw-r--r--source/is/formula/source/core/resource.po38
-rw-r--r--source/is/formula/source/ui/dlg.po2
-rw-r--r--source/is/fpicker/source/office.po2
-rw-r--r--source/is/framework/source/classes.po2
-rw-r--r--source/is/framework/source/services.po2
-rw-r--r--source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/is/librelogo/source/pythonpath.po2
-rw-r--r--source/is/mysqlc/source.po2
-rw-r--r--source/is/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/is/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/is/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/is/nlpsolver/src/locale.po2
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/is/padmin/source.po17
-rw-r--r--source/is/readlicense_oo/docs.po2
-rw-r--r--source/is/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/is/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/is/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/is/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/is/reportbuilder/util.po2
-rw-r--r--source/is/reportdesign/source/core/resource.po2
-rw-r--r--source/is/reportdesign/source/ui/dlg.po2
-rw-r--r--source/is/reportdesign/source/ui/inspection.po2
-rw-r--r--source/is/reportdesign/source/ui/report.po2
-rw-r--r--source/is/sc/source/core/src.po2
-rw-r--r--source/is/sc/source/ui/cctrl.po2
-rw-r--r--source/is/sc/source/ui/dbgui.po15
-rw-r--r--source/is/sc/source/ui/docshell.po2
-rw-r--r--source/is/sc/source/ui/drawfunc.po7
-rw-r--r--source/is/sc/source/ui/formdlg.po2
-rw-r--r--source/is/sc/source/ui/miscdlgs.po2
-rw-r--r--source/is/sc/source/ui/navipi.po2
-rw-r--r--source/is/sc/source/ui/optdlg.po2
-rw-r--r--source/is/sc/source/ui/pagedlg.po2
-rw-r--r--source/is/sc/source/ui/src.po450
-rw-r--r--source/is/sc/source/ui/styleui.po2
-rw-r--r--source/is/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/is/scaddins/source/analysis.po2
-rw-r--r--source/is/scaddins/source/datefunc.po2
-rw-r--r--source/is/scaddins/source/pricing.po2
-rw-r--r--source/is/sccomp/source/solver.po2
-rw-r--r--source/is/scp2/source/accessories.po2
-rw-r--r--source/is/scp2/source/activex.po2
-rw-r--r--source/is/scp2/source/base.po2
-rw-r--r--source/is/scp2/source/calc.po2
-rw-r--r--source/is/scp2/source/draw.po2
-rw-r--r--source/is/scp2/source/extensions.po2
-rw-r--r--source/is/scp2/source/gnome.po2
-rw-r--r--source/is/scp2/source/graphicfilter.po2
-rw-r--r--source/is/scp2/source/impress.po2
-rw-r--r--source/is/scp2/source/javafilter.po2
-rw-r--r--source/is/scp2/source/kde.po2
-rw-r--r--source/is/scp2/source/math.po2
-rw-r--r--source/is/scp2/source/onlineupdate.po2
-rw-r--r--source/is/scp2/source/ooo.po2
-rw-r--r--source/is/scp2/source/python.po18
-rw-r--r--source/is/scp2/source/quickstart.po2
-rw-r--r--source/is/scp2/source/sdkoo.po2
-rw-r--r--source/is/scp2/source/smoketest.po2
-rw-r--r--source/is/scp2/source/stdlibs.po2
-rw-r--r--source/is/scp2/source/tde.po2
-rw-r--r--source/is/scp2/source/winexplorerext.po2
-rw-r--r--source/is/scp2/source/writer.po2
-rw-r--r--source/is/scp2/source/xsltfilter.po2
-rw-r--r--source/is/sd/source/core.po2
-rw-r--r--source/is/sd/source/filter/html.po2
-rw-r--r--source/is/sd/source/ui/accessibility.po2
-rw-r--r--source/is/sd/source/ui/animations.po40
-rw-r--r--source/is/sd/source/ui/annotations.po2
-rw-r--r--source/is/sd/source/ui/app.po16
-rw-r--r--source/is/sd/source/ui/dlg.po20
-rw-r--r--source/is/sd/source/ui/slideshow.po2
-rw-r--r--source/is/sd/source/ui/table.po23
-rw-r--r--source/is/sd/source/ui/view.po2
-rw-r--r--source/is/sd/uiconfig/sdraw/ui.po16
-rw-r--r--source/is/sd/uiconfig/simpress/ui.po16
-rw-r--r--source/is/sdext/source/minimizer.po2
-rw-r--r--source/is/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/is/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/is/setup_native/source/mac.po2
-rw-r--r--source/is/sfx2/source/appl.po2
-rw-r--r--source/is/sfx2/source/bastyp.po2
-rw-r--r--source/is/sfx2/source/control.po23
-rw-r--r--source/is/sfx2/source/dialog.po46
-rw-r--r--source/is/sfx2/source/doc.po126
-rw-r--r--source/is/sfx2/source/menu.po2
-rw-r--r--source/is/sfx2/source/view.po2
-rw-r--r--source/is/sfx2/uiconfig/ui.po2
-rw-r--r--source/is/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/is/starmath/source.po2
-rw-r--r--source/is/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/is/svl/source/items.po2
-rw-r--r--source/is/svl/source/misc.po2
-rw-r--r--source/is/svtools/source/contnr.po2
-rw-r--r--source/is/svtools/source/control.po2
-rw-r--r--source/is/svtools/source/dialogs.po2
-rw-r--r--source/is/svtools/source/java.po2
-rw-r--r--source/is/svtools/source/misc.po2
-rw-r--r--source/is/svtools/source/toolpanel.po2
-rw-r--r--source/is/svtools/uiconfig/ui.po53
-rw-r--r--source/is/svx/inc.po2
-rw-r--r--source/is/svx/source/accessibility.po2
-rw-r--r--source/is/svx/source/core.po2
-rw-r--r--source/is/svx/source/dialog.po225
-rw-r--r--source/is/svx/source/engine3d.po2
-rw-r--r--source/is/svx/source/fmcomp.po2
-rw-r--r--source/is/svx/source/form.po2
-rw-r--r--source/is/svx/source/gallery2.po2
-rw-r--r--source/is/svx/source/items.po2
-rw-r--r--source/is/svx/source/src.po2
-rw-r--r--source/is/svx/source/stbctrls.po7
-rw-r--r--source/is/svx/source/svdraw.po2
-rw-r--r--source/is/svx/source/table.po2
-rw-r--r--source/is/svx/source/tbxctrls.po2
-rw-r--r--source/is/svx/source/toolbars.po2
-rw-r--r--source/is/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/is/svx/uiconfig/ui.po204
-rw-r--r--source/is/sw/source/core/layout.po2
-rw-r--r--source/is/sw/source/core/undo.po2
-rw-r--r--source/is/sw/source/core/unocore.po2
-rw-r--r--source/is/sw/source/ui/app.po2
-rw-r--r--source/is/sw/source/ui/chrdlg.po2
-rw-r--r--source/is/sw/source/ui/config.po2
-rw-r--r--source/is/sw/source/ui/dbui.po2
-rw-r--r--source/is/sw/source/ui/dialog.po2
-rw-r--r--source/is/sw/source/ui/dochdl.po2
-rw-r--r--source/is/sw/source/ui/docvw.po2
-rw-r--r--source/is/sw/source/ui/envelp.po2
-rw-r--r--source/is/sw/source/ui/fldui.po2
-rw-r--r--source/is/sw/source/ui/fmtui.po2
-rw-r--r--source/is/sw/source/ui/frmdlg.po2
-rw-r--r--source/is/sw/source/ui/globdoc.po2
-rw-r--r--source/is/sw/source/ui/index.po2
-rw-r--r--source/is/sw/source/ui/lingu.po2
-rw-r--r--source/is/sw/source/ui/misc.po2
-rw-r--r--source/is/sw/source/ui/ribbar.po2
-rw-r--r--source/is/sw/source/ui/shells.po2
-rw-r--r--source/is/sw/source/ui/smartmenu.po2
-rw-r--r--source/is/sw/source/ui/table.po2
-rw-r--r--source/is/sw/source/ui/uiview.po2
-rw-r--r--source/is/sw/source/ui/utlui.po2
-rw-r--r--source/is/sw/source/ui/web.po2
-rw-r--r--source/is/sw/source/ui/wrtsh.po2
-rw-r--r--source/is/sw/uiconfig/sw/ui.po282
-rw-r--r--source/is/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/is/swext/mediawiki/help.po2
-rw-r--r--source/is/swext/mediawiki/src.po2
-rw-r--r--source/is/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/is/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/is/sysui/desktop/share.po2
-rw-r--r--source/is/tubes/uiconfig/ui.po2
-rw-r--r--source/is/uui/source.po2
-rw-r--r--source/is/vcl/qa/cppunit/builder.po2
-rw-r--r--source/is/vcl/source/edit.po2
-rw-r--r--source/is/vcl/source/src.po2
-rw-r--r--source/is/vcl/uiconfig/ui.po2
-rw-r--r--source/is/wizards/source/euro.po2
-rw-r--r--source/is/wizards/source/formwizard.po21
-rw-r--r--source/is/wizards/source/importwizard.po2
-rw-r--r--source/is/wizards/source/template.po2
-rw-r--r--source/is/xmlsecurity/source/component.po2
-rw-r--r--source/is/xmlsecurity/source/dialogs.po2
-rw-r--r--source/it/accessibility/source/helper.po2
-rw-r--r--source/it/android/sdremote/res/values.po37
-rw-r--r--source/it/avmedia/source/framework.po2
-rw-r--r--source/it/avmedia/source/viewer.po2
-rw-r--r--source/it/basctl/source/basicide.po2
-rw-r--r--source/it/basctl/source/dlged.po2
-rw-r--r--source/it/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/it/basic/source/classes.po2
-rw-r--r--source/it/basic/source/sbx.po2
-rw-r--r--source/it/browser.po321
-rw-r--r--source/it/chart2/source/controller/dialogs.po2
-rw-r--r--source/it/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/connectivity/source/resource.po2
-rw-r--r--source/it/cui/source/customize.po2
-rw-r--r--source/it/cui/source/dialogs.po8
-rw-r--r--source/it/cui/source/options.po16
-rw-r--r--source/it/cui/source/tabpages.po6
-rw-r--r--source/it/cui/uiconfig/ui.po31
-rw-r--r--source/it/dbaccess/source/core/resource.po2
-rw-r--r--source/it/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/it/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/it/dbaccess/source/ui/app.po2
-rw-r--r--source/it/dbaccess/source/ui/browser.po8
-rw-r--r--source/it/dbaccess/source/ui/control.po2
-rw-r--r--source/it/dbaccess/source/ui/dlg.po10
-rw-r--r--source/it/dbaccess/source/ui/inc.po2
-rw-r--r--source/it/dbaccess/source/ui/misc.po2
-rw-r--r--source/it/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/it/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/it/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/it/dbaccess/source/ui/uno.po2
-rw-r--r--source/it/desktop/source/app.po2
-rw-r--r--source/it/desktop/source/deployment/gui.po2
-rw-r--r--source/it/desktop/source/deployment/manager.po2
-rw-r--r--source/it/desktop/source/deployment/misc.po2
-rw-r--r--source/it/desktop/source/deployment/registry.po2
-rw-r--r--source/it/desktop/source/deployment/registry/component.po2
-rw-r--r--source/it/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/it/desktop/source/deployment/registry/help.po2
-rw-r--r--source/it/desktop/source/deployment/registry/package.po2
-rw-r--r--source/it/desktop/source/deployment/registry/script.po2
-rw-r--r--source/it/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/it/desktop/source/deployment/unopkg.po2
-rw-r--r--source/it/desktop/uiconfig/ui.po2
-rw-r--r--source/it/dictionaries/af_ZA.po2
-rw-r--r--source/it/dictionaries/an_ES.po2
-rw-r--r--source/it/dictionaries/ar.po2
-rw-r--r--source/it/dictionaries/be_BY.po2
-rw-r--r--source/it/dictionaries/bg_BG.po2
-rw-r--r--source/it/dictionaries/bn_BD.po2
-rw-r--r--source/it/dictionaries/br_FR.po2
-rw-r--r--source/it/dictionaries/ca.po2
-rw-r--r--source/it/dictionaries/cs_CZ.po2
-rw-r--r--source/it/dictionaries/da_DK.po2
-rw-r--r--source/it/dictionaries/de.po2
-rw-r--r--source/it/dictionaries/el_GR.po2
-rw-r--r--source/it/dictionaries/en.po2
-rw-r--r--source/it/dictionaries/en/dialog.po2
-rw-r--r--source/it/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/it/dictionaries/es.po2
-rw-r--r--source/it/dictionaries/et_EE.po2
-rw-r--r--source/it/dictionaries/fr_FR.po2
-rw-r--r--source/it/dictionaries/gd_GB.po2
-rw-r--r--source/it/dictionaries/gl.po2
-rw-r--r--source/it/dictionaries/gu_IN.po2
-rw-r--r--source/it/dictionaries/he_IL.po2
-rw-r--r--source/it/dictionaries/hi_IN.po2
-rw-r--r--source/it/dictionaries/hr_HR.po2
-rw-r--r--source/it/dictionaries/hu_HU.po2
-rw-r--r--source/it/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/it/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/it/dictionaries/it_IT.po2
-rw-r--r--source/it/dictionaries/ku_TR.po2
-rw-r--r--source/it/dictionaries/lt_LT.po2
-rw-r--r--source/it/dictionaries/lv_LV.po2
-rw-r--r--source/it/dictionaries/ne_NP.po2
-rw-r--r--source/it/dictionaries/nl_NL.po2
-rw-r--r--source/it/dictionaries/no.po2
-rw-r--r--source/it/dictionaries/oc_FR.po2
-rw-r--r--source/it/dictionaries/pl_PL.po2
-rw-r--r--source/it/dictionaries/pt_BR.po6
-rw-r--r--source/it/dictionaries/pt_BR/dialog.po68
-rw-r--r--source/it/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/it/dictionaries/pt_PT.po2
-rw-r--r--source/it/dictionaries/ro.po2
-rw-r--r--source/it/dictionaries/ru_RU.po2
-rw-r--r--source/it/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/it/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/it/dictionaries/si_LK.po2
-rw-r--r--source/it/dictionaries/sk_SK.po2
-rw-r--r--source/it/dictionaries/sl_SI.po2
-rw-r--r--source/it/dictionaries/sr.po2
-rw-r--r--source/it/dictionaries/sv_SE.po2
-rw-r--r--source/it/dictionaries/sw_TZ.po2
-rw-r--r--source/it/dictionaries/te_IN.po2
-rw-r--r--source/it/dictionaries/th_TH.po2
-rw-r--r--source/it/dictionaries/uk_UA.po2
-rw-r--r--source/it/dictionaries/vi.po2
-rw-r--r--source/it/dictionaries/zu_ZA.po2
-rw-r--r--source/it/editeng/source/accessibility.po2
-rw-r--r--source/it/editeng/source/editeng.po2
-rw-r--r--source/it/editeng/source/items.po2
-rw-r--r--source/it/editeng/source/misc.po2
-rw-r--r--source/it/editeng/source/outliner.po2
-rw-r--r--source/it/extensions/source/abpilot.po2
-rw-r--r--source/it/extensions/source/bibliography.po2
-rw-r--r--source/it/extensions/source/dbpilots.po2
-rw-r--r--source/it/extensions/source/propctrlr.po2
-rw-r--r--source/it/extensions/source/scanner.po2
-rw-r--r--source/it/extensions/source/update/check.po2
-rw-r--r--source/it/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/it/filter/source/config/fragments/filters.po2
-rw-r--r--source/it/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/it/filter/source/config/fragments/types.po2
-rw-r--r--source/it/filter/source/flash.po2
-rw-r--r--source/it/filter/source/graphicfilter/eps.po2
-rw-r--r--source/it/filter/source/pdf.po2
-rw-r--r--source/it/filter/source/t602.po2
-rw-r--r--source/it/filter/source/xsltdialog.po2
-rw-r--r--source/it/filter/uiconfig/ui.po10
-rw-r--r--source/it/forms/source/resource.po2
-rw-r--r--source/it/formula/source/core/resource.po45
-rw-r--r--source/it/formula/source/ui/dlg.po2
-rw-r--r--source/it/fpicker/source/office.po2
-rw-r--r--source/it/framework/source/classes.po2
-rw-r--r--source/it/framework/source/services.po2
-rw-r--r--source/it/helpcontent2/source/auxiliary.po190
-rw-r--r--source/it/helpcontent2/source/text/sbasic/guide.po14
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po581
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/01.po24
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/it/helpcontent2/source/text/scalc/05.po14
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po5
-rw-r--r--source/it/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/it/helpcontent2/source/text/sdraw/04.po7
-rw-r--r--source/it/helpcontent2/source/text/shared.po6
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po7
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po121
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/explorer/database.po13
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po13
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/it/helpcontent2/source/text/simpress.po65
-rw-r--r--source/it/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po15
-rw-r--r--source/it/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po9
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po433
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/it/helpcontent2/source/text/swriter/librelogo.po261
-rw-r--r--source/it/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/it/librelogo/source/pythonpath.po111
-rw-r--r--source/it/mysqlc/source.po2
-rw-r--r--source/it/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/it/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/it/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/it/nlpsolver/src/locale.po2
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office.po42
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po53
-rw-r--r--source/it/padmin/source.po4
-rw-r--r--source/it/readlicense_oo/docs.po2
-rw-r--r--source/it/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/it/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/it/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/it/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/it/reportbuilder/util.po2
-rw-r--r--source/it/reportdesign/source/core/resource.po2
-rw-r--r--source/it/reportdesign/source/ui/dlg.po2
-rw-r--r--source/it/reportdesign/source/ui/inspection.po2
-rw-r--r--source/it/reportdesign/source/ui/report.po2
-rw-r--r--source/it/sc/source/core/src.po2
-rw-r--r--source/it/sc/source/ui/cctrl.po2
-rw-r--r--source/it/sc/source/ui/dbgui.po2
-rw-r--r--source/it/sc/source/ui/docshell.po2
-rw-r--r--source/it/sc/source/ui/drawfunc.po2
-rw-r--r--source/it/sc/source/ui/formdlg.po2
-rw-r--r--source/it/sc/source/ui/miscdlgs.po2
-rw-r--r--source/it/sc/source/ui/navipi.po2
-rw-r--r--source/it/sc/source/ui/optdlg.po7
-rw-r--r--source/it/sc/source/ui/pagedlg.po2
-rw-r--r--source/it/sc/source/ui/src.po467
-rw-r--r--source/it/sc/source/ui/styleui.po14
-rw-r--r--source/it/sc/uiconfig/scalc/ui.po43
-rw-r--r--source/it/scaddins/source/analysis.po2
-rw-r--r--source/it/scaddins/source/datefunc.po2
-rw-r--r--source/it/scaddins/source/pricing.po64
-rw-r--r--source/it/sccomp/source/solver.po2
-rw-r--r--source/it/scp2/source/accessories.po2
-rw-r--r--source/it/scp2/source/activex.po2
-rw-r--r--source/it/scp2/source/base.po2
-rw-r--r--source/it/scp2/source/calc.po2
-rw-r--r--source/it/scp2/source/draw.po2
-rw-r--r--source/it/scp2/source/extensions.po2
-rw-r--r--source/it/scp2/source/gnome.po2
-rw-r--r--source/it/scp2/source/graphicfilter.po2
-rw-r--r--source/it/scp2/source/impress.po2
-rw-r--r--source/it/scp2/source/javafilter.po2
-rw-r--r--source/it/scp2/source/kde.po2
-rw-r--r--source/it/scp2/source/math.po2
-rw-r--r--source/it/scp2/source/onlineupdate.po2
-rw-r--r--source/it/scp2/source/ooo.po22
-rw-r--r--source/it/scp2/source/python.po24
-rw-r--r--source/it/scp2/source/quickstart.po2
-rw-r--r--source/it/scp2/source/sdkoo.po2
-rw-r--r--source/it/scp2/source/smoketest.po2
-rw-r--r--source/it/scp2/source/stdlibs.po2
-rw-r--r--source/it/scp2/source/tde.po2
-rw-r--r--source/it/scp2/source/winexplorerext.po2
-rw-r--r--source/it/scp2/source/writer.po2
-rw-r--r--source/it/scp2/source/xsltfilter.po2
-rw-r--r--source/it/sd/source/core.po2
-rw-r--r--source/it/sd/source/filter/html.po2
-rw-r--r--source/it/sd/source/ui/accessibility.po2
-rw-r--r--source/it/sd/source/ui/animations.po2
-rw-r--r--source/it/sd/source/ui/annotations.po2
-rw-r--r--source/it/sd/source/ui/app.po14
-rw-r--r--source/it/sd/source/ui/dlg.po2
-rw-r--r--source/it/sd/source/ui/slideshow.po2
-rw-r--r--source/it/sd/source/ui/table.po16
-rw-r--r--source/it/sd/source/ui/view.po2
-rw-r--r--source/it/sd/uiconfig/sdraw/ui.po13
-rw-r--r--source/it/sd/uiconfig/simpress/ui.po13
-rw-r--r--source/it/sdext/source/minimizer.po2
-rw-r--r--source/it/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/it/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/it/setup_native/source/mac.po2
-rw-r--r--source/it/sfx2/source/appl.po8
-rw-r--r--source/it/sfx2/source/bastyp.po2
-rw-r--r--source/it/sfx2/source/control.po24
-rw-r--r--source/it/sfx2/source/dialog.po48
-rw-r--r--source/it/sfx2/source/doc.po146
-rw-r--r--source/it/sfx2/source/menu.po2
-rw-r--r--source/it/sfx2/source/view.po36
-rw-r--r--source/it/sfx2/uiconfig/ui.po14
-rw-r--r--source/it/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/it/starmath/source.po2
-rw-r--r--source/it/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/it/svl/source/items.po2
-rw-r--r--source/it/svl/source/misc.po2
-rw-r--r--source/it/svtools/source/contnr.po2
-rw-r--r--source/it/svtools/source/control.po2
-rw-r--r--source/it/svtools/source/dialogs.po2
-rw-r--r--source/it/svtools/source/java.po2
-rw-r--r--source/it/svtools/source/misc.po8
-rw-r--r--source/it/svtools/source/toolpanel.po2
-rw-r--r--source/it/svtools/uiconfig/ui.po53
-rw-r--r--source/it/svx/inc.po16
-rw-r--r--source/it/svx/source/accessibility.po2
-rw-r--r--source/it/svx/source/core.po2
-rw-r--r--source/it/svx/source/dialog.po299
-rw-r--r--source/it/svx/source/engine3d.po2
-rw-r--r--source/it/svx/source/fmcomp.po2
-rw-r--r--source/it/svx/source/form.po2
-rw-r--r--source/it/svx/source/gallery2.po2
-rw-r--r--source/it/svx/source/items.po2
-rw-r--r--source/it/svx/source/src.po2
-rw-r--r--source/it/svx/source/stbctrls.po2
-rw-r--r--source/it/svx/source/svdraw.po2
-rw-r--r--source/it/svx/source/table.po2
-rw-r--r--source/it/svx/source/tbxctrls.po2
-rw-r--r--source/it/svx/source/toolbars.po2
-rw-r--r--source/it/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/it/svx/uiconfig/ui.po205
-rw-r--r--source/it/sw/source/core/layout.po2
-rw-r--r--source/it/sw/source/core/undo.po2
-rw-r--r--source/it/sw/source/core/unocore.po2
-rw-r--r--source/it/sw/source/ui/app.po25
-rw-r--r--source/it/sw/source/ui/chrdlg.po9
-rw-r--r--source/it/sw/source/ui/config.po2
-rw-r--r--source/it/sw/source/ui/dbui.po2
-rw-r--r--source/it/sw/source/ui/dialog.po2
-rw-r--r--source/it/sw/source/ui/dochdl.po2
-rw-r--r--source/it/sw/source/ui/docvw.po2
-rw-r--r--source/it/sw/source/ui/envelp.po2
-rw-r--r--source/it/sw/source/ui/fldui.po2
-rw-r--r--source/it/sw/source/ui/fmtui.po2
-rw-r--r--source/it/sw/source/ui/frmdlg.po2
-rw-r--r--source/it/sw/source/ui/globdoc.po2
-rw-r--r--source/it/sw/source/ui/index.po2
-rw-r--r--source/it/sw/source/ui/lingu.po2
-rw-r--r--source/it/sw/source/ui/misc.po2
-rw-r--r--source/it/sw/source/ui/ribbar.po2
-rw-r--r--source/it/sw/source/ui/shells.po2
-rw-r--r--source/it/sw/source/ui/smartmenu.po2
-rw-r--r--source/it/sw/source/ui/table.po8
-rw-r--r--source/it/sw/source/ui/uiview.po2
-rw-r--r--source/it/sw/source/ui/utlui.po46
-rw-r--r--source/it/sw/source/ui/web.po2
-rw-r--r--source/it/sw/source/ui/wrtsh.po2
-rw-r--r--source/it/sw/uiconfig/sw/ui.po278
-rw-r--r--source/it/sw/uiconfig/swriter/ui.po78
-rw-r--r--source/it/swext/mediawiki/help.po2
-rw-r--r--source/it/swext/mediawiki/src.po2
-rw-r--r--source/it/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/it/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/it/sysui/desktop/share.po2
-rw-r--r--source/it/tubes/uiconfig/ui.po12
-rw-r--r--source/it/uui/source.po2
-rw-r--r--source/it/vcl/qa/cppunit/builder.po44
-rw-r--r--source/it/vcl/source/edit.po2
-rw-r--r--source/it/vcl/source/src.po2
-rw-r--r--source/it/vcl/uiconfig/ui.po2
-rw-r--r--source/it/wizards/source/euro.po2
-rw-r--r--source/it/wizards/source/formwizard.po79
-rw-r--r--source/it/wizards/source/importwizard.po2
-rw-r--r--source/it/wizards/source/template.po16
-rw-r--r--source/it/xmlsecurity/source/component.po2
-rw-r--r--source/it/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ja/accessibility/source/helper.po2
-rw-r--r--source/ja/android/sdremote/res/values.po111
-rw-r--r--source/ja/avmedia/source/framework.po2
-rw-r--r--source/ja/avmedia/source/viewer.po2
-rw-r--r--source/ja/basctl/source/basicide.po2
-rw-r--r--source/ja/basctl/source/dlged.po2
-rw-r--r--source/ja/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ja/basic/source/classes.po2
-rw-r--r--source/ja/basic/source/sbx.po2
-rw-r--r--source/ja/chart2/source/controller/dialogs.po16
-rw-r--r--source/ja/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/connectivity/source/resource.po2
-rw-r--r--source/ja/cui/source/customize.po12
-rw-r--r--source/ja/cui/source/dialogs.po14
-rw-r--r--source/ja/cui/source/options.po37
-rw-r--r--source/ja/cui/source/tabpages.po47
-rw-r--r--source/ja/cui/uiconfig/ui.po153
-rw-r--r--source/ja/dbaccess/source/core/resource.po2
-rw-r--r--source/ja/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ja/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ja/dbaccess/source/ui/app.po2
-rw-r--r--source/ja/dbaccess/source/ui/browser.po2
-rw-r--r--source/ja/dbaccess/source/ui/control.po2
-rw-r--r--source/ja/dbaccess/source/ui/dlg.po11
-rw-r--r--source/ja/dbaccess/source/ui/inc.po2
-rw-r--r--source/ja/dbaccess/source/ui/misc.po2
-rw-r--r--source/ja/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ja/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ja/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ja/dbaccess/source/ui/uno.po2
-rw-r--r--source/ja/desktop/source/app.po2
-rw-r--r--source/ja/desktop/source/deployment/gui.po16
-rw-r--r--source/ja/desktop/source/deployment/manager.po2
-rw-r--r--source/ja/desktop/source/deployment/misc.po2
-rw-r--r--source/ja/desktop/source/deployment/registry.po2
-rw-r--r--source/ja/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ja/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ja/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ja/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ja/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ja/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ja/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ja/desktop/uiconfig/ui.po2
-rw-r--r--source/ja/dictionaries/af_ZA.po2
-rw-r--r--source/ja/dictionaries/an_ES.po2
-rw-r--r--source/ja/dictionaries/ar.po2
-rw-r--r--source/ja/dictionaries/be_BY.po2
-rw-r--r--source/ja/dictionaries/bg_BG.po2
-rw-r--r--source/ja/dictionaries/bn_BD.po2
-rw-r--r--source/ja/dictionaries/br_FR.po2
-rw-r--r--source/ja/dictionaries/ca.po2
-rw-r--r--source/ja/dictionaries/cs_CZ.po2
-rw-r--r--source/ja/dictionaries/da_DK.po2
-rw-r--r--source/ja/dictionaries/de.po2
-rw-r--r--source/ja/dictionaries/el_GR.po2
-rw-r--r--source/ja/dictionaries/en.po2
-rw-r--r--source/ja/dictionaries/en/dialog.po2
-rw-r--r--source/ja/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ja/dictionaries/es.po2
-rw-r--r--source/ja/dictionaries/et_EE.po2
-rw-r--r--source/ja/dictionaries/fr_FR.po2
-rw-r--r--source/ja/dictionaries/gd_GB.po2
-rw-r--r--source/ja/dictionaries/gl.po2
-rw-r--r--source/ja/dictionaries/gu_IN.po2
-rw-r--r--source/ja/dictionaries/he_IL.po2
-rw-r--r--source/ja/dictionaries/hi_IN.po2
-rw-r--r--source/ja/dictionaries/hr_HR.po2
-rw-r--r--source/ja/dictionaries/hu_HU.po2
-rw-r--r--source/ja/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ja/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ja/dictionaries/it_IT.po2
-rw-r--r--source/ja/dictionaries/ku_TR.po2
-rw-r--r--source/ja/dictionaries/lt_LT.po2
-rw-r--r--source/ja/dictionaries/lv_LV.po2
-rw-r--r--source/ja/dictionaries/ne_NP.po2
-rw-r--r--source/ja/dictionaries/nl_NL.po2
-rw-r--r--source/ja/dictionaries/no.po2
-rw-r--r--source/ja/dictionaries/oc_FR.po2
-rw-r--r--source/ja/dictionaries/pl_PL.po2
-rw-r--r--source/ja/dictionaries/pt_BR.po9
-rw-r--r--source/ja/dictionaries/pt_BR/dialog.po84
-rw-r--r--source/ja/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po14
-rw-r--r--source/ja/dictionaries/pt_PT.po2
-rw-r--r--source/ja/dictionaries/ro.po2
-rw-r--r--source/ja/dictionaries/ru_RU.po2
-rw-r--r--source/ja/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ja/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ja/dictionaries/si_LK.po2
-rw-r--r--source/ja/dictionaries/sk_SK.po2
-rw-r--r--source/ja/dictionaries/sl_SI.po2
-rw-r--r--source/ja/dictionaries/sr.po2
-rw-r--r--source/ja/dictionaries/sv_SE.po2
-rw-r--r--source/ja/dictionaries/sw_TZ.po2
-rw-r--r--source/ja/dictionaries/te_IN.po2
-rw-r--r--source/ja/dictionaries/th_TH.po2
-rw-r--r--source/ja/dictionaries/uk_UA.po2
-rw-r--r--source/ja/dictionaries/vi.po2
-rw-r--r--source/ja/dictionaries/zu_ZA.po2
-rw-r--r--source/ja/editeng/source/accessibility.po2
-rw-r--r--source/ja/editeng/source/editeng.po2
-rw-r--r--source/ja/editeng/source/items.po2
-rw-r--r--source/ja/editeng/source/misc.po2
-rw-r--r--source/ja/editeng/source/outliner.po2
-rw-r--r--source/ja/extensions/source/abpilot.po2
-rw-r--r--source/ja/extensions/source/bibliography.po2
-rw-r--r--source/ja/extensions/source/dbpilots.po2
-rw-r--r--source/ja/extensions/source/propctrlr.po14
-rw-r--r--source/ja/extensions/source/scanner.po2
-rw-r--r--source/ja/extensions/source/update/check.po2
-rw-r--r--source/ja/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ja/filter/source/config/fragments/filters.po2
-rw-r--r--source/ja/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ja/filter/source/config/fragments/types.po2
-rw-r--r--source/ja/filter/source/flash.po2
-rw-r--r--source/ja/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ja/filter/source/pdf.po20
-rw-r--r--source/ja/filter/source/t602.po2
-rw-r--r--source/ja/filter/source/xsltdialog.po13
-rw-r--r--source/ja/filter/uiconfig/ui.po38
-rw-r--r--source/ja/forms/source/resource.po2
-rw-r--r--source/ja/formula/source/core/resource.po46
-rw-r--r--source/ja/formula/source/ui/dlg.po2
-rw-r--r--source/ja/fpicker/source/office.po2
-rw-r--r--source/ja/framework/source/classes.po2
-rw-r--r--source/ja/framework/source/services.po2
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po67
-rw-r--r--source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/ja/librelogo/source/pythonpath.po124
-rw-r--r--source/ja/mysqlc/source.po2
-rw-r--r--source/ja/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ja/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po11
-rw-r--r--source/ja/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ja/nlpsolver/src/locale.po2
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office.po167
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po77
-rw-r--r--source/ja/padmin/source.po23
-rw-r--r--source/ja/readlicense_oo/docs.po13
-rw-r--r--source/ja/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ja/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ja/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ja/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ja/reportbuilder/util.po2
-rw-r--r--source/ja/reportdesign/source/core/resource.po2
-rw-r--r--source/ja/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ja/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ja/reportdesign/source/ui/report.po2
-rw-r--r--source/ja/sc/source/core/src.po2
-rw-r--r--source/ja/sc/source/ui/cctrl.po2
-rw-r--r--source/ja/sc/source/ui/dbgui.po12
-rw-r--r--source/ja/sc/source/ui/docshell.po2
-rw-r--r--source/ja/sc/source/ui/drawfunc.po11
-rw-r--r--source/ja/sc/source/ui/formdlg.po2
-rw-r--r--source/ja/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ja/sc/source/ui/navipi.po2
-rw-r--r--source/ja/sc/source/ui/optdlg.po17
-rw-r--r--source/ja/sc/source/ui/pagedlg.po2
-rw-r--r--source/ja/sc/source/ui/src.po495
-rw-r--r--source/ja/sc/source/ui/styleui.po2
-rw-r--r--source/ja/sc/uiconfig/scalc/ui.po12
-rw-r--r--source/ja/scaddins/source/analysis.po2
-rw-r--r--source/ja/scaddins/source/datefunc.po2
-rw-r--r--source/ja/scaddins/source/pricing.po2
-rw-r--r--source/ja/sccomp/source/solver.po2
-rw-r--r--source/ja/scp2/source/accessories.po2
-rw-r--r--source/ja/scp2/source/activex.po2
-rw-r--r--source/ja/scp2/source/base.po2
-rw-r--r--source/ja/scp2/source/calc.po2
-rw-r--r--source/ja/scp2/source/draw.po2
-rw-r--r--source/ja/scp2/source/extensions.po2
-rw-r--r--source/ja/scp2/source/gnome.po2
-rw-r--r--source/ja/scp2/source/graphicfilter.po2
-rw-r--r--source/ja/scp2/source/impress.po2
-rw-r--r--source/ja/scp2/source/javafilter.po2
-rw-r--r--source/ja/scp2/source/kde.po2
-rw-r--r--source/ja/scp2/source/math.po2
-rw-r--r--source/ja/scp2/source/onlineupdate.po2
-rw-r--r--source/ja/scp2/source/ooo.po14
-rw-r--r--source/ja/scp2/source/python.po18
-rw-r--r--source/ja/scp2/source/quickstart.po2
-rw-r--r--source/ja/scp2/source/sdkoo.po2
-rw-r--r--source/ja/scp2/source/smoketest.po2
-rw-r--r--source/ja/scp2/source/stdlibs.po2
-rw-r--r--source/ja/scp2/source/tde.po2
-rw-r--r--source/ja/scp2/source/winexplorerext.po2
-rw-r--r--source/ja/scp2/source/writer.po2
-rw-r--r--source/ja/scp2/source/xsltfilter.po2
-rw-r--r--source/ja/sd/source/core.po2
-rw-r--r--source/ja/sd/source/filter/html.po2
-rw-r--r--source/ja/sd/source/ui/accessibility.po2
-rw-r--r--source/ja/sd/source/ui/animations.po42
-rw-r--r--source/ja/sd/source/ui/annotations.po2
-rw-r--r--source/ja/sd/source/ui/app.po20
-rw-r--r--source/ja/sd/source/ui/dlg.po24
-rw-r--r--source/ja/sd/source/ui/slideshow.po2
-rw-r--r--source/ja/sd/source/ui/table.po27
-rw-r--r--source/ja/sd/source/ui/view.po11
-rw-r--r--source/ja/sd/uiconfig/sdraw/ui.po20
-rw-r--r--source/ja/sd/uiconfig/simpress/ui.po20
-rw-r--r--source/ja/sdext/source/minimizer.po2
-rw-r--r--source/ja/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ja/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ja/setup_native/source/mac.po2
-rw-r--r--source/ja/sfx2/source/appl.po17
-rw-r--r--source/ja/sfx2/source/bastyp.po2
-rw-r--r--source/ja/sfx2/source/control.po25
-rw-r--r--source/ja/sfx2/source/dialog.po65
-rw-r--r--source/ja/sfx2/source/doc.po195
-rw-r--r--source/ja/sfx2/source/menu.po2
-rw-r--r--source/ja/sfx2/source/view.po13
-rw-r--r--source/ja/sfx2/uiconfig/ui.po12
-rw-r--r--source/ja/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ja/starmath/source.po2
-rw-r--r--source/ja/starmath/uiconfig/smath/ui.po9
-rw-r--r--source/ja/svl/source/items.po2
-rw-r--r--source/ja/svl/source/misc.po2
-rw-r--r--source/ja/svtools/source/contnr.po11
-rw-r--r--source/ja/svtools/source/control.po2
-rw-r--r--source/ja/svtools/source/dialogs.po2
-rw-r--r--source/ja/svtools/source/java.po2
-rw-r--r--source/ja/svtools/source/misc.po63
-rw-r--r--source/ja/svtools/source/toolpanel.po2
-rw-r--r--source/ja/svtools/uiconfig/ui.po101
-rw-r--r--source/ja/svx/inc.po16
-rw-r--r--source/ja/svx/source/accessibility.po2
-rw-r--r--source/ja/svx/source/core.po2
-rw-r--r--source/ja/svx/source/dialog.po256
-rw-r--r--source/ja/svx/source/engine3d.po2
-rw-r--r--source/ja/svx/source/fmcomp.po2
-rw-r--r--source/ja/svx/source/form.po11
-rw-r--r--source/ja/svx/source/gallery2.po2
-rw-r--r--source/ja/svx/source/items.po2
-rw-r--r--source/ja/svx/source/src.po2
-rw-r--r--source/ja/svx/source/stbctrls.po2
-rw-r--r--source/ja/svx/source/svdraw.po11
-rw-r--r--source/ja/svx/source/table.po2
-rw-r--r--source/ja/svx/source/tbxctrls.po2
-rw-r--r--source/ja/svx/source/toolbars.po2
-rw-r--r--source/ja/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ja/svx/uiconfig/ui.po206
-rw-r--r--source/ja/sw/source/core/layout.po2
-rw-r--r--source/ja/sw/source/core/undo.po12
-rw-r--r--source/ja/sw/source/core/unocore.po2
-rw-r--r--source/ja/sw/source/ui/app.po73
-rw-r--r--source/ja/sw/source/ui/chrdlg.po11
-rw-r--r--source/ja/sw/source/ui/config.po11
-rw-r--r--source/ja/sw/source/ui/dbui.po2
-rw-r--r--source/ja/sw/source/ui/dialog.po2
-rw-r--r--source/ja/sw/source/ui/dochdl.po2
-rw-r--r--source/ja/sw/source/ui/docvw.po13
-rw-r--r--source/ja/sw/source/ui/envelp.po2
-rw-r--r--source/ja/sw/source/ui/fldui.po2
-rw-r--r--source/ja/sw/source/ui/fmtui.po2
-rw-r--r--source/ja/sw/source/ui/frmdlg.po2
-rw-r--r--source/ja/sw/source/ui/globdoc.po2
-rw-r--r--source/ja/sw/source/ui/index.po12
-rw-r--r--source/ja/sw/source/ui/lingu.po2
-rw-r--r--source/ja/sw/source/ui/misc.po2
-rw-r--r--source/ja/sw/source/ui/ribbar.po2
-rw-r--r--source/ja/sw/source/ui/shells.po2
-rw-r--r--source/ja/sw/source/ui/smartmenu.po2
-rw-r--r--source/ja/sw/source/ui/table.po9
-rw-r--r--source/ja/sw/source/ui/uiview.po2
-rw-r--r--source/ja/sw/source/ui/utlui.po67
-rw-r--r--source/ja/sw/source/ui/web.po2
-rw-r--r--source/ja/sw/source/ui/wrtsh.po2
-rw-r--r--source/ja/sw/uiconfig/sw/ui.po278
-rw-r--r--source/ja/sw/uiconfig/swriter/ui.po356
-rw-r--r--source/ja/swext/mediawiki/help.po15
-rw-r--r--source/ja/swext/mediawiki/src.po2
-rw-r--r--source/ja/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ja/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ja/sysui/desktop/share.po2
-rw-r--r--source/ja/tubes/uiconfig/ui.po2
-rw-r--r--source/ja/uui/source.po13
-rw-r--r--source/ja/vcl/qa/cppunit/builder.po13
-rw-r--r--source/ja/vcl/source/edit.po2
-rw-r--r--source/ja/vcl/source/src.po2
-rw-r--r--source/ja/vcl/uiconfig/ui.po75
-rw-r--r--source/ja/wizards/source/euro.po2
-rw-r--r--source/ja/wizards/source/formwizard.po2
-rw-r--r--source/ja/wizards/source/importwizard.po2
-rw-r--r--source/ja/wizards/source/template.po10
-rw-r--r--source/ja/xmlsecurity/source/component.po2
-rw-r--r--source/ja/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ka/accessibility/source/helper.po2
-rw-r--r--source/ka/android/sdremote/res/values.po2
-rw-r--r--source/ka/avmedia/source/framework.po2
-rw-r--r--source/ka/avmedia/source/viewer.po2
-rw-r--r--source/ka/basctl/source/basicide.po2
-rw-r--r--source/ka/basctl/source/dlged.po2
-rw-r--r--source/ka/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ka/basic/source/classes.po2
-rw-r--r--source/ka/basic/source/sbx.po2
-rw-r--r--source/ka/chart2/source/controller/dialogs.po2
-rw-r--r--source/ka/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/connectivity/source/resource.po2
-rw-r--r--source/ka/cui/source/customize.po2
-rw-r--r--source/ka/cui/source/dialogs.po2
-rw-r--r--source/ka/cui/source/options.po2
-rw-r--r--source/ka/cui/source/tabpages.po2
-rw-r--r--source/ka/cui/uiconfig/ui.po2
-rw-r--r--source/ka/dbaccess/source/core/resource.po2
-rw-r--r--source/ka/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ka/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ka/dbaccess/source/ui/app.po2
-rw-r--r--source/ka/dbaccess/source/ui/browser.po2
-rw-r--r--source/ka/dbaccess/source/ui/control.po2
-rw-r--r--source/ka/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ka/dbaccess/source/ui/inc.po2
-rw-r--r--source/ka/dbaccess/source/ui/misc.po2
-rw-r--r--source/ka/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ka/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ka/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ka/dbaccess/source/ui/uno.po2
-rw-r--r--source/ka/desktop/source/app.po2
-rw-r--r--source/ka/desktop/source/deployment/gui.po2
-rw-r--r--source/ka/desktop/source/deployment/manager.po2
-rw-r--r--source/ka/desktop/source/deployment/misc.po2
-rw-r--r--source/ka/desktop/source/deployment/registry.po2
-rw-r--r--source/ka/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ka/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ka/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ka/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ka/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ka/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ka/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ka/desktop/uiconfig/ui.po2
-rw-r--r--source/ka/dictionaries/af_ZA.po2
-rw-r--r--source/ka/dictionaries/an_ES.po2
-rw-r--r--source/ka/dictionaries/ar.po2
-rw-r--r--source/ka/dictionaries/be_BY.po2
-rw-r--r--source/ka/dictionaries/bg_BG.po2
-rw-r--r--source/ka/dictionaries/bn_BD.po2
-rw-r--r--source/ka/dictionaries/br_FR.po2
-rw-r--r--source/ka/dictionaries/ca.po2
-rw-r--r--source/ka/dictionaries/cs_CZ.po2
-rw-r--r--source/ka/dictionaries/da_DK.po2
-rw-r--r--source/ka/dictionaries/de.po2
-rw-r--r--source/ka/dictionaries/el_GR.po2
-rw-r--r--source/ka/dictionaries/en.po2
-rw-r--r--source/ka/dictionaries/en/dialog.po2
-rw-r--r--source/ka/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ka/dictionaries/es.po2
-rw-r--r--source/ka/dictionaries/et_EE.po2
-rw-r--r--source/ka/dictionaries/fr_FR.po2
-rw-r--r--source/ka/dictionaries/gd_GB.po2
-rw-r--r--source/ka/dictionaries/gl.po2
-rw-r--r--source/ka/dictionaries/gu_IN.po2
-rw-r--r--source/ka/dictionaries/he_IL.po2
-rw-r--r--source/ka/dictionaries/hi_IN.po2
-rw-r--r--source/ka/dictionaries/hr_HR.po2
-rw-r--r--source/ka/dictionaries/hu_HU.po2
-rw-r--r--source/ka/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ka/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ka/dictionaries/it_IT.po2
-rw-r--r--source/ka/dictionaries/ku_TR.po2
-rw-r--r--source/ka/dictionaries/lt_LT.po2
-rw-r--r--source/ka/dictionaries/lv_LV.po2
-rw-r--r--source/ka/dictionaries/ne_NP.po2
-rw-r--r--source/ka/dictionaries/nl_NL.po2
-rw-r--r--source/ka/dictionaries/no.po2
-rw-r--r--source/ka/dictionaries/oc_FR.po2
-rw-r--r--source/ka/dictionaries/pl_PL.po2
-rw-r--r--source/ka/dictionaries/pt_BR.po2
-rw-r--r--source/ka/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ka/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ka/dictionaries/pt_PT.po2
-rw-r--r--source/ka/dictionaries/ro.po2
-rw-r--r--source/ka/dictionaries/ru_RU.po2
-rw-r--r--source/ka/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ka/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ka/dictionaries/si_LK.po2
-rw-r--r--source/ka/dictionaries/sk_SK.po2
-rw-r--r--source/ka/dictionaries/sl_SI.po2
-rw-r--r--source/ka/dictionaries/sr.po2
-rw-r--r--source/ka/dictionaries/sv_SE.po2
-rw-r--r--source/ka/dictionaries/sw_TZ.po2
-rw-r--r--source/ka/dictionaries/te_IN.po2
-rw-r--r--source/ka/dictionaries/th_TH.po2
-rw-r--r--source/ka/dictionaries/uk_UA.po2
-rw-r--r--source/ka/dictionaries/vi.po2
-rw-r--r--source/ka/dictionaries/zu_ZA.po2
-rw-r--r--source/ka/editeng/source/accessibility.po2
-rw-r--r--source/ka/editeng/source/editeng.po2
-rw-r--r--source/ka/editeng/source/items.po2
-rw-r--r--source/ka/editeng/source/misc.po2
-rw-r--r--source/ka/editeng/source/outliner.po2
-rw-r--r--source/ka/extensions/source/abpilot.po2
-rw-r--r--source/ka/extensions/source/bibliography.po2
-rw-r--r--source/ka/extensions/source/dbpilots.po2
-rw-r--r--source/ka/extensions/source/propctrlr.po2
-rw-r--r--source/ka/extensions/source/scanner.po2
-rw-r--r--source/ka/extensions/source/update/check.po2
-rw-r--r--source/ka/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ka/filter/source/config/fragments/filters.po2
-rw-r--r--source/ka/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ka/filter/source/config/fragments/types.po2
-rw-r--r--source/ka/filter/source/flash.po2
-rw-r--r--source/ka/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ka/filter/source/pdf.po2
-rw-r--r--source/ka/filter/source/t602.po2
-rw-r--r--source/ka/filter/source/xsltdialog.po2
-rw-r--r--source/ka/filter/uiconfig/ui.po2
-rw-r--r--source/ka/forms/source/resource.po2
-rw-r--r--source/ka/formula/source/core/resource.po38
-rw-r--r--source/ka/formula/source/ui/dlg.po2
-rw-r--r--source/ka/fpicker/source/office.po2
-rw-r--r--source/ka/framework/source/classes.po2
-rw-r--r--source/ka/framework/source/services.po2
-rw-r--r--source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/ka/librelogo/source/pythonpath.po2
-rw-r--r--source/ka/mysqlc/source.po2
-rw-r--r--source/ka/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ka/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ka/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ka/nlpsolver/src/locale.po2
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/ka/padmin/source.po2
-rw-r--r--source/ka/readlicense_oo/docs.po2
-rw-r--r--source/ka/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ka/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ka/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ka/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ka/reportbuilder/util.po2
-rw-r--r--source/ka/reportdesign/source/core/resource.po2
-rw-r--r--source/ka/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ka/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ka/reportdesign/source/ui/report.po2
-rw-r--r--source/ka/sc/source/core/src.po2
-rw-r--r--source/ka/sc/source/ui/cctrl.po2
-rw-r--r--source/ka/sc/source/ui/dbgui.po2
-rw-r--r--source/ka/sc/source/ui/docshell.po2
-rw-r--r--source/ka/sc/source/ui/drawfunc.po2
-rw-r--r--source/ka/sc/source/ui/formdlg.po2
-rw-r--r--source/ka/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ka/sc/source/ui/navipi.po2
-rw-r--r--source/ka/sc/source/ui/optdlg.po2
-rw-r--r--source/ka/sc/source/ui/pagedlg.po2
-rw-r--r--source/ka/sc/source/ui/src.po378
-rw-r--r--source/ka/sc/source/ui/styleui.po2
-rw-r--r--source/ka/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/ka/scaddins/source/analysis.po2
-rw-r--r--source/ka/scaddins/source/datefunc.po2
-rw-r--r--source/ka/scaddins/source/pricing.po2
-rw-r--r--source/ka/sccomp/source/solver.po2
-rw-r--r--source/ka/scp2/source/accessories.po2
-rw-r--r--source/ka/scp2/source/activex.po2
-rw-r--r--source/ka/scp2/source/base.po2
-rw-r--r--source/ka/scp2/source/calc.po2
-rw-r--r--source/ka/scp2/source/draw.po2
-rw-r--r--source/ka/scp2/source/extensions.po2
-rw-r--r--source/ka/scp2/source/gnome.po2
-rw-r--r--source/ka/scp2/source/graphicfilter.po2
-rw-r--r--source/ka/scp2/source/impress.po2
-rw-r--r--source/ka/scp2/source/javafilter.po2
-rw-r--r--source/ka/scp2/source/kde.po2
-rw-r--r--source/ka/scp2/source/math.po2
-rw-r--r--source/ka/scp2/source/onlineupdate.po2
-rw-r--r--source/ka/scp2/source/ooo.po2
-rw-r--r--source/ka/scp2/source/python.po18
-rw-r--r--source/ka/scp2/source/quickstart.po2
-rw-r--r--source/ka/scp2/source/sdkoo.po2
-rw-r--r--source/ka/scp2/source/smoketest.po2
-rw-r--r--source/ka/scp2/source/stdlibs.po2
-rw-r--r--source/ka/scp2/source/tde.po2
-rw-r--r--source/ka/scp2/source/winexplorerext.po2
-rw-r--r--source/ka/scp2/source/writer.po2
-rw-r--r--source/ka/scp2/source/xsltfilter.po2
-rw-r--r--source/ka/sd/source/core.po2
-rw-r--r--source/ka/sd/source/filter/html.po2
-rw-r--r--source/ka/sd/source/ui/accessibility.po2
-rw-r--r--source/ka/sd/source/ui/animations.po2
-rw-r--r--source/ka/sd/source/ui/annotations.po2
-rw-r--r--source/ka/sd/source/ui/app.po2
-rw-r--r--source/ka/sd/source/ui/dlg.po2
-rw-r--r--source/ka/sd/source/ui/slideshow.po2
-rw-r--r--source/ka/sd/source/ui/table.po2
-rw-r--r--source/ka/sd/source/ui/view.po2
-rw-r--r--source/ka/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ka/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ka/sdext/source/minimizer.po2
-rw-r--r--source/ka/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ka/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ka/setup_native/source/mac.po2
-rw-r--r--source/ka/sfx2/source/appl.po2
-rw-r--r--source/ka/sfx2/source/bastyp.po2
-rw-r--r--source/ka/sfx2/source/control.po23
-rw-r--r--source/ka/sfx2/source/dialog.po46
-rw-r--r--source/ka/sfx2/source/doc.po126
-rw-r--r--source/ka/sfx2/source/menu.po2
-rw-r--r--source/ka/sfx2/source/view.po2
-rw-r--r--source/ka/sfx2/uiconfig/ui.po2
-rw-r--r--source/ka/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ka/starmath/source.po2
-rw-r--r--source/ka/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ka/svl/source/items.po2
-rw-r--r--source/ka/svl/source/misc.po2
-rw-r--r--source/ka/svtools/source/contnr.po2
-rw-r--r--source/ka/svtools/source/control.po2
-rw-r--r--source/ka/svtools/source/dialogs.po2
-rw-r--r--source/ka/svtools/source/java.po2
-rw-r--r--source/ka/svtools/source/misc.po2
-rw-r--r--source/ka/svtools/source/toolpanel.po2
-rw-r--r--source/ka/svtools/uiconfig/ui.po55
-rw-r--r--source/ka/svx/inc.po2
-rw-r--r--source/ka/svx/source/accessibility.po2
-rw-r--r--source/ka/svx/source/core.po2
-rw-r--r--source/ka/svx/source/dialog.po224
-rw-r--r--source/ka/svx/source/engine3d.po2
-rw-r--r--source/ka/svx/source/fmcomp.po2
-rw-r--r--source/ka/svx/source/form.po2
-rw-r--r--source/ka/svx/source/gallery2.po2
-rw-r--r--source/ka/svx/source/items.po2
-rw-r--r--source/ka/svx/source/src.po2
-rw-r--r--source/ka/svx/source/stbctrls.po2
-rw-r--r--source/ka/svx/source/svdraw.po2
-rw-r--r--source/ka/svx/source/table.po2
-rw-r--r--source/ka/svx/source/tbxctrls.po2
-rw-r--r--source/ka/svx/source/toolbars.po2
-rw-r--r--source/ka/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ka/svx/uiconfig/ui.po204
-rw-r--r--source/ka/sw/source/core/layout.po2
-rw-r--r--source/ka/sw/source/core/undo.po2
-rw-r--r--source/ka/sw/source/core/unocore.po2
-rw-r--r--source/ka/sw/source/ui/app.po2
-rw-r--r--source/ka/sw/source/ui/chrdlg.po2
-rw-r--r--source/ka/sw/source/ui/config.po2
-rw-r--r--source/ka/sw/source/ui/dbui.po2
-rw-r--r--source/ka/sw/source/ui/dialog.po2
-rw-r--r--source/ka/sw/source/ui/dochdl.po2
-rw-r--r--source/ka/sw/source/ui/docvw.po2
-rw-r--r--source/ka/sw/source/ui/envelp.po2
-rw-r--r--source/ka/sw/source/ui/fldui.po2
-rw-r--r--source/ka/sw/source/ui/fmtui.po2
-rw-r--r--source/ka/sw/source/ui/frmdlg.po2
-rw-r--r--source/ka/sw/source/ui/globdoc.po2
-rw-r--r--source/ka/sw/source/ui/index.po2
-rw-r--r--source/ka/sw/source/ui/lingu.po2
-rw-r--r--source/ka/sw/source/ui/misc.po2
-rw-r--r--source/ka/sw/source/ui/ribbar.po2
-rw-r--r--source/ka/sw/source/ui/shells.po2
-rw-r--r--source/ka/sw/source/ui/smartmenu.po2
-rw-r--r--source/ka/sw/source/ui/table.po2
-rw-r--r--source/ka/sw/source/ui/uiview.po2
-rw-r--r--source/ka/sw/source/ui/utlui.po2
-rw-r--r--source/ka/sw/source/ui/web.po2
-rw-r--r--source/ka/sw/source/ui/wrtsh.po2
-rw-r--r--source/ka/sw/uiconfig/sw/ui.po281
-rw-r--r--source/ka/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/ka/swext/mediawiki/help.po2
-rw-r--r--source/ka/swext/mediawiki/src.po2
-rw-r--r--source/ka/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ka/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ka/sysui/desktop/share.po2
-rw-r--r--source/ka/tubes/uiconfig/ui.po2
-rw-r--r--source/ka/uui/source.po2
-rw-r--r--source/ka/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ka/vcl/source/edit.po2
-rw-r--r--source/ka/vcl/source/src.po2
-rw-r--r--source/ka/vcl/uiconfig/ui.po2
-rw-r--r--source/ka/wizards/source/euro.po2
-rw-r--r--source/ka/wizards/source/formwizard.po2
-rw-r--r--source/ka/wizards/source/importwizard.po2
-rw-r--r--source/ka/wizards/source/template.po2
-rw-r--r--source/ka/xmlsecurity/source/component.po2
-rw-r--r--source/ka/xmlsecurity/source/dialogs.po2
-rw-r--r--source/kk/accessibility/source/helper.po7
-rw-r--r--source/kk/android/sdremote/res/values.po34
-rw-r--r--source/kk/avmedia/source/framework.po19
-rw-r--r--source/kk/avmedia/source/viewer.po2
-rw-r--r--source/kk/basctl/source/basicide.po2
-rw-r--r--source/kk/basctl/source/dlged.po2
-rw-r--r--source/kk/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/kk/basic/source/classes.po2
-rw-r--r--source/kk/basic/source/sbx.po2
-rw-r--r--source/kk/chart2/source/controller/dialogs.po2
-rw-r--r--source/kk/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/connectivity/source/resource.po2
-rw-r--r--source/kk/cui/source/customize.po2
-rw-r--r--source/kk/cui/source/dialogs.po2
-rw-r--r--source/kk/cui/source/options.po2
-rw-r--r--source/kk/cui/source/tabpages.po2
-rw-r--r--source/kk/cui/uiconfig/ui.po2
-rw-r--r--source/kk/dbaccess/source/core/resource.po2
-rw-r--r--source/kk/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/kk/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/kk/dbaccess/source/ui/app.po2
-rw-r--r--source/kk/dbaccess/source/ui/browser.po2
-rw-r--r--source/kk/dbaccess/source/ui/control.po2
-rw-r--r--source/kk/dbaccess/source/ui/dlg.po2
-rw-r--r--source/kk/dbaccess/source/ui/inc.po2
-rw-r--r--source/kk/dbaccess/source/ui/misc.po2
-rw-r--r--source/kk/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/kk/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/kk/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/kk/dbaccess/source/ui/uno.po2
-rw-r--r--source/kk/desktop/source/app.po2
-rw-r--r--source/kk/desktop/source/deployment/gui.po2
-rw-r--r--source/kk/desktop/source/deployment/manager.po2
-rw-r--r--source/kk/desktop/source/deployment/misc.po2
-rw-r--r--source/kk/desktop/source/deployment/registry.po2
-rw-r--r--source/kk/desktop/source/deployment/registry/component.po2
-rw-r--r--source/kk/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/kk/desktop/source/deployment/registry/help.po2
-rw-r--r--source/kk/desktop/source/deployment/registry/package.po2
-rw-r--r--source/kk/desktop/source/deployment/registry/script.po2
-rw-r--r--source/kk/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/kk/desktop/source/deployment/unopkg.po2
-rw-r--r--source/kk/desktop/uiconfig/ui.po2
-rw-r--r--source/kk/dictionaries/af_ZA.po2
-rw-r--r--source/kk/dictionaries/an_ES.po2
-rw-r--r--source/kk/dictionaries/ar.po2
-rw-r--r--source/kk/dictionaries/be_BY.po2
-rw-r--r--source/kk/dictionaries/bg_BG.po2
-rw-r--r--source/kk/dictionaries/bn_BD.po2
-rw-r--r--source/kk/dictionaries/br_FR.po2
-rw-r--r--source/kk/dictionaries/ca.po2
-rw-r--r--source/kk/dictionaries/cs_CZ.po2
-rw-r--r--source/kk/dictionaries/da_DK.po2
-rw-r--r--source/kk/dictionaries/de.po2
-rw-r--r--source/kk/dictionaries/el_GR.po2
-rw-r--r--source/kk/dictionaries/en.po2
-rw-r--r--source/kk/dictionaries/en/dialog.po2
-rw-r--r--source/kk/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kk/dictionaries/es.po2
-rw-r--r--source/kk/dictionaries/et_EE.po2
-rw-r--r--source/kk/dictionaries/fr_FR.po2
-rw-r--r--source/kk/dictionaries/gd_GB.po2
-rw-r--r--source/kk/dictionaries/gl.po2
-rw-r--r--source/kk/dictionaries/gu_IN.po2
-rw-r--r--source/kk/dictionaries/he_IL.po2
-rw-r--r--source/kk/dictionaries/hi_IN.po2
-rw-r--r--source/kk/dictionaries/hr_HR.po2
-rw-r--r--source/kk/dictionaries/hu_HU.po2
-rw-r--r--source/kk/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/kk/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kk/dictionaries/it_IT.po2
-rw-r--r--source/kk/dictionaries/ku_TR.po2
-rw-r--r--source/kk/dictionaries/lt_LT.po2
-rw-r--r--source/kk/dictionaries/lv_LV.po2
-rw-r--r--source/kk/dictionaries/ne_NP.po2
-rw-r--r--source/kk/dictionaries/nl_NL.po2
-rw-r--r--source/kk/dictionaries/no.po2
-rw-r--r--source/kk/dictionaries/oc_FR.po2
-rw-r--r--source/kk/dictionaries/pl_PL.po2
-rw-r--r--source/kk/dictionaries/pt_BR.po2
-rw-r--r--source/kk/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/kk/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kk/dictionaries/pt_PT.po2
-rw-r--r--source/kk/dictionaries/ro.po2
-rw-r--r--source/kk/dictionaries/ru_RU.po2
-rw-r--r--source/kk/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/kk/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kk/dictionaries/si_LK.po2
-rw-r--r--source/kk/dictionaries/sk_SK.po2
-rw-r--r--source/kk/dictionaries/sl_SI.po2
-rw-r--r--source/kk/dictionaries/sr.po2
-rw-r--r--source/kk/dictionaries/sv_SE.po2
-rw-r--r--source/kk/dictionaries/sw_TZ.po2
-rw-r--r--source/kk/dictionaries/te_IN.po2
-rw-r--r--source/kk/dictionaries/th_TH.po2
-rw-r--r--source/kk/dictionaries/uk_UA.po2
-rw-r--r--source/kk/dictionaries/vi.po2
-rw-r--r--source/kk/dictionaries/zu_ZA.po2
-rw-r--r--source/kk/editeng/source/accessibility.po2
-rw-r--r--source/kk/editeng/source/editeng.po2
-rw-r--r--source/kk/editeng/source/items.po2
-rw-r--r--source/kk/editeng/source/misc.po2
-rw-r--r--source/kk/editeng/source/outliner.po2
-rw-r--r--source/kk/extensions/source/abpilot.po2
-rw-r--r--source/kk/extensions/source/bibliography.po2
-rw-r--r--source/kk/extensions/source/dbpilots.po2
-rw-r--r--source/kk/extensions/source/propctrlr.po2
-rw-r--r--source/kk/extensions/source/scanner.po2
-rw-r--r--source/kk/extensions/source/update/check.po2
-rw-r--r--source/kk/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/kk/filter/source/config/fragments/filters.po2
-rw-r--r--source/kk/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/kk/filter/source/config/fragments/types.po2
-rw-r--r--source/kk/filter/source/flash.po2
-rw-r--r--source/kk/filter/source/graphicfilter/eps.po2
-rw-r--r--source/kk/filter/source/pdf.po2
-rw-r--r--source/kk/filter/source/t602.po2
-rw-r--r--source/kk/filter/source/xsltdialog.po2
-rw-r--r--source/kk/filter/uiconfig/ui.po2
-rw-r--r--source/kk/forms/source/resource.po2
-rw-r--r--source/kk/formula/source/core/resource.po38
-rw-r--r--source/kk/formula/source/ui/dlg.po2
-rw-r--r--source/kk/fpicker/source/office.po2
-rw-r--r--source/kk/framework/source/classes.po2
-rw-r--r--source/kk/framework/source/services.po2
-rw-r--r--source/kk/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/kk/librelogo/source/pythonpath.po2
-rw-r--r--source/kk/mysqlc/source.po2
-rw-r--r--source/kk/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kk/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/kk/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/kk/nlpsolver/src/locale.po2
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/kk/padmin/source.po2
-rw-r--r--source/kk/readlicense_oo/docs.po2
-rw-r--r--source/kk/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/kk/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kk/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/kk/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/kk/reportbuilder/util.po2
-rw-r--r--source/kk/reportdesign/source/core/resource.po2
-rw-r--r--source/kk/reportdesign/source/ui/dlg.po2
-rw-r--r--source/kk/reportdesign/source/ui/inspection.po2
-rw-r--r--source/kk/reportdesign/source/ui/report.po2
-rw-r--r--source/kk/sc/source/core/src.po2
-rw-r--r--source/kk/sc/source/ui/cctrl.po2
-rw-r--r--source/kk/sc/source/ui/dbgui.po2
-rw-r--r--source/kk/sc/source/ui/docshell.po2
-rw-r--r--source/kk/sc/source/ui/drawfunc.po2
-rw-r--r--source/kk/sc/source/ui/formdlg.po2
-rw-r--r--source/kk/sc/source/ui/miscdlgs.po2
-rw-r--r--source/kk/sc/source/ui/navipi.po2
-rw-r--r--source/kk/sc/source/ui/optdlg.po2
-rw-r--r--source/kk/sc/source/ui/pagedlg.po2
-rw-r--r--source/kk/sc/source/ui/src.po383
-rw-r--r--source/kk/sc/source/ui/styleui.po2
-rw-r--r--source/kk/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/kk/scaddins/source/analysis.po2
-rw-r--r--source/kk/scaddins/source/datefunc.po2
-rw-r--r--source/kk/scaddins/source/pricing.po2
-rw-r--r--source/kk/sccomp/source/solver.po2
-rw-r--r--source/kk/scp2/source/accessories.po2
-rw-r--r--source/kk/scp2/source/activex.po2
-rw-r--r--source/kk/scp2/source/base.po2
-rw-r--r--source/kk/scp2/source/calc.po2
-rw-r--r--source/kk/scp2/source/draw.po2
-rw-r--r--source/kk/scp2/source/extensions.po2
-rw-r--r--source/kk/scp2/source/gnome.po2
-rw-r--r--source/kk/scp2/source/graphicfilter.po2
-rw-r--r--source/kk/scp2/source/impress.po2
-rw-r--r--source/kk/scp2/source/javafilter.po2
-rw-r--r--source/kk/scp2/source/kde.po2
-rw-r--r--source/kk/scp2/source/math.po2
-rw-r--r--source/kk/scp2/source/onlineupdate.po2
-rw-r--r--source/kk/scp2/source/ooo.po2
-rw-r--r--source/kk/scp2/source/python.po18
-rw-r--r--source/kk/scp2/source/quickstart.po2
-rw-r--r--source/kk/scp2/source/sdkoo.po2
-rw-r--r--source/kk/scp2/source/smoketest.po2
-rw-r--r--source/kk/scp2/source/stdlibs.po2
-rw-r--r--source/kk/scp2/source/tde.po2
-rw-r--r--source/kk/scp2/source/winexplorerext.po2
-rw-r--r--source/kk/scp2/source/writer.po2
-rw-r--r--source/kk/scp2/source/xsltfilter.po2
-rw-r--r--source/kk/sd/source/core.po2
-rw-r--r--source/kk/sd/source/filter/html.po2
-rw-r--r--source/kk/sd/source/ui/accessibility.po2
-rw-r--r--source/kk/sd/source/ui/animations.po2
-rw-r--r--source/kk/sd/source/ui/annotations.po2
-rw-r--r--source/kk/sd/source/ui/app.po2
-rw-r--r--source/kk/sd/source/ui/dlg.po2
-rw-r--r--source/kk/sd/source/ui/slideshow.po2
-rw-r--r--source/kk/sd/source/ui/table.po2
-rw-r--r--source/kk/sd/source/ui/view.po2
-rw-r--r--source/kk/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/kk/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/kk/sdext/source/minimizer.po2
-rw-r--r--source/kk/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kk/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/kk/setup_native/source/mac.po2
-rw-r--r--source/kk/sfx2/source/appl.po2
-rw-r--r--source/kk/sfx2/source/bastyp.po2
-rw-r--r--source/kk/sfx2/source/control.po23
-rw-r--r--source/kk/sfx2/source/dialog.po46
-rw-r--r--source/kk/sfx2/source/doc.po129
-rw-r--r--source/kk/sfx2/source/menu.po2
-rw-r--r--source/kk/sfx2/source/view.po2
-rw-r--r--source/kk/sfx2/uiconfig/ui.po2
-rw-r--r--source/kk/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/kk/starmath/source.po2
-rw-r--r--source/kk/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/kk/svl/source/items.po2
-rw-r--r--source/kk/svl/source/misc.po2
-rw-r--r--source/kk/svtools/source/contnr.po2
-rw-r--r--source/kk/svtools/source/control.po2
-rw-r--r--source/kk/svtools/source/dialogs.po2
-rw-r--r--source/kk/svtools/source/java.po2
-rw-r--r--source/kk/svtools/source/misc.po2
-rw-r--r--source/kk/svtools/source/toolpanel.po2
-rw-r--r--source/kk/svtools/uiconfig/ui.po55
-rw-r--r--source/kk/svx/inc.po2
-rw-r--r--source/kk/svx/source/accessibility.po2
-rw-r--r--source/kk/svx/source/core.po2
-rw-r--r--source/kk/svx/source/dialog.po222
-rw-r--r--source/kk/svx/source/engine3d.po2
-rw-r--r--source/kk/svx/source/fmcomp.po2
-rw-r--r--source/kk/svx/source/form.po2
-rw-r--r--source/kk/svx/source/gallery2.po2
-rw-r--r--source/kk/svx/source/items.po2
-rw-r--r--source/kk/svx/source/src.po2
-rw-r--r--source/kk/svx/source/stbctrls.po2
-rw-r--r--source/kk/svx/source/svdraw.po2
-rw-r--r--source/kk/svx/source/table.po2
-rw-r--r--source/kk/svx/source/tbxctrls.po2
-rw-r--r--source/kk/svx/source/toolbars.po2
-rw-r--r--source/kk/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/kk/svx/uiconfig/ui.po204
-rw-r--r--source/kk/sw/source/core/layout.po2
-rw-r--r--source/kk/sw/source/core/undo.po2
-rw-r--r--source/kk/sw/source/core/unocore.po2
-rw-r--r--source/kk/sw/source/ui/app.po2
-rw-r--r--source/kk/sw/source/ui/chrdlg.po2
-rw-r--r--source/kk/sw/source/ui/config.po2
-rw-r--r--source/kk/sw/source/ui/dbui.po2
-rw-r--r--source/kk/sw/source/ui/dialog.po2
-rw-r--r--source/kk/sw/source/ui/dochdl.po2
-rw-r--r--source/kk/sw/source/ui/docvw.po2
-rw-r--r--source/kk/sw/source/ui/envelp.po2
-rw-r--r--source/kk/sw/source/ui/fldui.po2
-rw-r--r--source/kk/sw/source/ui/fmtui.po2
-rw-r--r--source/kk/sw/source/ui/frmdlg.po2
-rw-r--r--source/kk/sw/source/ui/globdoc.po2
-rw-r--r--source/kk/sw/source/ui/index.po2
-rw-r--r--source/kk/sw/source/ui/lingu.po2
-rw-r--r--source/kk/sw/source/ui/misc.po2
-rw-r--r--source/kk/sw/source/ui/ribbar.po2
-rw-r--r--source/kk/sw/source/ui/shells.po2
-rw-r--r--source/kk/sw/source/ui/smartmenu.po2
-rw-r--r--source/kk/sw/source/ui/table.po2
-rw-r--r--source/kk/sw/source/ui/uiview.po2
-rw-r--r--source/kk/sw/source/ui/utlui.po2
-rw-r--r--source/kk/sw/source/ui/web.po2
-rw-r--r--source/kk/sw/source/ui/wrtsh.po2
-rw-r--r--source/kk/sw/uiconfig/sw/ui.po286
-rw-r--r--source/kk/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/kk/swext/mediawiki/help.po2
-rw-r--r--source/kk/swext/mediawiki/src.po2
-rw-r--r--source/kk/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kk/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/kk/sysui/desktop/share.po2
-rw-r--r--source/kk/tubes/uiconfig/ui.po2
-rw-r--r--source/kk/uui/source.po2
-rw-r--r--source/kk/vcl/qa/cppunit/builder.po2
-rw-r--r--source/kk/vcl/source/edit.po2
-rw-r--r--source/kk/vcl/source/src.po2
-rw-r--r--source/kk/vcl/uiconfig/ui.po2
-rw-r--r--source/kk/wizards/source/euro.po2
-rw-r--r--source/kk/wizards/source/formwizard.po2
-rw-r--r--source/kk/wizards/source/importwizard.po2
-rw-r--r--source/kk/wizards/source/template.po2
-rw-r--r--source/kk/xmlsecurity/source/component.po2
-rw-r--r--source/kk/xmlsecurity/source/dialogs.po2
-rw-r--r--source/kl/accessibility/source/helper.po2
-rw-r--r--source/kl/android/sdremote/res/values.po2
-rw-r--r--source/kl/avmedia/source/framework.po2
-rw-r--r--source/kl/avmedia/source/viewer.po2
-rw-r--r--source/kl/basctl/source/basicide.po2
-rw-r--r--source/kl/basctl/source/dlged.po2
-rw-r--r--source/kl/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/kl/basic/source/classes.po2
-rw-r--r--source/kl/basic/source/sbx.po2
-rw-r--r--source/kl/chart2/source/controller/dialogs.po2
-rw-r--r--source/kl/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/connectivity/source/resource.po2
-rw-r--r--source/kl/cui/source/customize.po2
-rw-r--r--source/kl/cui/source/dialogs.po2
-rw-r--r--source/kl/cui/source/options.po2
-rw-r--r--source/kl/cui/source/tabpages.po2
-rw-r--r--source/kl/cui/uiconfig/ui.po2
-rw-r--r--source/kl/dbaccess/source/core/resource.po2
-rw-r--r--source/kl/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/kl/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/kl/dbaccess/source/ui/app.po2
-rw-r--r--source/kl/dbaccess/source/ui/browser.po2
-rw-r--r--source/kl/dbaccess/source/ui/control.po2
-rw-r--r--source/kl/dbaccess/source/ui/dlg.po2
-rw-r--r--source/kl/dbaccess/source/ui/inc.po2
-rw-r--r--source/kl/dbaccess/source/ui/misc.po2
-rw-r--r--source/kl/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/kl/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/kl/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/kl/dbaccess/source/ui/uno.po2
-rw-r--r--source/kl/desktop/source/app.po2
-rw-r--r--source/kl/desktop/source/deployment/gui.po2
-rw-r--r--source/kl/desktop/source/deployment/manager.po2
-rw-r--r--source/kl/desktop/source/deployment/misc.po2
-rw-r--r--source/kl/desktop/source/deployment/registry.po2
-rw-r--r--source/kl/desktop/source/deployment/registry/component.po2
-rw-r--r--source/kl/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/kl/desktop/source/deployment/registry/help.po2
-rw-r--r--source/kl/desktop/source/deployment/registry/package.po2
-rw-r--r--source/kl/desktop/source/deployment/registry/script.po2
-rw-r--r--source/kl/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/kl/desktop/source/deployment/unopkg.po2
-rw-r--r--source/kl/desktop/uiconfig/ui.po2
-rw-r--r--source/kl/dictionaries/af_ZA.po2
-rw-r--r--source/kl/dictionaries/an_ES.po2
-rw-r--r--source/kl/dictionaries/ar.po2
-rw-r--r--source/kl/dictionaries/be_BY.po2
-rw-r--r--source/kl/dictionaries/bg_BG.po2
-rw-r--r--source/kl/dictionaries/bn_BD.po2
-rw-r--r--source/kl/dictionaries/br_FR.po2
-rw-r--r--source/kl/dictionaries/ca.po2
-rw-r--r--source/kl/dictionaries/cs_CZ.po2
-rw-r--r--source/kl/dictionaries/da_DK.po2
-rw-r--r--source/kl/dictionaries/de.po2
-rw-r--r--source/kl/dictionaries/el_GR.po2
-rw-r--r--source/kl/dictionaries/en.po2
-rw-r--r--source/kl/dictionaries/en/dialog.po2
-rw-r--r--source/kl/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kl/dictionaries/es.po2
-rw-r--r--source/kl/dictionaries/et_EE.po2
-rw-r--r--source/kl/dictionaries/fr_FR.po2
-rw-r--r--source/kl/dictionaries/gd_GB.po2
-rw-r--r--source/kl/dictionaries/gl.po2
-rw-r--r--source/kl/dictionaries/gu_IN.po2
-rw-r--r--source/kl/dictionaries/he_IL.po2
-rw-r--r--source/kl/dictionaries/hi_IN.po2
-rw-r--r--source/kl/dictionaries/hr_HR.po2
-rw-r--r--source/kl/dictionaries/hu_HU.po2
-rw-r--r--source/kl/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/kl/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kl/dictionaries/it_IT.po2
-rw-r--r--source/kl/dictionaries/ku_TR.po2
-rw-r--r--source/kl/dictionaries/lt_LT.po2
-rw-r--r--source/kl/dictionaries/lv_LV.po2
-rw-r--r--source/kl/dictionaries/ne_NP.po2
-rw-r--r--source/kl/dictionaries/nl_NL.po2
-rw-r--r--source/kl/dictionaries/no.po2
-rw-r--r--source/kl/dictionaries/oc_FR.po2
-rw-r--r--source/kl/dictionaries/pl_PL.po2
-rw-r--r--source/kl/dictionaries/pt_BR.po2
-rw-r--r--source/kl/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/kl/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kl/dictionaries/pt_PT.po2
-rw-r--r--source/kl/dictionaries/ro.po2
-rw-r--r--source/kl/dictionaries/ru_RU.po2
-rw-r--r--source/kl/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/kl/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kl/dictionaries/si_LK.po2
-rw-r--r--source/kl/dictionaries/sk_SK.po2
-rw-r--r--source/kl/dictionaries/sl_SI.po2
-rw-r--r--source/kl/dictionaries/sr.po2
-rw-r--r--source/kl/dictionaries/sv_SE.po2
-rw-r--r--source/kl/dictionaries/sw_TZ.po2
-rw-r--r--source/kl/dictionaries/te_IN.po2
-rw-r--r--source/kl/dictionaries/th_TH.po2
-rw-r--r--source/kl/dictionaries/uk_UA.po2
-rw-r--r--source/kl/dictionaries/vi.po2
-rw-r--r--source/kl/dictionaries/zu_ZA.po2
-rw-r--r--source/kl/editeng/source/accessibility.po2
-rw-r--r--source/kl/editeng/source/editeng.po2
-rw-r--r--source/kl/editeng/source/items.po2
-rw-r--r--source/kl/editeng/source/misc.po2
-rw-r--r--source/kl/editeng/source/outliner.po2
-rw-r--r--source/kl/extensions/source/abpilot.po2
-rw-r--r--source/kl/extensions/source/bibliography.po2
-rw-r--r--source/kl/extensions/source/dbpilots.po2
-rw-r--r--source/kl/extensions/source/propctrlr.po2
-rw-r--r--source/kl/extensions/source/scanner.po2
-rw-r--r--source/kl/extensions/source/update/check.po2
-rw-r--r--source/kl/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/kl/filter/source/config/fragments/filters.po2
-rw-r--r--source/kl/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/kl/filter/source/config/fragments/types.po2
-rw-r--r--source/kl/filter/source/flash.po2
-rw-r--r--source/kl/filter/source/graphicfilter/eps.po2
-rw-r--r--source/kl/filter/source/pdf.po2
-rw-r--r--source/kl/filter/source/t602.po2
-rw-r--r--source/kl/filter/source/xsltdialog.po2
-rw-r--r--source/kl/filter/uiconfig/ui.po2
-rw-r--r--source/kl/forms/source/resource.po2
-rw-r--r--source/kl/formula/source/core/resource.po38
-rw-r--r--source/kl/formula/source/ui/dlg.po2
-rw-r--r--source/kl/fpicker/source/office.po2
-rw-r--r--source/kl/framework/source/classes.po2
-rw-r--r--source/kl/framework/source/services.po2
-rw-r--r--source/kl/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/kl/librelogo/source/pythonpath.po2
-rw-r--r--source/kl/mysqlc/source.po2
-rw-r--r--source/kl/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/kl/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/kl/nlpsolver/src/locale.po2
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office.po4
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/kl/padmin/source.po2
-rw-r--r--source/kl/readlicense_oo/docs.po2
-rw-r--r--source/kl/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/kl/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kl/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/kl/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/kl/reportbuilder/util.po2
-rw-r--r--source/kl/reportdesign/source/core/resource.po2
-rw-r--r--source/kl/reportdesign/source/ui/dlg.po2
-rw-r--r--source/kl/reportdesign/source/ui/inspection.po2
-rw-r--r--source/kl/reportdesign/source/ui/report.po2
-rw-r--r--source/kl/sc/source/core/src.po2
-rw-r--r--source/kl/sc/source/ui/cctrl.po2
-rw-r--r--source/kl/sc/source/ui/dbgui.po2
-rw-r--r--source/kl/sc/source/ui/docshell.po2
-rw-r--r--source/kl/sc/source/ui/drawfunc.po2
-rw-r--r--source/kl/sc/source/ui/formdlg.po2
-rw-r--r--source/kl/sc/source/ui/miscdlgs.po2
-rw-r--r--source/kl/sc/source/ui/navipi.po2
-rw-r--r--source/kl/sc/source/ui/optdlg.po2
-rw-r--r--source/kl/sc/source/ui/pagedlg.po2
-rw-r--r--source/kl/sc/source/ui/src.po372
-rw-r--r--source/kl/sc/source/ui/styleui.po2
-rw-r--r--source/kl/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/kl/scaddins/source/analysis.po2
-rw-r--r--source/kl/scaddins/source/datefunc.po2
-rw-r--r--source/kl/scaddins/source/pricing.po2
-rw-r--r--source/kl/sccomp/source/solver.po2
-rw-r--r--source/kl/scp2/source/accessories.po2
-rw-r--r--source/kl/scp2/source/activex.po2
-rw-r--r--source/kl/scp2/source/base.po2
-rw-r--r--source/kl/scp2/source/calc.po2
-rw-r--r--source/kl/scp2/source/draw.po2
-rw-r--r--source/kl/scp2/source/extensions.po2
-rw-r--r--source/kl/scp2/source/gnome.po2
-rw-r--r--source/kl/scp2/source/graphicfilter.po2
-rw-r--r--source/kl/scp2/source/impress.po2
-rw-r--r--source/kl/scp2/source/javafilter.po2
-rw-r--r--source/kl/scp2/source/kde.po2
-rw-r--r--source/kl/scp2/source/math.po2
-rw-r--r--source/kl/scp2/source/onlineupdate.po2
-rw-r--r--source/kl/scp2/source/ooo.po2
-rw-r--r--source/kl/scp2/source/python.po18
-rw-r--r--source/kl/scp2/source/quickstart.po2
-rw-r--r--source/kl/scp2/source/sdkoo.po2
-rw-r--r--source/kl/scp2/source/smoketest.po2
-rw-r--r--source/kl/scp2/source/stdlibs.po2
-rw-r--r--source/kl/scp2/source/tde.po2
-rw-r--r--source/kl/scp2/source/winexplorerext.po2
-rw-r--r--source/kl/scp2/source/writer.po2
-rw-r--r--source/kl/scp2/source/xsltfilter.po2
-rw-r--r--source/kl/sd/source/core.po2
-rw-r--r--source/kl/sd/source/filter/html.po2
-rw-r--r--source/kl/sd/source/ui/accessibility.po2
-rw-r--r--source/kl/sd/source/ui/animations.po2
-rw-r--r--source/kl/sd/source/ui/annotations.po2
-rw-r--r--source/kl/sd/source/ui/app.po2
-rw-r--r--source/kl/sd/source/ui/dlg.po2
-rw-r--r--source/kl/sd/source/ui/slideshow.po2
-rw-r--r--source/kl/sd/source/ui/table.po2
-rw-r--r--source/kl/sd/source/ui/view.po2
-rw-r--r--source/kl/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/kl/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/kl/sdext/source/minimizer.po2
-rw-r--r--source/kl/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kl/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/kl/setup_native/source/mac.po2
-rw-r--r--source/kl/sfx2/source/appl.po2
-rw-r--r--source/kl/sfx2/source/bastyp.po2
-rw-r--r--source/kl/sfx2/source/control.po23
-rw-r--r--source/kl/sfx2/source/dialog.po46
-rw-r--r--source/kl/sfx2/source/doc.po116
-rw-r--r--source/kl/sfx2/source/menu.po2
-rw-r--r--source/kl/sfx2/source/view.po2
-rw-r--r--source/kl/sfx2/uiconfig/ui.po2
-rw-r--r--source/kl/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/kl/starmath/source.po2
-rw-r--r--source/kl/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/kl/svl/source/items.po2
-rw-r--r--source/kl/svl/source/misc.po2
-rw-r--r--source/kl/svtools/source/contnr.po2
-rw-r--r--source/kl/svtools/source/control.po2
-rw-r--r--source/kl/svtools/source/dialogs.po2
-rw-r--r--source/kl/svtools/source/java.po2
-rw-r--r--source/kl/svtools/source/misc.po2
-rw-r--r--source/kl/svtools/source/toolpanel.po2
-rw-r--r--source/kl/svtools/uiconfig/ui.po37
-rw-r--r--source/kl/svx/inc.po2
-rw-r--r--source/kl/svx/source/accessibility.po2
-rw-r--r--source/kl/svx/source/core.po2
-rw-r--r--source/kl/svx/source/dialog.po217
-rw-r--r--source/kl/svx/source/engine3d.po2
-rw-r--r--source/kl/svx/source/fmcomp.po2
-rw-r--r--source/kl/svx/source/form.po2
-rw-r--r--source/kl/svx/source/gallery2.po2
-rw-r--r--source/kl/svx/source/items.po2
-rw-r--r--source/kl/svx/source/src.po2
-rw-r--r--source/kl/svx/source/stbctrls.po2
-rw-r--r--source/kl/svx/source/svdraw.po2
-rw-r--r--source/kl/svx/source/table.po2
-rw-r--r--source/kl/svx/source/tbxctrls.po2
-rw-r--r--source/kl/svx/source/toolbars.po2
-rw-r--r--source/kl/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/kl/svx/uiconfig/ui.po204
-rw-r--r--source/kl/sw/source/core/layout.po2
-rw-r--r--source/kl/sw/source/core/undo.po2
-rw-r--r--source/kl/sw/source/core/unocore.po2
-rw-r--r--source/kl/sw/source/ui/app.po2
-rw-r--r--source/kl/sw/source/ui/chrdlg.po2
-rw-r--r--source/kl/sw/source/ui/config.po2
-rw-r--r--source/kl/sw/source/ui/dbui.po2
-rw-r--r--source/kl/sw/source/ui/dialog.po2
-rw-r--r--source/kl/sw/source/ui/dochdl.po2
-rw-r--r--source/kl/sw/source/ui/docvw.po2
-rw-r--r--source/kl/sw/source/ui/envelp.po2
-rw-r--r--source/kl/sw/source/ui/fldui.po2
-rw-r--r--source/kl/sw/source/ui/fmtui.po2
-rw-r--r--source/kl/sw/source/ui/frmdlg.po2
-rw-r--r--source/kl/sw/source/ui/globdoc.po2
-rw-r--r--source/kl/sw/source/ui/index.po2
-rw-r--r--source/kl/sw/source/ui/lingu.po2
-rw-r--r--source/kl/sw/source/ui/misc.po2
-rw-r--r--source/kl/sw/source/ui/ribbar.po2
-rw-r--r--source/kl/sw/source/ui/shells.po2
-rw-r--r--source/kl/sw/source/ui/smartmenu.po2
-rw-r--r--source/kl/sw/source/ui/table.po2
-rw-r--r--source/kl/sw/source/ui/uiview.po2
-rw-r--r--source/kl/sw/source/ui/utlui.po2
-rw-r--r--source/kl/sw/source/ui/web.po2
-rw-r--r--source/kl/sw/source/ui/wrtsh.po2
-rw-r--r--source/kl/sw/uiconfig/sw/ui.po276
-rw-r--r--source/kl/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/kl/swext/mediawiki/help.po2
-rw-r--r--source/kl/swext/mediawiki/src.po2
-rw-r--r--source/kl/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/kl/sysui/desktop/share.po2
-rw-r--r--source/kl/tubes/uiconfig/ui.po2
-rw-r--r--source/kl/uui/source.po2
-rw-r--r--source/kl/vcl/qa/cppunit/builder.po2
-rw-r--r--source/kl/vcl/source/edit.po2
-rw-r--r--source/kl/vcl/source/src.po2
-rw-r--r--source/kl/vcl/uiconfig/ui.po2
-rw-r--r--source/kl/wizards/source/euro.po2
-rw-r--r--source/kl/wizards/source/formwizard.po2
-rw-r--r--source/kl/wizards/source/importwizard.po2
-rw-r--r--source/kl/wizards/source/template.po2
-rw-r--r--source/kl/xmlsecurity/source/component.po2
-rw-r--r--source/kl/xmlsecurity/source/dialogs.po2
-rw-r--r--source/km/accessibility/source/helper.po2
-rw-r--r--source/km/android/sdremote/res/values.po2
-rw-r--r--source/km/avmedia/source/framework.po2
-rw-r--r--source/km/avmedia/source/viewer.po2
-rw-r--r--source/km/basctl/source/basicide.po2
-rw-r--r--source/km/basctl/source/dlged.po2
-rw-r--r--source/km/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/km/basic/source/classes.po2
-rw-r--r--source/km/basic/source/sbx.po2
-rw-r--r--source/km/chart2/source/controller/dialogs.po2
-rw-r--r--source/km/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/connectivity/source/resource.po2
-rw-r--r--source/km/cui/source/customize.po2
-rw-r--r--source/km/cui/source/dialogs.po2
-rw-r--r--source/km/cui/source/options.po2
-rw-r--r--source/km/cui/source/tabpages.po2
-rw-r--r--source/km/cui/uiconfig/ui.po2
-rw-r--r--source/km/dbaccess/source/core/resource.po2
-rw-r--r--source/km/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/km/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/km/dbaccess/source/ui/app.po2
-rw-r--r--source/km/dbaccess/source/ui/browser.po2
-rw-r--r--source/km/dbaccess/source/ui/control.po2
-rw-r--r--source/km/dbaccess/source/ui/dlg.po2
-rw-r--r--source/km/dbaccess/source/ui/inc.po2
-rw-r--r--source/km/dbaccess/source/ui/misc.po2
-rw-r--r--source/km/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/km/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/km/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/km/dbaccess/source/ui/uno.po2
-rw-r--r--source/km/desktop/source/app.po2
-rw-r--r--source/km/desktop/source/deployment/gui.po2
-rw-r--r--source/km/desktop/source/deployment/manager.po2
-rw-r--r--source/km/desktop/source/deployment/misc.po2
-rw-r--r--source/km/desktop/source/deployment/registry.po2
-rw-r--r--source/km/desktop/source/deployment/registry/component.po2
-rw-r--r--source/km/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/km/desktop/source/deployment/registry/help.po2
-rw-r--r--source/km/desktop/source/deployment/registry/package.po2
-rw-r--r--source/km/desktop/source/deployment/registry/script.po2
-rw-r--r--source/km/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/km/desktop/source/deployment/unopkg.po2
-rw-r--r--source/km/desktop/uiconfig/ui.po2
-rw-r--r--source/km/dictionaries/af_ZA.po2
-rw-r--r--source/km/dictionaries/an_ES.po2
-rw-r--r--source/km/dictionaries/ar.po2
-rw-r--r--source/km/dictionaries/be_BY.po2
-rw-r--r--source/km/dictionaries/bg_BG.po2
-rw-r--r--source/km/dictionaries/bn_BD.po2
-rw-r--r--source/km/dictionaries/br_FR.po2
-rw-r--r--source/km/dictionaries/ca.po2
-rw-r--r--source/km/dictionaries/cs_CZ.po2
-rw-r--r--source/km/dictionaries/da_DK.po2
-rw-r--r--source/km/dictionaries/de.po2
-rw-r--r--source/km/dictionaries/el_GR.po2
-rw-r--r--source/km/dictionaries/en.po2
-rw-r--r--source/km/dictionaries/en/dialog.po2
-rw-r--r--source/km/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/km/dictionaries/es.po2
-rw-r--r--source/km/dictionaries/et_EE.po2
-rw-r--r--source/km/dictionaries/fr_FR.po2
-rw-r--r--source/km/dictionaries/gd_GB.po2
-rw-r--r--source/km/dictionaries/gl.po2
-rw-r--r--source/km/dictionaries/gu_IN.po2
-rw-r--r--source/km/dictionaries/he_IL.po2
-rw-r--r--source/km/dictionaries/hi_IN.po2
-rw-r--r--source/km/dictionaries/hr_HR.po2
-rw-r--r--source/km/dictionaries/hu_HU.po2
-rw-r--r--source/km/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/km/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/km/dictionaries/it_IT.po2
-rw-r--r--source/km/dictionaries/ku_TR.po2
-rw-r--r--source/km/dictionaries/lt_LT.po2
-rw-r--r--source/km/dictionaries/lv_LV.po2
-rw-r--r--source/km/dictionaries/ne_NP.po2
-rw-r--r--source/km/dictionaries/nl_NL.po2
-rw-r--r--source/km/dictionaries/no.po2
-rw-r--r--source/km/dictionaries/oc_FR.po2
-rw-r--r--source/km/dictionaries/pl_PL.po2
-rw-r--r--source/km/dictionaries/pt_BR.po2
-rw-r--r--source/km/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/km/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/km/dictionaries/pt_PT.po2
-rw-r--r--source/km/dictionaries/ro.po2
-rw-r--r--source/km/dictionaries/ru_RU.po2
-rw-r--r--source/km/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/km/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/km/dictionaries/si_LK.po2
-rw-r--r--source/km/dictionaries/sk_SK.po2
-rw-r--r--source/km/dictionaries/sl_SI.po2
-rw-r--r--source/km/dictionaries/sr.po2
-rw-r--r--source/km/dictionaries/sv_SE.po2
-rw-r--r--source/km/dictionaries/sw_TZ.po2
-rw-r--r--source/km/dictionaries/te_IN.po2
-rw-r--r--source/km/dictionaries/th_TH.po2
-rw-r--r--source/km/dictionaries/uk_UA.po2
-rw-r--r--source/km/dictionaries/vi.po2
-rw-r--r--source/km/dictionaries/zu_ZA.po2
-rw-r--r--source/km/editeng/source/accessibility.po2
-rw-r--r--source/km/editeng/source/editeng.po2
-rw-r--r--source/km/editeng/source/items.po2
-rw-r--r--source/km/editeng/source/misc.po2
-rw-r--r--source/km/editeng/source/outliner.po2
-rw-r--r--source/km/extensions/source/abpilot.po2
-rw-r--r--source/km/extensions/source/bibliography.po2
-rw-r--r--source/km/extensions/source/dbpilots.po2
-rw-r--r--source/km/extensions/source/propctrlr.po2
-rw-r--r--source/km/extensions/source/scanner.po2
-rw-r--r--source/km/extensions/source/update/check.po2
-rw-r--r--source/km/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/km/filter/source/config/fragments/filters.po2
-rw-r--r--source/km/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/km/filter/source/config/fragments/types.po2
-rw-r--r--source/km/filter/source/flash.po2
-rw-r--r--source/km/filter/source/graphicfilter/eps.po2
-rw-r--r--source/km/filter/source/pdf.po2
-rw-r--r--source/km/filter/source/t602.po2
-rw-r--r--source/km/filter/source/xsltdialog.po2
-rw-r--r--source/km/filter/uiconfig/ui.po2
-rw-r--r--source/km/forms/source/resource.po2
-rw-r--r--source/km/formula/source/core/resource.po38
-rw-r--r--source/km/formula/source/ui/dlg.po2
-rw-r--r--source/km/fpicker/source/office.po2
-rw-r--r--source/km/framework/source/classes.po2
-rw-r--r--source/km/framework/source/services.po2
-rw-r--r--source/km/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/km/librelogo/source/pythonpath.po2
-rw-r--r--source/km/mysqlc/source.po2
-rw-r--r--source/km/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/km/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/km/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/km/nlpsolver/src/locale.po2
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/km/padmin/source.po2
-rw-r--r--source/km/readlicense_oo/docs.po2
-rw-r--r--source/km/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/km/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/km/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/km/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/km/reportbuilder/util.po2
-rw-r--r--source/km/reportdesign/source/core/resource.po2
-rw-r--r--source/km/reportdesign/source/ui/dlg.po2
-rw-r--r--source/km/reportdesign/source/ui/inspection.po2
-rw-r--r--source/km/reportdesign/source/ui/report.po2
-rw-r--r--source/km/sc/source/core/src.po2
-rw-r--r--source/km/sc/source/ui/cctrl.po2
-rw-r--r--source/km/sc/source/ui/dbgui.po2
-rw-r--r--source/km/sc/source/ui/docshell.po2
-rw-r--r--source/km/sc/source/ui/drawfunc.po2
-rw-r--r--source/km/sc/source/ui/formdlg.po2
-rw-r--r--source/km/sc/source/ui/miscdlgs.po2
-rw-r--r--source/km/sc/source/ui/navipi.po2
-rw-r--r--source/km/sc/source/ui/optdlg.po2
-rw-r--r--source/km/sc/source/ui/pagedlg.po2
-rw-r--r--source/km/sc/source/ui/src.po383
-rw-r--r--source/km/sc/source/ui/styleui.po2
-rw-r--r--source/km/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/km/scaddins/source/analysis.po2
-rw-r--r--source/km/scaddins/source/datefunc.po2
-rw-r--r--source/km/scaddins/source/pricing.po2
-rw-r--r--source/km/sccomp/source/solver.po2
-rw-r--r--source/km/scp2/source/accessories.po2
-rw-r--r--source/km/scp2/source/activex.po2
-rw-r--r--source/km/scp2/source/base.po2
-rw-r--r--source/km/scp2/source/calc.po2
-rw-r--r--source/km/scp2/source/draw.po2
-rw-r--r--source/km/scp2/source/extensions.po2
-rw-r--r--source/km/scp2/source/gnome.po2
-rw-r--r--source/km/scp2/source/graphicfilter.po2
-rw-r--r--source/km/scp2/source/impress.po2
-rw-r--r--source/km/scp2/source/javafilter.po2
-rw-r--r--source/km/scp2/source/kde.po2
-rw-r--r--source/km/scp2/source/math.po2
-rw-r--r--source/km/scp2/source/onlineupdate.po2
-rw-r--r--source/km/scp2/source/ooo.po2
-rw-r--r--source/km/scp2/source/python.po18
-rw-r--r--source/km/scp2/source/quickstart.po2
-rw-r--r--source/km/scp2/source/sdkoo.po2
-rw-r--r--source/km/scp2/source/smoketest.po2
-rw-r--r--source/km/scp2/source/stdlibs.po2
-rw-r--r--source/km/scp2/source/tde.po2
-rw-r--r--source/km/scp2/source/winexplorerext.po2
-rw-r--r--source/km/scp2/source/writer.po2
-rw-r--r--source/km/scp2/source/xsltfilter.po2
-rw-r--r--source/km/sd/source/core.po2
-rw-r--r--source/km/sd/source/filter/html.po2
-rw-r--r--source/km/sd/source/ui/accessibility.po2
-rw-r--r--source/km/sd/source/ui/animations.po2
-rw-r--r--source/km/sd/source/ui/annotations.po2
-rw-r--r--source/km/sd/source/ui/app.po2
-rw-r--r--source/km/sd/source/ui/dlg.po2
-rw-r--r--source/km/sd/source/ui/slideshow.po2
-rw-r--r--source/km/sd/source/ui/table.po2
-rw-r--r--source/km/sd/source/ui/view.po2
-rw-r--r--source/km/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/km/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/km/sdext/source/minimizer.po2
-rw-r--r--source/km/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/km/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/km/setup_native/source/mac.po2
-rw-r--r--source/km/sfx2/source/appl.po2
-rw-r--r--source/km/sfx2/source/bastyp.po2
-rw-r--r--source/km/sfx2/source/control.po23
-rw-r--r--source/km/sfx2/source/dialog.po46
-rw-r--r--source/km/sfx2/source/doc.po126
-rw-r--r--source/km/sfx2/source/menu.po2
-rw-r--r--source/km/sfx2/source/view.po2
-rw-r--r--source/km/sfx2/uiconfig/ui.po2
-rw-r--r--source/km/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/km/starmath/source.po2
-rw-r--r--source/km/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/km/svl/source/items.po2
-rw-r--r--source/km/svl/source/misc.po2
-rw-r--r--source/km/svtools/source/contnr.po2
-rw-r--r--source/km/svtools/source/control.po2
-rw-r--r--source/km/svtools/source/dialogs.po2
-rw-r--r--source/km/svtools/source/java.po2
-rw-r--r--source/km/svtools/source/misc.po2
-rw-r--r--source/km/svtools/source/toolpanel.po2
-rw-r--r--source/km/svtools/uiconfig/ui.po53
-rw-r--r--source/km/svx/inc.po2
-rw-r--r--source/km/svx/source/accessibility.po2
-rw-r--r--source/km/svx/source/core.po2
-rw-r--r--source/km/svx/source/dialog.po225
-rw-r--r--source/km/svx/source/engine3d.po2
-rw-r--r--source/km/svx/source/fmcomp.po2
-rw-r--r--source/km/svx/source/form.po2
-rw-r--r--source/km/svx/source/gallery2.po2
-rw-r--r--source/km/svx/source/items.po2
-rw-r--r--source/km/svx/source/src.po2
-rw-r--r--source/km/svx/source/stbctrls.po2
-rw-r--r--source/km/svx/source/svdraw.po2
-rw-r--r--source/km/svx/source/table.po2
-rw-r--r--source/km/svx/source/tbxctrls.po2
-rw-r--r--source/km/svx/source/toolbars.po2
-rw-r--r--source/km/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/km/svx/uiconfig/ui.po204
-rw-r--r--source/km/sw/source/core/layout.po2
-rw-r--r--source/km/sw/source/core/undo.po2
-rw-r--r--source/km/sw/source/core/unocore.po2
-rw-r--r--source/km/sw/source/ui/app.po2
-rw-r--r--source/km/sw/source/ui/chrdlg.po2
-rw-r--r--source/km/sw/source/ui/config.po2
-rw-r--r--source/km/sw/source/ui/dbui.po2
-rw-r--r--source/km/sw/source/ui/dialog.po2
-rw-r--r--source/km/sw/source/ui/dochdl.po2
-rw-r--r--source/km/sw/source/ui/docvw.po2
-rw-r--r--source/km/sw/source/ui/envelp.po2
-rw-r--r--source/km/sw/source/ui/fldui.po2
-rw-r--r--source/km/sw/source/ui/fmtui.po2
-rw-r--r--source/km/sw/source/ui/frmdlg.po2
-rw-r--r--source/km/sw/source/ui/globdoc.po2
-rw-r--r--source/km/sw/source/ui/index.po2
-rw-r--r--source/km/sw/source/ui/lingu.po2
-rw-r--r--source/km/sw/source/ui/misc.po2
-rw-r--r--source/km/sw/source/ui/ribbar.po2
-rw-r--r--source/km/sw/source/ui/shells.po2
-rw-r--r--source/km/sw/source/ui/smartmenu.po2
-rw-r--r--source/km/sw/source/ui/table.po2
-rw-r--r--source/km/sw/source/ui/uiview.po2
-rw-r--r--source/km/sw/source/ui/utlui.po2
-rw-r--r--source/km/sw/source/ui/web.po2
-rw-r--r--source/km/sw/source/ui/wrtsh.po2
-rw-r--r--source/km/sw/uiconfig/sw/ui.po282
-rw-r--r--source/km/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/km/swext/mediawiki/help.po2
-rw-r--r--source/km/swext/mediawiki/src.po2
-rw-r--r--source/km/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/km/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/km/sysui/desktop/share.po2
-rw-r--r--source/km/tubes/uiconfig/ui.po2
-rw-r--r--source/km/uui/source.po2
-rw-r--r--source/km/vcl/qa/cppunit/builder.po2
-rw-r--r--source/km/vcl/source/edit.po2
-rw-r--r--source/km/vcl/source/src.po2
-rw-r--r--source/km/vcl/uiconfig/ui.po2
-rw-r--r--source/km/wizards/source/euro.po2
-rw-r--r--source/km/wizards/source/formwizard.po2
-rw-r--r--source/km/wizards/source/importwizard.po2
-rw-r--r--source/km/wizards/source/template.po2
-rw-r--r--source/km/xmlsecurity/source/component.po2
-rw-r--r--source/km/xmlsecurity/source/dialogs.po2
-rw-r--r--source/kn/accessibility/source/helper.po2
-rw-r--r--source/kn/android/sdremote/res/values.po2
-rw-r--r--source/kn/avmedia/source/framework.po2
-rw-r--r--source/kn/avmedia/source/viewer.po2
-rw-r--r--source/kn/basctl/source/basicide.po2
-rw-r--r--source/kn/basctl/source/dlged.po2
-rw-r--r--source/kn/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/kn/basic/source/classes.po2
-rw-r--r--source/kn/basic/source/sbx.po2
-rw-r--r--source/kn/chart2/source/controller/dialogs.po2
-rw-r--r--source/kn/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/connectivity/source/resource.po2
-rw-r--r--source/kn/cui/source/customize.po2
-rw-r--r--source/kn/cui/source/dialogs.po2
-rw-r--r--source/kn/cui/source/options.po2
-rw-r--r--source/kn/cui/source/tabpages.po2
-rw-r--r--source/kn/cui/uiconfig/ui.po2
-rw-r--r--source/kn/dbaccess/source/core/resource.po2
-rw-r--r--source/kn/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/kn/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/kn/dbaccess/source/ui/app.po2
-rw-r--r--source/kn/dbaccess/source/ui/browser.po2
-rw-r--r--source/kn/dbaccess/source/ui/control.po2
-rw-r--r--source/kn/dbaccess/source/ui/dlg.po2
-rw-r--r--source/kn/dbaccess/source/ui/inc.po2
-rw-r--r--source/kn/dbaccess/source/ui/misc.po2
-rw-r--r--source/kn/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/kn/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/kn/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/kn/dbaccess/source/ui/uno.po2
-rw-r--r--source/kn/desktop/source/app.po2
-rw-r--r--source/kn/desktop/source/deployment/gui.po2
-rw-r--r--source/kn/desktop/source/deployment/manager.po2
-rw-r--r--source/kn/desktop/source/deployment/misc.po2
-rw-r--r--source/kn/desktop/source/deployment/registry.po2
-rw-r--r--source/kn/desktop/source/deployment/registry/component.po2
-rw-r--r--source/kn/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/kn/desktop/source/deployment/registry/help.po2
-rw-r--r--source/kn/desktop/source/deployment/registry/package.po2
-rw-r--r--source/kn/desktop/source/deployment/registry/script.po2
-rw-r--r--source/kn/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/kn/desktop/source/deployment/unopkg.po2
-rw-r--r--source/kn/desktop/uiconfig/ui.po2
-rw-r--r--source/kn/dictionaries/af_ZA.po2
-rw-r--r--source/kn/dictionaries/an_ES.po2
-rw-r--r--source/kn/dictionaries/ar.po2
-rw-r--r--source/kn/dictionaries/be_BY.po2
-rw-r--r--source/kn/dictionaries/bg_BG.po2
-rw-r--r--source/kn/dictionaries/bn_BD.po2
-rw-r--r--source/kn/dictionaries/br_FR.po2
-rw-r--r--source/kn/dictionaries/ca.po2
-rw-r--r--source/kn/dictionaries/cs_CZ.po2
-rw-r--r--source/kn/dictionaries/da_DK.po2
-rw-r--r--source/kn/dictionaries/de.po2
-rw-r--r--source/kn/dictionaries/el_GR.po2
-rw-r--r--source/kn/dictionaries/en.po2
-rw-r--r--source/kn/dictionaries/en/dialog.po2
-rw-r--r--source/kn/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kn/dictionaries/es.po2
-rw-r--r--source/kn/dictionaries/et_EE.po2
-rw-r--r--source/kn/dictionaries/fr_FR.po2
-rw-r--r--source/kn/dictionaries/gd_GB.po2
-rw-r--r--source/kn/dictionaries/gl.po2
-rw-r--r--source/kn/dictionaries/gu_IN.po2
-rw-r--r--source/kn/dictionaries/he_IL.po2
-rw-r--r--source/kn/dictionaries/hi_IN.po2
-rw-r--r--source/kn/dictionaries/hr_HR.po2
-rw-r--r--source/kn/dictionaries/hu_HU.po2
-rw-r--r--source/kn/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/kn/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kn/dictionaries/it_IT.po2
-rw-r--r--source/kn/dictionaries/ku_TR.po2
-rw-r--r--source/kn/dictionaries/lt_LT.po2
-rw-r--r--source/kn/dictionaries/lv_LV.po2
-rw-r--r--source/kn/dictionaries/ne_NP.po2
-rw-r--r--source/kn/dictionaries/nl_NL.po2
-rw-r--r--source/kn/dictionaries/no.po2
-rw-r--r--source/kn/dictionaries/oc_FR.po2
-rw-r--r--source/kn/dictionaries/pl_PL.po2
-rw-r--r--source/kn/dictionaries/pt_BR.po2
-rw-r--r--source/kn/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/kn/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kn/dictionaries/pt_PT.po2
-rw-r--r--source/kn/dictionaries/ro.po2
-rw-r--r--source/kn/dictionaries/ru_RU.po2
-rw-r--r--source/kn/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/kn/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kn/dictionaries/si_LK.po2
-rw-r--r--source/kn/dictionaries/sk_SK.po2
-rw-r--r--source/kn/dictionaries/sl_SI.po2
-rw-r--r--source/kn/dictionaries/sr.po2
-rw-r--r--source/kn/dictionaries/sv_SE.po2
-rw-r--r--source/kn/dictionaries/sw_TZ.po2
-rw-r--r--source/kn/dictionaries/te_IN.po2
-rw-r--r--source/kn/dictionaries/th_TH.po2
-rw-r--r--source/kn/dictionaries/uk_UA.po2
-rw-r--r--source/kn/dictionaries/vi.po2
-rw-r--r--source/kn/dictionaries/zu_ZA.po2
-rw-r--r--source/kn/editeng/source/accessibility.po2
-rw-r--r--source/kn/editeng/source/editeng.po2
-rw-r--r--source/kn/editeng/source/items.po2
-rw-r--r--source/kn/editeng/source/misc.po2
-rw-r--r--source/kn/editeng/source/outliner.po2
-rw-r--r--source/kn/extensions/source/abpilot.po2
-rw-r--r--source/kn/extensions/source/bibliography.po2
-rw-r--r--source/kn/extensions/source/dbpilots.po2
-rw-r--r--source/kn/extensions/source/propctrlr.po2
-rw-r--r--source/kn/extensions/source/scanner.po2
-rw-r--r--source/kn/extensions/source/update/check.po2
-rw-r--r--source/kn/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/kn/filter/source/config/fragments/filters.po2
-rw-r--r--source/kn/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/kn/filter/source/config/fragments/types.po2
-rw-r--r--source/kn/filter/source/flash.po2
-rw-r--r--source/kn/filter/source/graphicfilter/eps.po2
-rw-r--r--source/kn/filter/source/pdf.po2
-rw-r--r--source/kn/filter/source/t602.po2
-rw-r--r--source/kn/filter/source/xsltdialog.po2
-rw-r--r--source/kn/filter/uiconfig/ui.po2
-rw-r--r--source/kn/forms/source/resource.po2
-rw-r--r--source/kn/formula/source/core/resource.po38
-rw-r--r--source/kn/formula/source/ui/dlg.po2
-rw-r--r--source/kn/fpicker/source/office.po2
-rw-r--r--source/kn/framework/source/classes.po2
-rw-r--r--source/kn/framework/source/services.po2
-rw-r--r--source/kn/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/kn/librelogo/source/pythonpath.po2
-rw-r--r--source/kn/mysqlc/source.po2
-rw-r--r--source/kn/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kn/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/kn/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/kn/nlpsolver/src/locale.po2
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/kn/padmin/source.po2
-rw-r--r--source/kn/readlicense_oo/docs.po2
-rw-r--r--source/kn/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/kn/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kn/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/kn/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/kn/reportbuilder/util.po2
-rw-r--r--source/kn/reportdesign/source/core/resource.po2
-rw-r--r--source/kn/reportdesign/source/ui/dlg.po2
-rw-r--r--source/kn/reportdesign/source/ui/inspection.po2
-rw-r--r--source/kn/reportdesign/source/ui/report.po2
-rw-r--r--source/kn/sc/source/core/src.po2
-rw-r--r--source/kn/sc/source/ui/cctrl.po2
-rw-r--r--source/kn/sc/source/ui/dbgui.po2
-rw-r--r--source/kn/sc/source/ui/docshell.po2
-rw-r--r--source/kn/sc/source/ui/drawfunc.po2
-rw-r--r--source/kn/sc/source/ui/formdlg.po2
-rw-r--r--source/kn/sc/source/ui/miscdlgs.po2
-rw-r--r--source/kn/sc/source/ui/navipi.po2
-rw-r--r--source/kn/sc/source/ui/optdlg.po2
-rw-r--r--source/kn/sc/source/ui/pagedlg.po2
-rw-r--r--source/kn/sc/source/ui/src.po383
-rw-r--r--source/kn/sc/source/ui/styleui.po2
-rw-r--r--source/kn/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/kn/scaddins/source/analysis.po2
-rw-r--r--source/kn/scaddins/source/datefunc.po2
-rw-r--r--source/kn/scaddins/source/pricing.po2
-rw-r--r--source/kn/sccomp/source/solver.po2
-rw-r--r--source/kn/scp2/source/accessories.po2
-rw-r--r--source/kn/scp2/source/activex.po2
-rw-r--r--source/kn/scp2/source/base.po2
-rw-r--r--source/kn/scp2/source/calc.po2
-rw-r--r--source/kn/scp2/source/draw.po2
-rw-r--r--source/kn/scp2/source/extensions.po2
-rw-r--r--source/kn/scp2/source/gnome.po2
-rw-r--r--source/kn/scp2/source/graphicfilter.po2
-rw-r--r--source/kn/scp2/source/impress.po2
-rw-r--r--source/kn/scp2/source/javafilter.po2
-rw-r--r--source/kn/scp2/source/kde.po2
-rw-r--r--source/kn/scp2/source/math.po2
-rw-r--r--source/kn/scp2/source/onlineupdate.po2
-rw-r--r--source/kn/scp2/source/ooo.po2
-rw-r--r--source/kn/scp2/source/python.po18
-rw-r--r--source/kn/scp2/source/quickstart.po2
-rw-r--r--source/kn/scp2/source/sdkoo.po2
-rw-r--r--source/kn/scp2/source/smoketest.po2
-rw-r--r--source/kn/scp2/source/stdlibs.po2
-rw-r--r--source/kn/scp2/source/tde.po2
-rw-r--r--source/kn/scp2/source/winexplorerext.po2
-rw-r--r--source/kn/scp2/source/writer.po2
-rw-r--r--source/kn/scp2/source/xsltfilter.po2
-rw-r--r--source/kn/sd/source/core.po2
-rw-r--r--source/kn/sd/source/filter/html.po2
-rw-r--r--source/kn/sd/source/ui/accessibility.po2
-rw-r--r--source/kn/sd/source/ui/animations.po2
-rw-r--r--source/kn/sd/source/ui/annotations.po2
-rw-r--r--source/kn/sd/source/ui/app.po2
-rw-r--r--source/kn/sd/source/ui/dlg.po2
-rw-r--r--source/kn/sd/source/ui/slideshow.po2
-rw-r--r--source/kn/sd/source/ui/table.po2
-rw-r--r--source/kn/sd/source/ui/view.po2
-rw-r--r--source/kn/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/kn/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/kn/sdext/source/minimizer.po2
-rw-r--r--source/kn/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kn/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/kn/setup_native/source/mac.po2
-rw-r--r--source/kn/sfx2/source/appl.po2
-rw-r--r--source/kn/sfx2/source/bastyp.po2
-rw-r--r--source/kn/sfx2/source/control.po23
-rw-r--r--source/kn/sfx2/source/dialog.po46
-rw-r--r--source/kn/sfx2/source/doc.po126
-rw-r--r--source/kn/sfx2/source/menu.po2
-rw-r--r--source/kn/sfx2/source/view.po2
-rw-r--r--source/kn/sfx2/uiconfig/ui.po2
-rw-r--r--source/kn/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/kn/starmath/source.po2
-rw-r--r--source/kn/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/kn/svl/source/items.po2
-rw-r--r--source/kn/svl/source/misc.po2
-rw-r--r--source/kn/svtools/source/contnr.po2
-rw-r--r--source/kn/svtools/source/control.po2
-rw-r--r--source/kn/svtools/source/dialogs.po2
-rw-r--r--source/kn/svtools/source/java.po2
-rw-r--r--source/kn/svtools/source/misc.po2
-rw-r--r--source/kn/svtools/source/toolpanel.po2
-rw-r--r--source/kn/svtools/uiconfig/ui.po53
-rw-r--r--source/kn/svx/inc.po2
-rw-r--r--source/kn/svx/source/accessibility.po2
-rw-r--r--source/kn/svx/source/core.po2
-rw-r--r--source/kn/svx/source/dialog.po225
-rw-r--r--source/kn/svx/source/engine3d.po2
-rw-r--r--source/kn/svx/source/fmcomp.po2
-rw-r--r--source/kn/svx/source/form.po2
-rw-r--r--source/kn/svx/source/gallery2.po2
-rw-r--r--source/kn/svx/source/items.po2
-rw-r--r--source/kn/svx/source/src.po2
-rw-r--r--source/kn/svx/source/stbctrls.po2
-rw-r--r--source/kn/svx/source/svdraw.po2
-rw-r--r--source/kn/svx/source/table.po2
-rw-r--r--source/kn/svx/source/tbxctrls.po2
-rw-r--r--source/kn/svx/source/toolbars.po2
-rw-r--r--source/kn/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/kn/svx/uiconfig/ui.po204
-rw-r--r--source/kn/sw/source/core/layout.po2
-rw-r--r--source/kn/sw/source/core/undo.po2
-rw-r--r--source/kn/sw/source/core/unocore.po2
-rw-r--r--source/kn/sw/source/ui/app.po2
-rw-r--r--source/kn/sw/source/ui/chrdlg.po2
-rw-r--r--source/kn/sw/source/ui/config.po2
-rw-r--r--source/kn/sw/source/ui/dbui.po2
-rw-r--r--source/kn/sw/source/ui/dialog.po2
-rw-r--r--source/kn/sw/source/ui/dochdl.po2
-rw-r--r--source/kn/sw/source/ui/docvw.po2
-rw-r--r--source/kn/sw/source/ui/envelp.po2
-rw-r--r--source/kn/sw/source/ui/fldui.po2
-rw-r--r--source/kn/sw/source/ui/fmtui.po2
-rw-r--r--source/kn/sw/source/ui/frmdlg.po2
-rw-r--r--source/kn/sw/source/ui/globdoc.po2
-rw-r--r--source/kn/sw/source/ui/index.po2
-rw-r--r--source/kn/sw/source/ui/lingu.po2
-rw-r--r--source/kn/sw/source/ui/misc.po2
-rw-r--r--source/kn/sw/source/ui/ribbar.po2
-rw-r--r--source/kn/sw/source/ui/shells.po2
-rw-r--r--source/kn/sw/source/ui/smartmenu.po2
-rw-r--r--source/kn/sw/source/ui/table.po2
-rw-r--r--source/kn/sw/source/ui/uiview.po2
-rw-r--r--source/kn/sw/source/ui/utlui.po2
-rw-r--r--source/kn/sw/source/ui/web.po2
-rw-r--r--source/kn/sw/source/ui/wrtsh.po2
-rw-r--r--source/kn/sw/uiconfig/sw/ui.po281
-rw-r--r--source/kn/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/kn/swext/mediawiki/help.po2
-rw-r--r--source/kn/swext/mediawiki/src.po2
-rw-r--r--source/kn/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kn/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/kn/sysui/desktop/share.po2
-rw-r--r--source/kn/tubes/uiconfig/ui.po2
-rw-r--r--source/kn/uui/source.po2
-rw-r--r--source/kn/vcl/qa/cppunit/builder.po2
-rw-r--r--source/kn/vcl/source/edit.po2
-rw-r--r--source/kn/vcl/source/src.po2
-rw-r--r--source/kn/vcl/uiconfig/ui.po2
-rw-r--r--source/kn/wizards/source/euro.po2
-rw-r--r--source/kn/wizards/source/formwizard.po2
-rw-r--r--source/kn/wizards/source/importwizard.po2
-rw-r--r--source/kn/wizards/source/template.po2
-rw-r--r--source/kn/xmlsecurity/source/component.po2
-rw-r--r--source/kn/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ko/accessibility/source/helper.po2
-rw-r--r--source/ko/android/sdremote/res/values.po2
-rw-r--r--source/ko/avmedia/source/framework.po2
-rw-r--r--source/ko/avmedia/source/viewer.po2
-rw-r--r--source/ko/basctl/source/basicide.po2
-rw-r--r--source/ko/basctl/source/dlged.po2
-rw-r--r--source/ko/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ko/basic/source/classes.po2
-rw-r--r--source/ko/basic/source/sbx.po2
-rw-r--r--source/ko/chart2/source/controller/dialogs.po2
-rw-r--r--source/ko/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/connectivity/source/resource.po2
-rw-r--r--source/ko/cui/source/customize.po2
-rw-r--r--source/ko/cui/source/dialogs.po2
-rw-r--r--source/ko/cui/source/options.po2
-rw-r--r--source/ko/cui/source/tabpages.po2
-rw-r--r--source/ko/cui/uiconfig/ui.po2
-rw-r--r--source/ko/dbaccess/source/core/resource.po2
-rw-r--r--source/ko/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ko/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ko/dbaccess/source/ui/app.po2
-rw-r--r--source/ko/dbaccess/source/ui/browser.po2
-rw-r--r--source/ko/dbaccess/source/ui/control.po2
-rw-r--r--source/ko/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ko/dbaccess/source/ui/inc.po2
-rw-r--r--source/ko/dbaccess/source/ui/misc.po2
-rw-r--r--source/ko/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ko/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ko/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ko/dbaccess/source/ui/uno.po2
-rw-r--r--source/ko/desktop/source/app.po2
-rw-r--r--source/ko/desktop/source/deployment/gui.po2
-rw-r--r--source/ko/desktop/source/deployment/manager.po2
-rw-r--r--source/ko/desktop/source/deployment/misc.po2
-rw-r--r--source/ko/desktop/source/deployment/registry.po2
-rw-r--r--source/ko/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ko/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ko/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ko/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ko/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ko/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ko/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ko/desktop/uiconfig/ui.po2
-rw-r--r--source/ko/dictionaries/af_ZA.po2
-rw-r--r--source/ko/dictionaries/an_ES.po2
-rw-r--r--source/ko/dictionaries/ar.po2
-rw-r--r--source/ko/dictionaries/be_BY.po2
-rw-r--r--source/ko/dictionaries/bg_BG.po2
-rw-r--r--source/ko/dictionaries/bn_BD.po2
-rw-r--r--source/ko/dictionaries/br_FR.po2
-rw-r--r--source/ko/dictionaries/ca.po2
-rw-r--r--source/ko/dictionaries/cs_CZ.po2
-rw-r--r--source/ko/dictionaries/da_DK.po2
-rw-r--r--source/ko/dictionaries/de.po2
-rw-r--r--source/ko/dictionaries/el_GR.po2
-rw-r--r--source/ko/dictionaries/en.po2
-rw-r--r--source/ko/dictionaries/en/dialog.po2
-rw-r--r--source/ko/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ko/dictionaries/es.po2
-rw-r--r--source/ko/dictionaries/et_EE.po2
-rw-r--r--source/ko/dictionaries/fr_FR.po2
-rw-r--r--source/ko/dictionaries/gd_GB.po2
-rw-r--r--source/ko/dictionaries/gl.po2
-rw-r--r--source/ko/dictionaries/gu_IN.po2
-rw-r--r--source/ko/dictionaries/he_IL.po2
-rw-r--r--source/ko/dictionaries/hi_IN.po2
-rw-r--r--source/ko/dictionaries/hr_HR.po2
-rw-r--r--source/ko/dictionaries/hu_HU.po2
-rw-r--r--source/ko/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ko/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ko/dictionaries/it_IT.po2
-rw-r--r--source/ko/dictionaries/ku_TR.po2
-rw-r--r--source/ko/dictionaries/lt_LT.po2
-rw-r--r--source/ko/dictionaries/lv_LV.po2
-rw-r--r--source/ko/dictionaries/ne_NP.po2
-rw-r--r--source/ko/dictionaries/nl_NL.po2
-rw-r--r--source/ko/dictionaries/no.po2
-rw-r--r--source/ko/dictionaries/oc_FR.po2
-rw-r--r--source/ko/dictionaries/pl_PL.po2
-rw-r--r--source/ko/dictionaries/pt_BR.po2
-rw-r--r--source/ko/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ko/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ko/dictionaries/pt_PT.po2
-rw-r--r--source/ko/dictionaries/ro.po2
-rw-r--r--source/ko/dictionaries/ru_RU.po2
-rw-r--r--source/ko/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ko/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ko/dictionaries/si_LK.po2
-rw-r--r--source/ko/dictionaries/sk_SK.po2
-rw-r--r--source/ko/dictionaries/sl_SI.po2
-rw-r--r--source/ko/dictionaries/sr.po2
-rw-r--r--source/ko/dictionaries/sv_SE.po2
-rw-r--r--source/ko/dictionaries/sw_TZ.po2
-rw-r--r--source/ko/dictionaries/te_IN.po2
-rw-r--r--source/ko/dictionaries/th_TH.po2
-rw-r--r--source/ko/dictionaries/uk_UA.po2
-rw-r--r--source/ko/dictionaries/vi.po2
-rw-r--r--source/ko/dictionaries/zu_ZA.po2
-rw-r--r--source/ko/editeng/source/accessibility.po2
-rw-r--r--source/ko/editeng/source/editeng.po2
-rw-r--r--source/ko/editeng/source/items.po2
-rw-r--r--source/ko/editeng/source/misc.po2
-rw-r--r--source/ko/editeng/source/outliner.po2
-rw-r--r--source/ko/extensions/source/abpilot.po2
-rw-r--r--source/ko/extensions/source/bibliography.po2
-rw-r--r--source/ko/extensions/source/dbpilots.po2
-rw-r--r--source/ko/extensions/source/propctrlr.po2
-rw-r--r--source/ko/extensions/source/scanner.po2
-rw-r--r--source/ko/extensions/source/update/check.po2
-rw-r--r--source/ko/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ko/filter/source/config/fragments/filters.po2
-rw-r--r--source/ko/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ko/filter/source/config/fragments/types.po2
-rw-r--r--source/ko/filter/source/flash.po2
-rw-r--r--source/ko/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ko/filter/source/pdf.po2
-rw-r--r--source/ko/filter/source/t602.po2
-rw-r--r--source/ko/filter/source/xsltdialog.po2
-rw-r--r--source/ko/filter/uiconfig/ui.po2
-rw-r--r--source/ko/forms/source/resource.po2
-rw-r--r--source/ko/formula/source/core/resource.po38
-rw-r--r--source/ko/formula/source/ui/dlg.po2
-rw-r--r--source/ko/fpicker/source/office.po2
-rw-r--r--source/ko/framework/source/classes.po2
-rw-r--r--source/ko/framework/source/services.po2
-rw-r--r--source/ko/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/ko/librelogo/source/pythonpath.po2
-rw-r--r--source/ko/mysqlc/source.po2
-rw-r--r--source/ko/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ko/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ko/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ko/nlpsolver/src/locale.po2
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/ko/padmin/source.po2
-rw-r--r--source/ko/readlicense_oo/docs.po2
-rw-r--r--source/ko/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ko/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ko/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ko/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ko/reportbuilder/util.po2
-rw-r--r--source/ko/reportdesign/source/core/resource.po2
-rw-r--r--source/ko/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ko/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ko/reportdesign/source/ui/report.po2
-rw-r--r--source/ko/sc/source/core/src.po2
-rw-r--r--source/ko/sc/source/ui/cctrl.po2
-rw-r--r--source/ko/sc/source/ui/dbgui.po2
-rw-r--r--source/ko/sc/source/ui/docshell.po2
-rw-r--r--source/ko/sc/source/ui/drawfunc.po2
-rw-r--r--source/ko/sc/source/ui/formdlg.po2
-rw-r--r--source/ko/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ko/sc/source/ui/navipi.po2
-rw-r--r--source/ko/sc/source/ui/optdlg.po2
-rw-r--r--source/ko/sc/source/ui/pagedlg.po2
-rw-r--r--source/ko/sc/source/ui/src.po383
-rw-r--r--source/ko/sc/source/ui/styleui.po2
-rw-r--r--source/ko/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/ko/scaddins/source/analysis.po2
-rw-r--r--source/ko/scaddins/source/datefunc.po2
-rw-r--r--source/ko/scaddins/source/pricing.po2
-rw-r--r--source/ko/sccomp/source/solver.po2
-rw-r--r--source/ko/scp2/source/accessories.po2
-rw-r--r--source/ko/scp2/source/activex.po2
-rw-r--r--source/ko/scp2/source/base.po2
-rw-r--r--source/ko/scp2/source/calc.po2
-rw-r--r--source/ko/scp2/source/draw.po2
-rw-r--r--source/ko/scp2/source/extensions.po2
-rw-r--r--source/ko/scp2/source/gnome.po2
-rw-r--r--source/ko/scp2/source/graphicfilter.po2
-rw-r--r--source/ko/scp2/source/impress.po2
-rw-r--r--source/ko/scp2/source/javafilter.po2
-rw-r--r--source/ko/scp2/source/kde.po2
-rw-r--r--source/ko/scp2/source/math.po2
-rw-r--r--source/ko/scp2/source/onlineupdate.po2
-rw-r--r--source/ko/scp2/source/ooo.po2
-rw-r--r--source/ko/scp2/source/python.po18
-rw-r--r--source/ko/scp2/source/quickstart.po2
-rw-r--r--source/ko/scp2/source/sdkoo.po2
-rw-r--r--source/ko/scp2/source/smoketest.po2
-rw-r--r--source/ko/scp2/source/stdlibs.po2
-rw-r--r--source/ko/scp2/source/tde.po2
-rw-r--r--source/ko/scp2/source/winexplorerext.po2
-rw-r--r--source/ko/scp2/source/writer.po2
-rw-r--r--source/ko/scp2/source/xsltfilter.po2
-rw-r--r--source/ko/sd/source/core.po2
-rw-r--r--source/ko/sd/source/filter/html.po2
-rw-r--r--source/ko/sd/source/ui/accessibility.po2
-rw-r--r--source/ko/sd/source/ui/animations.po2
-rw-r--r--source/ko/sd/source/ui/annotations.po2
-rw-r--r--source/ko/sd/source/ui/app.po2
-rw-r--r--source/ko/sd/source/ui/dlg.po2
-rw-r--r--source/ko/sd/source/ui/slideshow.po2
-rw-r--r--source/ko/sd/source/ui/table.po2
-rw-r--r--source/ko/sd/source/ui/view.po2
-rw-r--r--source/ko/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ko/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ko/sdext/source/minimizer.po2
-rw-r--r--source/ko/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ko/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ko/setup_native/source/mac.po2
-rw-r--r--source/ko/sfx2/source/appl.po2
-rw-r--r--source/ko/sfx2/source/bastyp.po2
-rw-r--r--source/ko/sfx2/source/control.po23
-rw-r--r--source/ko/sfx2/source/dialog.po46
-rw-r--r--source/ko/sfx2/source/doc.po126
-rw-r--r--source/ko/sfx2/source/menu.po2
-rw-r--r--source/ko/sfx2/source/view.po2
-rw-r--r--source/ko/sfx2/uiconfig/ui.po2
-rw-r--r--source/ko/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ko/starmath/source.po2
-rw-r--r--source/ko/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ko/svl/source/items.po2
-rw-r--r--source/ko/svl/source/misc.po2
-rw-r--r--source/ko/svtools/source/contnr.po2
-rw-r--r--source/ko/svtools/source/control.po2
-rw-r--r--source/ko/svtools/source/dialogs.po2
-rw-r--r--source/ko/svtools/source/java.po2
-rw-r--r--source/ko/svtools/source/misc.po2
-rw-r--r--source/ko/svtools/source/toolpanel.po2
-rw-r--r--source/ko/svtools/uiconfig/ui.po53
-rw-r--r--source/ko/svx/inc.po2
-rw-r--r--source/ko/svx/source/accessibility.po2
-rw-r--r--source/ko/svx/source/core.po2
-rw-r--r--source/ko/svx/source/dialog.po224
-rw-r--r--source/ko/svx/source/engine3d.po2
-rw-r--r--source/ko/svx/source/fmcomp.po2
-rw-r--r--source/ko/svx/source/form.po2
-rw-r--r--source/ko/svx/source/gallery2.po2
-rw-r--r--source/ko/svx/source/items.po2
-rw-r--r--source/ko/svx/source/src.po2
-rw-r--r--source/ko/svx/source/stbctrls.po2
-rw-r--r--source/ko/svx/source/svdraw.po2
-rw-r--r--source/ko/svx/source/table.po2
-rw-r--r--source/ko/svx/source/tbxctrls.po2
-rw-r--r--source/ko/svx/source/toolbars.po2
-rw-r--r--source/ko/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ko/svx/uiconfig/ui.po204
-rw-r--r--source/ko/sw/source/core/layout.po2
-rw-r--r--source/ko/sw/source/core/undo.po2
-rw-r--r--source/ko/sw/source/core/unocore.po2
-rw-r--r--source/ko/sw/source/ui/app.po2
-rw-r--r--source/ko/sw/source/ui/chrdlg.po2
-rw-r--r--source/ko/sw/source/ui/config.po2
-rw-r--r--source/ko/sw/source/ui/dbui.po2
-rw-r--r--source/ko/sw/source/ui/dialog.po2
-rw-r--r--source/ko/sw/source/ui/dochdl.po2
-rw-r--r--source/ko/sw/source/ui/docvw.po2
-rw-r--r--source/ko/sw/source/ui/envelp.po2
-rw-r--r--source/ko/sw/source/ui/fldui.po2
-rw-r--r--source/ko/sw/source/ui/fmtui.po2
-rw-r--r--source/ko/sw/source/ui/frmdlg.po2
-rw-r--r--source/ko/sw/source/ui/globdoc.po2
-rw-r--r--source/ko/sw/source/ui/index.po2
-rw-r--r--source/ko/sw/source/ui/lingu.po2
-rw-r--r--source/ko/sw/source/ui/misc.po2
-rw-r--r--source/ko/sw/source/ui/ribbar.po2
-rw-r--r--source/ko/sw/source/ui/shells.po2
-rw-r--r--source/ko/sw/source/ui/smartmenu.po2
-rw-r--r--source/ko/sw/source/ui/table.po2
-rw-r--r--source/ko/sw/source/ui/uiview.po2
-rw-r--r--source/ko/sw/source/ui/utlui.po2
-rw-r--r--source/ko/sw/source/ui/web.po2
-rw-r--r--source/ko/sw/source/ui/wrtsh.po2
-rw-r--r--source/ko/sw/uiconfig/sw/ui.po282
-rw-r--r--source/ko/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/ko/swext/mediawiki/help.po2
-rw-r--r--source/ko/swext/mediawiki/src.po2
-rw-r--r--source/ko/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ko/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ko/sysui/desktop/share.po2
-rw-r--r--source/ko/tubes/uiconfig/ui.po2
-rw-r--r--source/ko/uui/source.po2
-rw-r--r--source/ko/vcl/qa/cppunit/builder.po60
-rw-r--r--source/ko/vcl/source/edit.po2
-rw-r--r--source/ko/vcl/source/src.po2
-rw-r--r--source/ko/vcl/uiconfig/ui.po38
-rw-r--r--source/ko/wizards/source/euro.po2
-rw-r--r--source/ko/wizards/source/formwizard.po139
-rw-r--r--source/ko/wizards/source/importwizard.po2
-rw-r--r--source/ko/wizards/source/template.po46
-rw-r--r--source/ko/xmlsecurity/source/component.po2
-rw-r--r--source/ko/xmlsecurity/source/dialogs.po2
-rw-r--r--source/kok/accessibility/source/helper.po2
-rw-r--r--source/kok/android/sdremote/res/values.po2
-rw-r--r--source/kok/avmedia/source/framework.po2
-rw-r--r--source/kok/avmedia/source/viewer.po2
-rw-r--r--source/kok/basctl/source/basicide.po2
-rw-r--r--source/kok/basctl/source/dlged.po2
-rw-r--r--source/kok/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/kok/basic/source/classes.po2
-rw-r--r--source/kok/basic/source/sbx.po2
-rw-r--r--source/kok/chart2/source/controller/dialogs.po2
-rw-r--r--source/kok/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/connectivity/source/resource.po2
-rw-r--r--source/kok/cui/source/customize.po2
-rw-r--r--source/kok/cui/source/dialogs.po2
-rw-r--r--source/kok/cui/source/options.po2
-rw-r--r--source/kok/cui/source/tabpages.po2
-rw-r--r--source/kok/cui/uiconfig/ui.po2
-rw-r--r--source/kok/dbaccess/source/core/resource.po2
-rw-r--r--source/kok/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/kok/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/kok/dbaccess/source/ui/app.po2
-rw-r--r--source/kok/dbaccess/source/ui/browser.po2
-rw-r--r--source/kok/dbaccess/source/ui/control.po2
-rw-r--r--source/kok/dbaccess/source/ui/dlg.po2
-rw-r--r--source/kok/dbaccess/source/ui/inc.po2
-rw-r--r--source/kok/dbaccess/source/ui/misc.po2
-rw-r--r--source/kok/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/kok/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/kok/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/kok/dbaccess/source/ui/uno.po2
-rw-r--r--source/kok/desktop/source/app.po2
-rw-r--r--source/kok/desktop/source/deployment/gui.po2
-rw-r--r--source/kok/desktop/source/deployment/manager.po2
-rw-r--r--source/kok/desktop/source/deployment/misc.po2
-rw-r--r--source/kok/desktop/source/deployment/registry.po2
-rw-r--r--source/kok/desktop/source/deployment/registry/component.po2
-rw-r--r--source/kok/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/kok/desktop/source/deployment/registry/help.po2
-rw-r--r--source/kok/desktop/source/deployment/registry/package.po2
-rw-r--r--source/kok/desktop/source/deployment/registry/script.po2
-rw-r--r--source/kok/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/kok/desktop/source/deployment/unopkg.po2
-rw-r--r--source/kok/desktop/uiconfig/ui.po2
-rw-r--r--source/kok/dictionaries/af_ZA.po2
-rw-r--r--source/kok/dictionaries/an_ES.po2
-rw-r--r--source/kok/dictionaries/ar.po2
-rw-r--r--source/kok/dictionaries/be_BY.po2
-rw-r--r--source/kok/dictionaries/bg_BG.po2
-rw-r--r--source/kok/dictionaries/bn_BD.po2
-rw-r--r--source/kok/dictionaries/br_FR.po2
-rw-r--r--source/kok/dictionaries/ca.po2
-rw-r--r--source/kok/dictionaries/cs_CZ.po2
-rw-r--r--source/kok/dictionaries/da_DK.po2
-rw-r--r--source/kok/dictionaries/de.po2
-rw-r--r--source/kok/dictionaries/el_GR.po2
-rw-r--r--source/kok/dictionaries/en.po2
-rw-r--r--source/kok/dictionaries/en/dialog.po2
-rw-r--r--source/kok/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kok/dictionaries/es.po2
-rw-r--r--source/kok/dictionaries/et_EE.po2
-rw-r--r--source/kok/dictionaries/fr_FR.po2
-rw-r--r--source/kok/dictionaries/gd_GB.po2
-rw-r--r--source/kok/dictionaries/gl.po2
-rw-r--r--source/kok/dictionaries/gu_IN.po2
-rw-r--r--source/kok/dictionaries/he_IL.po2
-rw-r--r--source/kok/dictionaries/hi_IN.po2
-rw-r--r--source/kok/dictionaries/hr_HR.po2
-rw-r--r--source/kok/dictionaries/hu_HU.po2
-rw-r--r--source/kok/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/kok/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kok/dictionaries/it_IT.po2
-rw-r--r--source/kok/dictionaries/ku_TR.po2
-rw-r--r--source/kok/dictionaries/lt_LT.po2
-rw-r--r--source/kok/dictionaries/lv_LV.po2
-rw-r--r--source/kok/dictionaries/ne_NP.po2
-rw-r--r--source/kok/dictionaries/nl_NL.po2
-rw-r--r--source/kok/dictionaries/no.po2
-rw-r--r--source/kok/dictionaries/oc_FR.po2
-rw-r--r--source/kok/dictionaries/pl_PL.po2
-rw-r--r--source/kok/dictionaries/pt_BR.po2
-rw-r--r--source/kok/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/kok/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kok/dictionaries/pt_PT.po2
-rw-r--r--source/kok/dictionaries/ro.po2
-rw-r--r--source/kok/dictionaries/ru_RU.po2
-rw-r--r--source/kok/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/kok/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kok/dictionaries/si_LK.po2
-rw-r--r--source/kok/dictionaries/sk_SK.po2
-rw-r--r--source/kok/dictionaries/sl_SI.po2
-rw-r--r--source/kok/dictionaries/sr.po2
-rw-r--r--source/kok/dictionaries/sv_SE.po2
-rw-r--r--source/kok/dictionaries/sw_TZ.po2
-rw-r--r--source/kok/dictionaries/te_IN.po2
-rw-r--r--source/kok/dictionaries/th_TH.po2
-rw-r--r--source/kok/dictionaries/uk_UA.po2
-rw-r--r--source/kok/dictionaries/vi.po2
-rw-r--r--source/kok/dictionaries/zu_ZA.po2
-rw-r--r--source/kok/editeng/source/accessibility.po2
-rw-r--r--source/kok/editeng/source/editeng.po2
-rw-r--r--source/kok/editeng/source/items.po2
-rw-r--r--source/kok/editeng/source/misc.po2
-rw-r--r--source/kok/editeng/source/outliner.po2
-rw-r--r--source/kok/extensions/source/abpilot.po2
-rw-r--r--source/kok/extensions/source/bibliography.po2
-rw-r--r--source/kok/extensions/source/dbpilots.po2
-rw-r--r--source/kok/extensions/source/propctrlr.po2
-rw-r--r--source/kok/extensions/source/scanner.po2
-rw-r--r--source/kok/extensions/source/update/check.po2
-rw-r--r--source/kok/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/kok/filter/source/config/fragments/filters.po2
-rw-r--r--source/kok/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/kok/filter/source/config/fragments/types.po2
-rw-r--r--source/kok/filter/source/flash.po2
-rw-r--r--source/kok/filter/source/graphicfilter/eps.po2
-rw-r--r--source/kok/filter/source/pdf.po2
-rw-r--r--source/kok/filter/source/t602.po2
-rw-r--r--source/kok/filter/source/xsltdialog.po2
-rw-r--r--source/kok/filter/uiconfig/ui.po2
-rw-r--r--source/kok/forms/source/resource.po2
-rw-r--r--source/kok/formula/source/core/resource.po38
-rw-r--r--source/kok/formula/source/ui/dlg.po2
-rw-r--r--source/kok/fpicker/source/office.po2
-rw-r--r--source/kok/framework/source/classes.po2
-rw-r--r--source/kok/framework/source/services.po2
-rw-r--r--source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/kok/librelogo/source/pythonpath.po2
-rw-r--r--source/kok/mysqlc/source.po2
-rw-r--r--source/kok/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/kok/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/kok/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/kok/nlpsolver/src/locale.po2
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/kok/padmin/source.po2
-rw-r--r--source/kok/readlicense_oo/docs.po2
-rw-r--r--source/kok/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/kok/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kok/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/kok/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/kok/reportbuilder/util.po2
-rw-r--r--source/kok/reportdesign/source/core/resource.po2
-rw-r--r--source/kok/reportdesign/source/ui/dlg.po2
-rw-r--r--source/kok/reportdesign/source/ui/inspection.po2
-rw-r--r--source/kok/reportdesign/source/ui/report.po2
-rw-r--r--source/kok/sc/source/core/src.po2
-rw-r--r--source/kok/sc/source/ui/cctrl.po2
-rw-r--r--source/kok/sc/source/ui/dbgui.po2
-rw-r--r--source/kok/sc/source/ui/docshell.po2
-rw-r--r--source/kok/sc/source/ui/drawfunc.po2
-rw-r--r--source/kok/sc/source/ui/formdlg.po2
-rw-r--r--source/kok/sc/source/ui/miscdlgs.po2
-rw-r--r--source/kok/sc/source/ui/navipi.po2
-rw-r--r--source/kok/sc/source/ui/optdlg.po2
-rw-r--r--source/kok/sc/source/ui/pagedlg.po2
-rw-r--r--source/kok/sc/source/ui/src.po383
-rw-r--r--source/kok/sc/source/ui/styleui.po2
-rw-r--r--source/kok/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/kok/scaddins/source/analysis.po2
-rw-r--r--source/kok/scaddins/source/datefunc.po2
-rw-r--r--source/kok/scaddins/source/pricing.po2
-rw-r--r--source/kok/sccomp/source/solver.po2
-rw-r--r--source/kok/scp2/source/accessories.po2
-rw-r--r--source/kok/scp2/source/activex.po2
-rw-r--r--source/kok/scp2/source/base.po2
-rw-r--r--source/kok/scp2/source/calc.po2
-rw-r--r--source/kok/scp2/source/draw.po2
-rw-r--r--source/kok/scp2/source/extensions.po2
-rw-r--r--source/kok/scp2/source/gnome.po2
-rw-r--r--source/kok/scp2/source/graphicfilter.po2
-rw-r--r--source/kok/scp2/source/impress.po2
-rw-r--r--source/kok/scp2/source/javafilter.po2
-rw-r--r--source/kok/scp2/source/kde.po2
-rw-r--r--source/kok/scp2/source/math.po2
-rw-r--r--source/kok/scp2/source/onlineupdate.po2
-rw-r--r--source/kok/scp2/source/ooo.po2
-rw-r--r--source/kok/scp2/source/python.po18
-rw-r--r--source/kok/scp2/source/quickstart.po2
-rw-r--r--source/kok/scp2/source/sdkoo.po2
-rw-r--r--source/kok/scp2/source/smoketest.po2
-rw-r--r--source/kok/scp2/source/stdlibs.po2
-rw-r--r--source/kok/scp2/source/tde.po2
-rw-r--r--source/kok/scp2/source/winexplorerext.po2
-rw-r--r--source/kok/scp2/source/writer.po2
-rw-r--r--source/kok/scp2/source/xsltfilter.po2
-rw-r--r--source/kok/sd/source/core.po2
-rw-r--r--source/kok/sd/source/filter/html.po2
-rw-r--r--source/kok/sd/source/ui/accessibility.po2
-rw-r--r--source/kok/sd/source/ui/animations.po2
-rw-r--r--source/kok/sd/source/ui/annotations.po2
-rw-r--r--source/kok/sd/source/ui/app.po2
-rw-r--r--source/kok/sd/source/ui/dlg.po2
-rw-r--r--source/kok/sd/source/ui/slideshow.po2
-rw-r--r--source/kok/sd/source/ui/table.po2
-rw-r--r--source/kok/sd/source/ui/view.po2
-rw-r--r--source/kok/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/kok/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/kok/sdext/source/minimizer.po2
-rw-r--r--source/kok/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kok/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/kok/setup_native/source/mac.po2
-rw-r--r--source/kok/sfx2/source/appl.po2
-rw-r--r--source/kok/sfx2/source/bastyp.po2
-rw-r--r--source/kok/sfx2/source/control.po23
-rw-r--r--source/kok/sfx2/source/dialog.po46
-rw-r--r--source/kok/sfx2/source/doc.po126
-rw-r--r--source/kok/sfx2/source/menu.po2
-rw-r--r--source/kok/sfx2/source/view.po2
-rw-r--r--source/kok/sfx2/uiconfig/ui.po2
-rw-r--r--source/kok/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/kok/starmath/source.po2
-rw-r--r--source/kok/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/kok/svl/source/items.po2
-rw-r--r--source/kok/svl/source/misc.po2
-rw-r--r--source/kok/svtools/source/contnr.po2
-rw-r--r--source/kok/svtools/source/control.po2
-rw-r--r--source/kok/svtools/source/dialogs.po2
-rw-r--r--source/kok/svtools/source/java.po2
-rw-r--r--source/kok/svtools/source/misc.po2
-rw-r--r--source/kok/svtools/source/toolpanel.po2
-rw-r--r--source/kok/svtools/uiconfig/ui.po55
-rw-r--r--source/kok/svx/inc.po2
-rw-r--r--source/kok/svx/source/accessibility.po2
-rw-r--r--source/kok/svx/source/core.po2
-rw-r--r--source/kok/svx/source/dialog.po224
-rw-r--r--source/kok/svx/source/engine3d.po2
-rw-r--r--source/kok/svx/source/fmcomp.po2
-rw-r--r--source/kok/svx/source/form.po2
-rw-r--r--source/kok/svx/source/gallery2.po2
-rw-r--r--source/kok/svx/source/items.po2
-rw-r--r--source/kok/svx/source/src.po2
-rw-r--r--source/kok/svx/source/stbctrls.po2
-rw-r--r--source/kok/svx/source/svdraw.po2
-rw-r--r--source/kok/svx/source/table.po2
-rw-r--r--source/kok/svx/source/tbxctrls.po2
-rw-r--r--source/kok/svx/source/toolbars.po2
-rw-r--r--source/kok/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/kok/svx/uiconfig/ui.po204
-rw-r--r--source/kok/sw/source/core/layout.po2
-rw-r--r--source/kok/sw/source/core/undo.po2
-rw-r--r--source/kok/sw/source/core/unocore.po2
-rw-r--r--source/kok/sw/source/ui/app.po2
-rw-r--r--source/kok/sw/source/ui/chrdlg.po2
-rw-r--r--source/kok/sw/source/ui/config.po2
-rw-r--r--source/kok/sw/source/ui/dbui.po2
-rw-r--r--source/kok/sw/source/ui/dialog.po2
-rw-r--r--source/kok/sw/source/ui/dochdl.po2
-rw-r--r--source/kok/sw/source/ui/docvw.po2
-rw-r--r--source/kok/sw/source/ui/envelp.po2
-rw-r--r--source/kok/sw/source/ui/fldui.po2
-rw-r--r--source/kok/sw/source/ui/fmtui.po2
-rw-r--r--source/kok/sw/source/ui/frmdlg.po2
-rw-r--r--source/kok/sw/source/ui/globdoc.po2
-rw-r--r--source/kok/sw/source/ui/index.po2
-rw-r--r--source/kok/sw/source/ui/lingu.po2
-rw-r--r--source/kok/sw/source/ui/misc.po2
-rw-r--r--source/kok/sw/source/ui/ribbar.po2
-rw-r--r--source/kok/sw/source/ui/shells.po2
-rw-r--r--source/kok/sw/source/ui/smartmenu.po2
-rw-r--r--source/kok/sw/source/ui/table.po2
-rw-r--r--source/kok/sw/source/ui/uiview.po2
-rw-r--r--source/kok/sw/source/ui/utlui.po2
-rw-r--r--source/kok/sw/source/ui/web.po2
-rw-r--r--source/kok/sw/source/ui/wrtsh.po2
-rw-r--r--source/kok/sw/uiconfig/sw/ui.po281
-rw-r--r--source/kok/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/kok/swext/mediawiki/help.po2
-rw-r--r--source/kok/swext/mediawiki/src.po2
-rw-r--r--source/kok/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/kok/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/kok/sysui/desktop/share.po2
-rw-r--r--source/kok/tubes/uiconfig/ui.po2
-rw-r--r--source/kok/uui/source.po2
-rw-r--r--source/kok/vcl/qa/cppunit/builder.po2
-rw-r--r--source/kok/vcl/source/edit.po2
-rw-r--r--source/kok/vcl/source/src.po2
-rw-r--r--source/kok/vcl/uiconfig/ui.po2
-rw-r--r--source/kok/wizards/source/euro.po2
-rw-r--r--source/kok/wizards/source/formwizard.po2
-rw-r--r--source/kok/wizards/source/importwizard.po2
-rw-r--r--source/kok/wizards/source/template.po2
-rw-r--r--source/kok/xmlsecurity/source/component.po2
-rw-r--r--source/kok/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ks/accessibility/source/helper.po2
-rw-r--r--source/ks/android/sdremote/res/values.po2
-rw-r--r--source/ks/avmedia/source/framework.po2
-rw-r--r--source/ks/avmedia/source/viewer.po2
-rw-r--r--source/ks/basctl/source/basicide.po2
-rw-r--r--source/ks/basctl/source/dlged.po2
-rw-r--r--source/ks/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ks/basic/source/classes.po2
-rw-r--r--source/ks/basic/source/sbx.po2
-rw-r--r--source/ks/chart2/source/controller/dialogs.po2
-rw-r--r--source/ks/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/connectivity/source/resource.po2
-rw-r--r--source/ks/cui/source/customize.po2
-rw-r--r--source/ks/cui/source/dialogs.po2
-rw-r--r--source/ks/cui/source/options.po2
-rw-r--r--source/ks/cui/source/tabpages.po2
-rw-r--r--source/ks/cui/uiconfig/ui.po2
-rw-r--r--source/ks/dbaccess/source/core/resource.po2
-rw-r--r--source/ks/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ks/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ks/dbaccess/source/ui/app.po2
-rw-r--r--source/ks/dbaccess/source/ui/browser.po2
-rw-r--r--source/ks/dbaccess/source/ui/control.po2
-rw-r--r--source/ks/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ks/dbaccess/source/ui/inc.po2
-rw-r--r--source/ks/dbaccess/source/ui/misc.po2
-rw-r--r--source/ks/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ks/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ks/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ks/dbaccess/source/ui/uno.po2
-rw-r--r--source/ks/desktop/source/app.po2
-rw-r--r--source/ks/desktop/source/deployment/gui.po2
-rw-r--r--source/ks/desktop/source/deployment/manager.po2
-rw-r--r--source/ks/desktop/source/deployment/misc.po2
-rw-r--r--source/ks/desktop/source/deployment/registry.po2
-rw-r--r--source/ks/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ks/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ks/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ks/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ks/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ks/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ks/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ks/desktop/uiconfig/ui.po2
-rw-r--r--source/ks/dictionaries/af_ZA.po2
-rw-r--r--source/ks/dictionaries/an_ES.po2
-rw-r--r--source/ks/dictionaries/ar.po2
-rw-r--r--source/ks/dictionaries/be_BY.po2
-rw-r--r--source/ks/dictionaries/bg_BG.po2
-rw-r--r--source/ks/dictionaries/bn_BD.po2
-rw-r--r--source/ks/dictionaries/br_FR.po2
-rw-r--r--source/ks/dictionaries/ca.po2
-rw-r--r--source/ks/dictionaries/cs_CZ.po2
-rw-r--r--source/ks/dictionaries/da_DK.po2
-rw-r--r--source/ks/dictionaries/de.po2
-rw-r--r--source/ks/dictionaries/el_GR.po2
-rw-r--r--source/ks/dictionaries/en.po2
-rw-r--r--source/ks/dictionaries/en/dialog.po2
-rw-r--r--source/ks/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ks/dictionaries/es.po2
-rw-r--r--source/ks/dictionaries/et_EE.po2
-rw-r--r--source/ks/dictionaries/fr_FR.po2
-rw-r--r--source/ks/dictionaries/gd_GB.po2
-rw-r--r--source/ks/dictionaries/gl.po2
-rw-r--r--source/ks/dictionaries/gu_IN.po2
-rw-r--r--source/ks/dictionaries/he_IL.po2
-rw-r--r--source/ks/dictionaries/hi_IN.po2
-rw-r--r--source/ks/dictionaries/hr_HR.po2
-rw-r--r--source/ks/dictionaries/hu_HU.po2
-rw-r--r--source/ks/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ks/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ks/dictionaries/it_IT.po2
-rw-r--r--source/ks/dictionaries/ku_TR.po2
-rw-r--r--source/ks/dictionaries/lt_LT.po2
-rw-r--r--source/ks/dictionaries/lv_LV.po2
-rw-r--r--source/ks/dictionaries/ne_NP.po2
-rw-r--r--source/ks/dictionaries/nl_NL.po2
-rw-r--r--source/ks/dictionaries/no.po2
-rw-r--r--source/ks/dictionaries/oc_FR.po2
-rw-r--r--source/ks/dictionaries/pl_PL.po2
-rw-r--r--source/ks/dictionaries/pt_BR.po2
-rw-r--r--source/ks/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ks/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ks/dictionaries/pt_PT.po2
-rw-r--r--source/ks/dictionaries/ro.po2
-rw-r--r--source/ks/dictionaries/ru_RU.po2
-rw-r--r--source/ks/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ks/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ks/dictionaries/si_LK.po2
-rw-r--r--source/ks/dictionaries/sk_SK.po2
-rw-r--r--source/ks/dictionaries/sl_SI.po2
-rw-r--r--source/ks/dictionaries/sr.po2
-rw-r--r--source/ks/dictionaries/sv_SE.po2
-rw-r--r--source/ks/dictionaries/sw_TZ.po2
-rw-r--r--source/ks/dictionaries/te_IN.po2
-rw-r--r--source/ks/dictionaries/th_TH.po2
-rw-r--r--source/ks/dictionaries/uk_UA.po2
-rw-r--r--source/ks/dictionaries/vi.po2
-rw-r--r--source/ks/dictionaries/zu_ZA.po2
-rw-r--r--source/ks/editeng/source/accessibility.po2
-rw-r--r--source/ks/editeng/source/editeng.po2
-rw-r--r--source/ks/editeng/source/items.po2
-rw-r--r--source/ks/editeng/source/misc.po2
-rw-r--r--source/ks/editeng/source/outliner.po2
-rw-r--r--source/ks/extensions/source/abpilot.po2
-rw-r--r--source/ks/extensions/source/bibliography.po2
-rw-r--r--source/ks/extensions/source/dbpilots.po2
-rw-r--r--source/ks/extensions/source/propctrlr.po2
-rw-r--r--source/ks/extensions/source/scanner.po2
-rw-r--r--source/ks/extensions/source/update/check.po2
-rw-r--r--source/ks/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ks/filter/source/config/fragments/filters.po2
-rw-r--r--source/ks/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ks/filter/source/config/fragments/types.po2
-rw-r--r--source/ks/filter/source/flash.po2
-rw-r--r--source/ks/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ks/filter/source/pdf.po2
-rw-r--r--source/ks/filter/source/t602.po2
-rw-r--r--source/ks/filter/source/xsltdialog.po2
-rw-r--r--source/ks/filter/uiconfig/ui.po2
-rw-r--r--source/ks/forms/source/resource.po2
-rw-r--r--source/ks/formula/source/core/resource.po38
-rw-r--r--source/ks/formula/source/ui/dlg.po2
-rw-r--r--source/ks/fpicker/source/office.po2
-rw-r--r--source/ks/framework/source/classes.po2
-rw-r--r--source/ks/framework/source/services.po2
-rw-r--r--source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/ks/librelogo/source/pythonpath.po2
-rw-r--r--source/ks/mysqlc/source.po2
-rw-r--r--source/ks/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ks/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ks/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ks/nlpsolver/src/locale.po2
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/ks/padmin/source.po2
-rw-r--r--source/ks/readlicense_oo/docs.po2
-rw-r--r--source/ks/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ks/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ks/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ks/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ks/reportbuilder/util.po2
-rw-r--r--source/ks/reportdesign/source/core/resource.po2
-rw-r--r--source/ks/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ks/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ks/reportdesign/source/ui/report.po2
-rw-r--r--source/ks/sc/source/core/src.po2
-rw-r--r--source/ks/sc/source/ui/cctrl.po2
-rw-r--r--source/ks/sc/source/ui/dbgui.po2
-rw-r--r--source/ks/sc/source/ui/docshell.po2
-rw-r--r--source/ks/sc/source/ui/drawfunc.po2
-rw-r--r--source/ks/sc/source/ui/formdlg.po2
-rw-r--r--source/ks/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ks/sc/source/ui/navipi.po2
-rw-r--r--source/ks/sc/source/ui/optdlg.po2
-rw-r--r--source/ks/sc/source/ui/pagedlg.po2
-rw-r--r--source/ks/sc/source/ui/src.po393
-rw-r--r--source/ks/sc/source/ui/styleui.po2
-rw-r--r--source/ks/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/ks/scaddins/source/analysis.po2
-rw-r--r--source/ks/scaddins/source/datefunc.po2
-rw-r--r--source/ks/scaddins/source/pricing.po2
-rw-r--r--source/ks/sccomp/source/solver.po2
-rw-r--r--source/ks/scp2/source/accessories.po2
-rw-r--r--source/ks/scp2/source/activex.po2
-rw-r--r--source/ks/scp2/source/base.po2
-rw-r--r--source/ks/scp2/source/calc.po2
-rw-r--r--source/ks/scp2/source/draw.po2
-rw-r--r--source/ks/scp2/source/extensions.po2
-rw-r--r--source/ks/scp2/source/gnome.po2
-rw-r--r--source/ks/scp2/source/graphicfilter.po2
-rw-r--r--source/ks/scp2/source/impress.po2
-rw-r--r--source/ks/scp2/source/javafilter.po2
-rw-r--r--source/ks/scp2/source/kde.po2
-rw-r--r--source/ks/scp2/source/math.po2
-rw-r--r--source/ks/scp2/source/onlineupdate.po2
-rw-r--r--source/ks/scp2/source/ooo.po2
-rw-r--r--source/ks/scp2/source/python.po18
-rw-r--r--source/ks/scp2/source/quickstart.po2
-rw-r--r--source/ks/scp2/source/sdkoo.po2
-rw-r--r--source/ks/scp2/source/smoketest.po2
-rw-r--r--source/ks/scp2/source/stdlibs.po2
-rw-r--r--source/ks/scp2/source/tde.po2
-rw-r--r--source/ks/scp2/source/winexplorerext.po2
-rw-r--r--source/ks/scp2/source/writer.po2
-rw-r--r--source/ks/scp2/source/xsltfilter.po2
-rw-r--r--source/ks/sd/source/core.po2
-rw-r--r--source/ks/sd/source/filter/html.po2
-rw-r--r--source/ks/sd/source/ui/accessibility.po2
-rw-r--r--source/ks/sd/source/ui/animations.po2
-rw-r--r--source/ks/sd/source/ui/annotations.po2
-rw-r--r--source/ks/sd/source/ui/app.po2
-rw-r--r--source/ks/sd/source/ui/dlg.po2
-rw-r--r--source/ks/sd/source/ui/slideshow.po2
-rw-r--r--source/ks/sd/source/ui/table.po2
-rw-r--r--source/ks/sd/source/ui/view.po2
-rw-r--r--source/ks/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ks/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ks/sdext/source/minimizer.po2
-rw-r--r--source/ks/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ks/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ks/setup_native/source/mac.po2
-rw-r--r--source/ks/sfx2/source/appl.po2
-rw-r--r--source/ks/sfx2/source/bastyp.po2
-rw-r--r--source/ks/sfx2/source/control.po23
-rw-r--r--source/ks/sfx2/source/dialog.po46
-rw-r--r--source/ks/sfx2/source/doc.po126
-rw-r--r--source/ks/sfx2/source/menu.po2
-rw-r--r--source/ks/sfx2/source/view.po2
-rw-r--r--source/ks/sfx2/uiconfig/ui.po2
-rw-r--r--source/ks/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ks/starmath/source.po2
-rw-r--r--source/ks/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ks/svl/source/items.po2
-rw-r--r--source/ks/svl/source/misc.po2
-rw-r--r--source/ks/svtools/source/contnr.po2
-rw-r--r--source/ks/svtools/source/control.po2
-rw-r--r--source/ks/svtools/source/dialogs.po2
-rw-r--r--source/ks/svtools/source/java.po2
-rw-r--r--source/ks/svtools/source/misc.po2
-rw-r--r--source/ks/svtools/source/toolpanel.po2
-rw-r--r--source/ks/svtools/uiconfig/ui.po55
-rw-r--r--source/ks/svx/inc.po2
-rw-r--r--source/ks/svx/source/accessibility.po2
-rw-r--r--source/ks/svx/source/core.po2
-rw-r--r--source/ks/svx/source/dialog.po223
-rw-r--r--source/ks/svx/source/engine3d.po2
-rw-r--r--source/ks/svx/source/fmcomp.po2
-rw-r--r--source/ks/svx/source/form.po2
-rw-r--r--source/ks/svx/source/gallery2.po2
-rw-r--r--source/ks/svx/source/items.po2
-rw-r--r--source/ks/svx/source/src.po2
-rw-r--r--source/ks/svx/source/stbctrls.po2
-rw-r--r--source/ks/svx/source/svdraw.po2
-rw-r--r--source/ks/svx/source/table.po2
-rw-r--r--source/ks/svx/source/tbxctrls.po2
-rw-r--r--source/ks/svx/source/toolbars.po2
-rw-r--r--source/ks/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ks/svx/uiconfig/ui.po204
-rw-r--r--source/ks/sw/source/core/layout.po2
-rw-r--r--source/ks/sw/source/core/undo.po2
-rw-r--r--source/ks/sw/source/core/unocore.po2
-rw-r--r--source/ks/sw/source/ui/app.po2
-rw-r--r--source/ks/sw/source/ui/chrdlg.po2
-rw-r--r--source/ks/sw/source/ui/config.po2
-rw-r--r--source/ks/sw/source/ui/dbui.po2
-rw-r--r--source/ks/sw/source/ui/dialog.po2
-rw-r--r--source/ks/sw/source/ui/dochdl.po2
-rw-r--r--source/ks/sw/source/ui/docvw.po2
-rw-r--r--source/ks/sw/source/ui/envelp.po2
-rw-r--r--source/ks/sw/source/ui/fldui.po2
-rw-r--r--source/ks/sw/source/ui/fmtui.po2
-rw-r--r--source/ks/sw/source/ui/frmdlg.po2
-rw-r--r--source/ks/sw/source/ui/globdoc.po2
-rw-r--r--source/ks/sw/source/ui/index.po2
-rw-r--r--source/ks/sw/source/ui/lingu.po2
-rw-r--r--source/ks/sw/source/ui/misc.po2
-rw-r--r--source/ks/sw/source/ui/ribbar.po2
-rw-r--r--source/ks/sw/source/ui/shells.po2
-rw-r--r--source/ks/sw/source/ui/smartmenu.po2
-rw-r--r--source/ks/sw/source/ui/table.po2
-rw-r--r--source/ks/sw/source/ui/uiview.po2
-rw-r--r--source/ks/sw/source/ui/utlui.po2
-rw-r--r--source/ks/sw/source/ui/web.po2
-rw-r--r--source/ks/sw/source/ui/wrtsh.po2
-rw-r--r--source/ks/sw/uiconfig/sw/ui.po283
-rw-r--r--source/ks/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/ks/swext/mediawiki/help.po2
-rw-r--r--source/ks/swext/mediawiki/src.po2
-rw-r--r--source/ks/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ks/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ks/sysui/desktop/share.po2
-rw-r--r--source/ks/tubes/uiconfig/ui.po2
-rw-r--r--source/ks/uui/source.po2
-rw-r--r--source/ks/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ks/vcl/source/edit.po2
-rw-r--r--source/ks/vcl/source/src.po2
-rw-r--r--source/ks/vcl/uiconfig/ui.po2
-rw-r--r--source/ks/wizards/source/euro.po2
-rw-r--r--source/ks/wizards/source/formwizard.po2
-rw-r--r--source/ks/wizards/source/importwizard.po2
-rw-r--r--source/ks/wizards/source/template.po2
-rw-r--r--source/ks/xmlsecurity/source/component.po2
-rw-r--r--source/ks/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ku/accessibility/source/helper.po2
-rw-r--r--source/ku/android/sdremote/res/values.po2
-rw-r--r--source/ku/avmedia/source/framework.po2
-rw-r--r--source/ku/avmedia/source/viewer.po2
-rw-r--r--source/ku/basctl/source/basicide.po2
-rw-r--r--source/ku/basctl/source/dlged.po2
-rw-r--r--source/ku/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ku/basic/source/classes.po2
-rw-r--r--source/ku/basic/source/sbx.po2
-rw-r--r--source/ku/chart2/source/controller/dialogs.po2
-rw-r--r--source/ku/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/connectivity/source/resource.po2
-rw-r--r--source/ku/cui/source/customize.po2
-rw-r--r--source/ku/cui/source/dialogs.po2
-rw-r--r--source/ku/cui/source/options.po2
-rw-r--r--source/ku/cui/source/tabpages.po2
-rw-r--r--source/ku/cui/uiconfig/ui.po2
-rw-r--r--source/ku/dbaccess/source/core/resource.po2
-rw-r--r--source/ku/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ku/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ku/dbaccess/source/ui/app.po2
-rw-r--r--source/ku/dbaccess/source/ui/browser.po2
-rw-r--r--source/ku/dbaccess/source/ui/control.po2
-rw-r--r--source/ku/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ku/dbaccess/source/ui/inc.po2
-rw-r--r--source/ku/dbaccess/source/ui/misc.po2
-rw-r--r--source/ku/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ku/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ku/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ku/dbaccess/source/ui/uno.po2
-rw-r--r--source/ku/desktop/source/app.po2
-rw-r--r--source/ku/desktop/source/deployment/gui.po2
-rw-r--r--source/ku/desktop/source/deployment/manager.po2
-rw-r--r--source/ku/desktop/source/deployment/misc.po2
-rw-r--r--source/ku/desktop/source/deployment/registry.po2
-rw-r--r--source/ku/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ku/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ku/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ku/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ku/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ku/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ku/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ku/desktop/uiconfig/ui.po2
-rw-r--r--source/ku/dictionaries/af_ZA.po2
-rw-r--r--source/ku/dictionaries/an_ES.po2
-rw-r--r--source/ku/dictionaries/ar.po2
-rw-r--r--source/ku/dictionaries/be_BY.po2
-rw-r--r--source/ku/dictionaries/bg_BG.po2
-rw-r--r--source/ku/dictionaries/bn_BD.po2
-rw-r--r--source/ku/dictionaries/br_FR.po2
-rw-r--r--source/ku/dictionaries/ca.po2
-rw-r--r--source/ku/dictionaries/cs_CZ.po2
-rw-r--r--source/ku/dictionaries/da_DK.po2
-rw-r--r--source/ku/dictionaries/de.po2
-rw-r--r--source/ku/dictionaries/el_GR.po2
-rw-r--r--source/ku/dictionaries/en.po2
-rw-r--r--source/ku/dictionaries/en/dialog.po2
-rw-r--r--source/ku/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ku/dictionaries/es.po2
-rw-r--r--source/ku/dictionaries/et_EE.po2
-rw-r--r--source/ku/dictionaries/fr_FR.po2
-rw-r--r--source/ku/dictionaries/gd_GB.po2
-rw-r--r--source/ku/dictionaries/gl.po2
-rw-r--r--source/ku/dictionaries/gu_IN.po2
-rw-r--r--source/ku/dictionaries/he_IL.po2
-rw-r--r--source/ku/dictionaries/hi_IN.po2
-rw-r--r--source/ku/dictionaries/hr_HR.po2
-rw-r--r--source/ku/dictionaries/hu_HU.po2
-rw-r--r--source/ku/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ku/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ku/dictionaries/it_IT.po2
-rw-r--r--source/ku/dictionaries/ku_TR.po2
-rw-r--r--source/ku/dictionaries/lt_LT.po2
-rw-r--r--source/ku/dictionaries/lv_LV.po2
-rw-r--r--source/ku/dictionaries/ne_NP.po2
-rw-r--r--source/ku/dictionaries/nl_NL.po2
-rw-r--r--source/ku/dictionaries/no.po2
-rw-r--r--source/ku/dictionaries/oc_FR.po2
-rw-r--r--source/ku/dictionaries/pl_PL.po2
-rw-r--r--source/ku/dictionaries/pt_BR.po2
-rw-r--r--source/ku/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ku/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ku/dictionaries/pt_PT.po2
-rw-r--r--source/ku/dictionaries/ro.po2
-rw-r--r--source/ku/dictionaries/ru_RU.po2
-rw-r--r--source/ku/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ku/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ku/dictionaries/si_LK.po2
-rw-r--r--source/ku/dictionaries/sk_SK.po2
-rw-r--r--source/ku/dictionaries/sl_SI.po2
-rw-r--r--source/ku/dictionaries/sr.po2
-rw-r--r--source/ku/dictionaries/sv_SE.po2
-rw-r--r--source/ku/dictionaries/sw_TZ.po2
-rw-r--r--source/ku/dictionaries/te_IN.po2
-rw-r--r--source/ku/dictionaries/th_TH.po2
-rw-r--r--source/ku/dictionaries/uk_UA.po2
-rw-r--r--source/ku/dictionaries/vi.po2
-rw-r--r--source/ku/dictionaries/zu_ZA.po2
-rw-r--r--source/ku/editeng/source/accessibility.po2
-rw-r--r--source/ku/editeng/source/editeng.po2
-rw-r--r--source/ku/editeng/source/items.po2
-rw-r--r--source/ku/editeng/source/misc.po2
-rw-r--r--source/ku/editeng/source/outliner.po2
-rw-r--r--source/ku/extensions/source/abpilot.po2
-rw-r--r--source/ku/extensions/source/bibliography.po2
-rw-r--r--source/ku/extensions/source/dbpilots.po2
-rw-r--r--source/ku/extensions/source/propctrlr.po2
-rw-r--r--source/ku/extensions/source/scanner.po2
-rw-r--r--source/ku/extensions/source/update/check.po2
-rw-r--r--source/ku/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ku/filter/source/config/fragments/filters.po2
-rw-r--r--source/ku/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ku/filter/source/config/fragments/types.po2
-rw-r--r--source/ku/filter/source/flash.po2
-rw-r--r--source/ku/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ku/filter/source/pdf.po2
-rw-r--r--source/ku/filter/source/t602.po2
-rw-r--r--source/ku/filter/source/xsltdialog.po2
-rw-r--r--source/ku/filter/uiconfig/ui.po2
-rw-r--r--source/ku/forms/source/resource.po2
-rw-r--r--source/ku/formula/source/core/resource.po38
-rw-r--r--source/ku/formula/source/ui/dlg.po2
-rw-r--r--source/ku/fpicker/source/office.po2
-rw-r--r--source/ku/framework/source/classes.po2
-rw-r--r--source/ku/framework/source/services.po2
-rw-r--r--source/ku/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/ku/librelogo/source/pythonpath.po2
-rw-r--r--source/ku/mysqlc/source.po2
-rw-r--r--source/ku/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ku/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ku/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ku/nlpsolver/src/locale.po2
-rw-r--r--source/ku/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ku/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/ku/padmin/source.po2
-rw-r--r--source/ku/readlicense_oo/docs.po2
-rw-r--r--source/ku/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ku/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ku/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ku/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ku/reportbuilder/util.po2
-rw-r--r--source/ku/reportdesign/source/core/resource.po2
-rw-r--r--source/ku/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ku/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ku/reportdesign/source/ui/report.po2
-rw-r--r--source/ku/sc/source/core/src.po2
-rw-r--r--source/ku/sc/source/ui/cctrl.po2
-rw-r--r--source/ku/sc/source/ui/dbgui.po2
-rw-r--r--source/ku/sc/source/ui/docshell.po2
-rw-r--r--source/ku/sc/source/ui/drawfunc.po2
-rw-r--r--source/ku/sc/source/ui/formdlg.po2
-rw-r--r--source/ku/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ku/sc/source/ui/navipi.po2
-rw-r--r--source/ku/sc/source/ui/optdlg.po2
-rw-r--r--source/ku/sc/source/ui/pagedlg.po2
-rw-r--r--source/ku/sc/source/ui/src.po378
-rw-r--r--source/ku/sc/source/ui/styleui.po2
-rw-r--r--source/ku/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/ku/scaddins/source/analysis.po2
-rw-r--r--source/ku/scaddins/source/datefunc.po2
-rw-r--r--source/ku/scaddins/source/pricing.po2
-rw-r--r--source/ku/sccomp/source/solver.po2
-rw-r--r--source/ku/scp2/source/accessories.po2
-rw-r--r--source/ku/scp2/source/activex.po2
-rw-r--r--source/ku/scp2/source/base.po2
-rw-r--r--source/ku/scp2/source/calc.po2
-rw-r--r--source/ku/scp2/source/draw.po2
-rw-r--r--source/ku/scp2/source/extensions.po2
-rw-r--r--source/ku/scp2/source/gnome.po2
-rw-r--r--source/ku/scp2/source/graphicfilter.po2
-rw-r--r--source/ku/scp2/source/impress.po2
-rw-r--r--source/ku/scp2/source/javafilter.po2
-rw-r--r--source/ku/scp2/source/kde.po2
-rw-r--r--source/ku/scp2/source/math.po2
-rw-r--r--source/ku/scp2/source/onlineupdate.po2
-rw-r--r--source/ku/scp2/source/ooo.po2
-rw-r--r--source/ku/scp2/source/python.po18
-rw-r--r--source/ku/scp2/source/quickstart.po2
-rw-r--r--source/ku/scp2/source/sdkoo.po2
-rw-r--r--source/ku/scp2/source/smoketest.po2
-rw-r--r--source/ku/scp2/source/stdlibs.po2
-rw-r--r--source/ku/scp2/source/tde.po2
-rw-r--r--source/ku/scp2/source/winexplorerext.po2
-rw-r--r--source/ku/scp2/source/writer.po2
-rw-r--r--source/ku/scp2/source/xsltfilter.po2
-rw-r--r--source/ku/sd/source/core.po2
-rw-r--r--source/ku/sd/source/filter/html.po2
-rw-r--r--source/ku/sd/source/ui/accessibility.po2
-rw-r--r--source/ku/sd/source/ui/animations.po2
-rw-r--r--source/ku/sd/source/ui/annotations.po2
-rw-r--r--source/ku/sd/source/ui/app.po2
-rw-r--r--source/ku/sd/source/ui/dlg.po2
-rw-r--r--source/ku/sd/source/ui/slideshow.po2
-rw-r--r--source/ku/sd/source/ui/table.po2
-rw-r--r--source/ku/sd/source/ui/view.po2
-rw-r--r--source/ku/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ku/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ku/sdext/source/minimizer.po2
-rw-r--r--source/ku/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ku/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ku/setup_native/source/mac.po2
-rw-r--r--source/ku/sfx2/source/appl.po2
-rw-r--r--source/ku/sfx2/source/bastyp.po2
-rw-r--r--source/ku/sfx2/source/control.po23
-rw-r--r--source/ku/sfx2/source/dialog.po46
-rw-r--r--source/ku/sfx2/source/doc.po126
-rw-r--r--source/ku/sfx2/source/menu.po2
-rw-r--r--source/ku/sfx2/source/view.po2
-rw-r--r--source/ku/sfx2/uiconfig/ui.po2
-rw-r--r--source/ku/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ku/starmath/source.po2
-rw-r--r--source/ku/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ku/svl/source/items.po2
-rw-r--r--source/ku/svl/source/misc.po2
-rw-r--r--source/ku/svtools/source/contnr.po2
-rw-r--r--source/ku/svtools/source/control.po2
-rw-r--r--source/ku/svtools/source/dialogs.po2
-rw-r--r--source/ku/svtools/source/java.po2
-rw-r--r--source/ku/svtools/source/misc.po2
-rw-r--r--source/ku/svtools/source/toolpanel.po2
-rw-r--r--source/ku/svtools/uiconfig/ui.po49
-rw-r--r--source/ku/svx/inc.po2
-rw-r--r--source/ku/svx/source/accessibility.po2
-rw-r--r--source/ku/svx/source/core.po2
-rw-r--r--source/ku/svx/source/dialog.po224
-rw-r--r--source/ku/svx/source/engine3d.po2
-rw-r--r--source/ku/svx/source/fmcomp.po2
-rw-r--r--source/ku/svx/source/form.po2
-rw-r--r--source/ku/svx/source/gallery2.po2
-rw-r--r--source/ku/svx/source/items.po2
-rw-r--r--source/ku/svx/source/src.po2
-rw-r--r--source/ku/svx/source/stbctrls.po2
-rw-r--r--source/ku/svx/source/svdraw.po2
-rw-r--r--source/ku/svx/source/table.po2
-rw-r--r--source/ku/svx/source/tbxctrls.po2
-rw-r--r--source/ku/svx/source/toolbars.po2
-rw-r--r--source/ku/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ku/svx/uiconfig/ui.po204
-rw-r--r--source/ku/sw/source/core/layout.po2
-rw-r--r--source/ku/sw/source/core/undo.po2
-rw-r--r--source/ku/sw/source/core/unocore.po2
-rw-r--r--source/ku/sw/source/ui/app.po2
-rw-r--r--source/ku/sw/source/ui/chrdlg.po2
-rw-r--r--source/ku/sw/source/ui/config.po2
-rw-r--r--source/ku/sw/source/ui/dbui.po2
-rw-r--r--source/ku/sw/source/ui/dialog.po2
-rw-r--r--source/ku/sw/source/ui/dochdl.po2
-rw-r--r--source/ku/sw/source/ui/docvw.po2
-rw-r--r--source/ku/sw/source/ui/envelp.po2
-rw-r--r--source/ku/sw/source/ui/fldui.po2
-rw-r--r--source/ku/sw/source/ui/fmtui.po2
-rw-r--r--source/ku/sw/source/ui/frmdlg.po2
-rw-r--r--source/ku/sw/source/ui/globdoc.po2
-rw-r--r--source/ku/sw/source/ui/index.po2
-rw-r--r--source/ku/sw/source/ui/lingu.po2
-rw-r--r--source/ku/sw/source/ui/misc.po2
-rw-r--r--source/ku/sw/source/ui/ribbar.po2
-rw-r--r--source/ku/sw/source/ui/shells.po2
-rw-r--r--source/ku/sw/source/ui/smartmenu.po2
-rw-r--r--source/ku/sw/source/ui/table.po2
-rw-r--r--source/ku/sw/source/ui/uiview.po2
-rw-r--r--source/ku/sw/source/ui/utlui.po2
-rw-r--r--source/ku/sw/source/ui/web.po2
-rw-r--r--source/ku/sw/source/ui/wrtsh.po2
-rw-r--r--source/ku/sw/uiconfig/sw/ui.po281
-rw-r--r--source/ku/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/ku/swext/mediawiki/help.po2
-rw-r--r--source/ku/swext/mediawiki/src.po2
-rw-r--r--source/ku/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ku/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ku/sysui/desktop/share.po2
-rw-r--r--source/ku/tubes/uiconfig/ui.po2
-rw-r--r--source/ku/uui/source.po2
-rw-r--r--source/ku/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ku/vcl/source/edit.po2
-rw-r--r--source/ku/vcl/source/src.po2
-rw-r--r--source/ku/vcl/uiconfig/ui.po2
-rw-r--r--source/ku/wizards/source/euro.po2
-rw-r--r--source/ku/wizards/source/formwizard.po2
-rw-r--r--source/ku/wizards/source/importwizard.po2
-rw-r--r--source/ku/wizards/source/template.po2
-rw-r--r--source/ku/xmlsecurity/source/component.po2
-rw-r--r--source/ku/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ky/accessibility/source/helper.po2
-rw-r--r--source/ky/android/sdremote/res/values.po2
-rw-r--r--source/ky/avmedia/source/framework.po2
-rw-r--r--source/ky/avmedia/source/viewer.po2
-rw-r--r--source/ky/basctl/source/basicide.po2
-rw-r--r--source/ky/basctl/source/dlged.po2
-rw-r--r--source/ky/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ky/basic/source/classes.po22
-rw-r--r--source/ky/basic/source/sbx.po2
-rw-r--r--source/ky/chart2/source/controller/dialogs.po2
-rw-r--r--source/ky/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/connectivity/source/resource.po2
-rw-r--r--source/ky/cui/source/customize.po2
-rw-r--r--source/ky/cui/source/dialogs.po2
-rw-r--r--source/ky/cui/source/options.po2
-rw-r--r--source/ky/cui/source/tabpages.po2
-rw-r--r--source/ky/cui/uiconfig/ui.po2
-rw-r--r--source/ky/dbaccess/source/core/resource.po2
-rw-r--r--source/ky/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ky/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ky/dbaccess/source/ui/app.po2
-rw-r--r--source/ky/dbaccess/source/ui/browser.po2
-rw-r--r--source/ky/dbaccess/source/ui/control.po2
-rw-r--r--source/ky/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ky/dbaccess/source/ui/inc.po2
-rw-r--r--source/ky/dbaccess/source/ui/misc.po2
-rw-r--r--source/ky/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ky/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ky/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ky/dbaccess/source/ui/uno.po2
-rw-r--r--source/ky/desktop/source/app.po2
-rw-r--r--source/ky/desktop/source/deployment/gui.po2
-rw-r--r--source/ky/desktop/source/deployment/manager.po2
-rw-r--r--source/ky/desktop/source/deployment/misc.po2
-rw-r--r--source/ky/desktop/source/deployment/registry.po2
-rw-r--r--source/ky/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ky/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ky/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ky/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ky/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ky/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ky/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ky/desktop/uiconfig/ui.po2
-rw-r--r--source/ky/dictionaries/af_ZA.po2
-rw-r--r--source/ky/dictionaries/an_ES.po2
-rw-r--r--source/ky/dictionaries/ar.po2
-rw-r--r--source/ky/dictionaries/be_BY.po2
-rw-r--r--source/ky/dictionaries/bg_BG.po2
-rw-r--r--source/ky/dictionaries/bn_BD.po2
-rw-r--r--source/ky/dictionaries/br_FR.po2
-rw-r--r--source/ky/dictionaries/ca.po2
-rw-r--r--source/ky/dictionaries/cs_CZ.po2
-rw-r--r--source/ky/dictionaries/da_DK.po2
-rw-r--r--source/ky/dictionaries/de.po2
-rw-r--r--source/ky/dictionaries/el_GR.po2
-rw-r--r--source/ky/dictionaries/en.po2
-rw-r--r--source/ky/dictionaries/en/dialog.po2
-rw-r--r--source/ky/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ky/dictionaries/es.po2
-rw-r--r--source/ky/dictionaries/et_EE.po2
-rw-r--r--source/ky/dictionaries/fr_FR.po2
-rw-r--r--source/ky/dictionaries/gd_GB.po2
-rw-r--r--source/ky/dictionaries/gl.po2
-rw-r--r--source/ky/dictionaries/gu_IN.po2
-rw-r--r--source/ky/dictionaries/he_IL.po2
-rw-r--r--source/ky/dictionaries/hi_IN.po2
-rw-r--r--source/ky/dictionaries/hr_HR.po2
-rw-r--r--source/ky/dictionaries/hu_HU.po2
-rw-r--r--source/ky/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ky/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ky/dictionaries/it_IT.po2
-rw-r--r--source/ky/dictionaries/ku_TR.po2
-rw-r--r--source/ky/dictionaries/lt_LT.po2
-rw-r--r--source/ky/dictionaries/lv_LV.po2
-rw-r--r--source/ky/dictionaries/ne_NP.po2
-rw-r--r--source/ky/dictionaries/nl_NL.po2
-rw-r--r--source/ky/dictionaries/no.po2
-rw-r--r--source/ky/dictionaries/oc_FR.po2
-rw-r--r--source/ky/dictionaries/pl_PL.po2
-rw-r--r--source/ky/dictionaries/pt_BR.po2
-rw-r--r--source/ky/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ky/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ky/dictionaries/pt_PT.po2
-rw-r--r--source/ky/dictionaries/ro.po2
-rw-r--r--source/ky/dictionaries/ru_RU.po2
-rw-r--r--source/ky/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ky/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ky/dictionaries/si_LK.po2
-rw-r--r--source/ky/dictionaries/sk_SK.po2
-rw-r--r--source/ky/dictionaries/sl_SI.po2
-rw-r--r--source/ky/dictionaries/sr.po2
-rw-r--r--source/ky/dictionaries/sv_SE.po2
-rw-r--r--source/ky/dictionaries/sw_TZ.po2
-rw-r--r--source/ky/dictionaries/te_IN.po2
-rw-r--r--source/ky/dictionaries/th_TH.po2
-rw-r--r--source/ky/dictionaries/uk_UA.po2
-rw-r--r--source/ky/dictionaries/vi.po2
-rw-r--r--source/ky/dictionaries/zu_ZA.po2
-rw-r--r--source/ky/editeng/source/accessibility.po2
-rw-r--r--source/ky/editeng/source/editeng.po2
-rw-r--r--source/ky/editeng/source/items.po2
-rw-r--r--source/ky/editeng/source/misc.po2
-rw-r--r--source/ky/editeng/source/outliner.po2
-rw-r--r--source/ky/extensions/source/abpilot.po2
-rw-r--r--source/ky/extensions/source/bibliography.po2
-rw-r--r--source/ky/extensions/source/dbpilots.po2
-rw-r--r--source/ky/extensions/source/propctrlr.po2
-rw-r--r--source/ky/extensions/source/scanner.po2
-rw-r--r--source/ky/extensions/source/update/check.po2
-rw-r--r--source/ky/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ky/filter/source/config/fragments/filters.po2
-rw-r--r--source/ky/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ky/filter/source/config/fragments/types.po2
-rw-r--r--source/ky/filter/source/flash.po2
-rw-r--r--source/ky/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ky/filter/source/pdf.po2
-rw-r--r--source/ky/filter/source/t602.po2
-rw-r--r--source/ky/filter/source/xsltdialog.po2
-rw-r--r--source/ky/filter/uiconfig/ui.po2
-rw-r--r--source/ky/forms/source/resource.po2
-rw-r--r--source/ky/formula/source/core/resource.po38
-rw-r--r--source/ky/formula/source/ui/dlg.po2
-rw-r--r--source/ky/fpicker/source/office.po2
-rw-r--r--source/ky/framework/source/classes.po2
-rw-r--r--source/ky/framework/source/services.po2
-rw-r--r--source/ky/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/ky/librelogo/source/pythonpath.po2
-rw-r--r--source/ky/mysqlc/source.po2
-rw-r--r--source/ky/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ky/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ky/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ky/nlpsolver/src/locale.po2
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office.po4
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/ky/padmin/source.po2
-rw-r--r--source/ky/readlicense_oo/docs.po2
-rw-r--r--source/ky/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ky/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ky/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ky/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ky/reportbuilder/util.po2
-rw-r--r--source/ky/reportdesign/source/core/resource.po2
-rw-r--r--source/ky/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ky/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ky/reportdesign/source/ui/report.po2
-rw-r--r--source/ky/sc/source/core/src.po2
-rw-r--r--source/ky/sc/source/ui/cctrl.po2
-rw-r--r--source/ky/sc/source/ui/dbgui.po2
-rw-r--r--source/ky/sc/source/ui/docshell.po2
-rw-r--r--source/ky/sc/source/ui/drawfunc.po2
-rw-r--r--source/ky/sc/source/ui/formdlg.po2
-rw-r--r--source/ky/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ky/sc/source/ui/navipi.po2
-rw-r--r--source/ky/sc/source/ui/optdlg.po2
-rw-r--r--source/ky/sc/source/ui/pagedlg.po2
-rw-r--r--source/ky/sc/source/ui/src.po372
-rw-r--r--source/ky/sc/source/ui/styleui.po2
-rw-r--r--source/ky/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/ky/scaddins/source/analysis.po2
-rw-r--r--source/ky/scaddins/source/datefunc.po2
-rw-r--r--source/ky/scaddins/source/pricing.po2
-rw-r--r--source/ky/sccomp/source/solver.po2
-rw-r--r--source/ky/scp2/source/accessories.po2
-rw-r--r--source/ky/scp2/source/activex.po2
-rw-r--r--source/ky/scp2/source/base.po2
-rw-r--r--source/ky/scp2/source/calc.po2
-rw-r--r--source/ky/scp2/source/draw.po2
-rw-r--r--source/ky/scp2/source/extensions.po2
-rw-r--r--source/ky/scp2/source/gnome.po2
-rw-r--r--source/ky/scp2/source/graphicfilter.po2
-rw-r--r--source/ky/scp2/source/impress.po2
-rw-r--r--source/ky/scp2/source/javafilter.po2
-rw-r--r--source/ky/scp2/source/kde.po2
-rw-r--r--source/ky/scp2/source/math.po2
-rw-r--r--source/ky/scp2/source/onlineupdate.po2
-rw-r--r--source/ky/scp2/source/ooo.po2
-rw-r--r--source/ky/scp2/source/python.po18
-rw-r--r--source/ky/scp2/source/quickstart.po2
-rw-r--r--source/ky/scp2/source/sdkoo.po2
-rw-r--r--source/ky/scp2/source/smoketest.po2
-rw-r--r--source/ky/scp2/source/stdlibs.po2
-rw-r--r--source/ky/scp2/source/tde.po2
-rw-r--r--source/ky/scp2/source/winexplorerext.po2
-rw-r--r--source/ky/scp2/source/writer.po2
-rw-r--r--source/ky/scp2/source/xsltfilter.po2
-rw-r--r--source/ky/sd/source/core.po2
-rw-r--r--source/ky/sd/source/filter/html.po2
-rw-r--r--source/ky/sd/source/ui/accessibility.po2
-rw-r--r--source/ky/sd/source/ui/animations.po2
-rw-r--r--source/ky/sd/source/ui/annotations.po2
-rw-r--r--source/ky/sd/source/ui/app.po2
-rw-r--r--source/ky/sd/source/ui/dlg.po2
-rw-r--r--source/ky/sd/source/ui/slideshow.po2
-rw-r--r--source/ky/sd/source/ui/table.po2
-rw-r--r--source/ky/sd/source/ui/view.po2
-rw-r--r--source/ky/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ky/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ky/sdext/source/minimizer.po2
-rw-r--r--source/ky/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ky/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ky/setup_native/source/mac.po2
-rw-r--r--source/ky/sfx2/source/appl.po2
-rw-r--r--source/ky/sfx2/source/bastyp.po2
-rw-r--r--source/ky/sfx2/source/control.po23
-rw-r--r--source/ky/sfx2/source/dialog.po46
-rw-r--r--source/ky/sfx2/source/doc.po116
-rw-r--r--source/ky/sfx2/source/menu.po2
-rw-r--r--source/ky/sfx2/source/view.po2
-rw-r--r--source/ky/sfx2/uiconfig/ui.po2
-rw-r--r--source/ky/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ky/starmath/source.po2
-rw-r--r--source/ky/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ky/svl/source/items.po2
-rw-r--r--source/ky/svl/source/misc.po2
-rw-r--r--source/ky/svtools/source/contnr.po2
-rw-r--r--source/ky/svtools/source/control.po2
-rw-r--r--source/ky/svtools/source/dialogs.po2
-rw-r--r--source/ky/svtools/source/java.po2
-rw-r--r--source/ky/svtools/source/misc.po2
-rw-r--r--source/ky/svtools/source/toolpanel.po2
-rw-r--r--source/ky/svtools/uiconfig/ui.po37
-rw-r--r--source/ky/svx/inc.po2
-rw-r--r--source/ky/svx/source/accessibility.po2
-rw-r--r--source/ky/svx/source/core.po2
-rw-r--r--source/ky/svx/source/dialog.po217
-rw-r--r--source/ky/svx/source/engine3d.po2
-rw-r--r--source/ky/svx/source/fmcomp.po2
-rw-r--r--source/ky/svx/source/form.po2
-rw-r--r--source/ky/svx/source/gallery2.po2
-rw-r--r--source/ky/svx/source/items.po2
-rw-r--r--source/ky/svx/source/src.po2
-rw-r--r--source/ky/svx/source/stbctrls.po2
-rw-r--r--source/ky/svx/source/svdraw.po2
-rw-r--r--source/ky/svx/source/table.po2
-rw-r--r--source/ky/svx/source/tbxctrls.po2
-rw-r--r--source/ky/svx/source/toolbars.po2
-rw-r--r--source/ky/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ky/svx/uiconfig/ui.po204
-rw-r--r--source/ky/sw/source/core/layout.po2
-rw-r--r--source/ky/sw/source/core/undo.po2
-rw-r--r--source/ky/sw/source/core/unocore.po2
-rw-r--r--source/ky/sw/source/ui/app.po2
-rw-r--r--source/ky/sw/source/ui/chrdlg.po2
-rw-r--r--source/ky/sw/source/ui/config.po2
-rw-r--r--source/ky/sw/source/ui/dbui.po2
-rw-r--r--source/ky/sw/source/ui/dialog.po2
-rw-r--r--source/ky/sw/source/ui/dochdl.po2
-rw-r--r--source/ky/sw/source/ui/docvw.po2
-rw-r--r--source/ky/sw/source/ui/envelp.po2
-rw-r--r--source/ky/sw/source/ui/fldui.po2
-rw-r--r--source/ky/sw/source/ui/fmtui.po2
-rw-r--r--source/ky/sw/source/ui/frmdlg.po2
-rw-r--r--source/ky/sw/source/ui/globdoc.po2
-rw-r--r--source/ky/sw/source/ui/index.po2
-rw-r--r--source/ky/sw/source/ui/lingu.po2
-rw-r--r--source/ky/sw/source/ui/misc.po2
-rw-r--r--source/ky/sw/source/ui/ribbar.po2
-rw-r--r--source/ky/sw/source/ui/shells.po2
-rw-r--r--source/ky/sw/source/ui/smartmenu.po2
-rw-r--r--source/ky/sw/source/ui/table.po2
-rw-r--r--source/ky/sw/source/ui/uiview.po2
-rw-r--r--source/ky/sw/source/ui/utlui.po2
-rw-r--r--source/ky/sw/source/ui/web.po2
-rw-r--r--source/ky/sw/source/ui/wrtsh.po2
-rw-r--r--source/ky/sw/uiconfig/sw/ui.po276
-rw-r--r--source/ky/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/ky/swext/mediawiki/help.po2
-rw-r--r--source/ky/swext/mediawiki/src.po2
-rw-r--r--source/ky/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ky/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ky/sysui/desktop/share.po2
-rw-r--r--source/ky/tubes/uiconfig/ui.po2
-rw-r--r--source/ky/uui/source.po2
-rw-r--r--source/ky/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ky/vcl/source/edit.po2
-rw-r--r--source/ky/vcl/source/src.po2
-rw-r--r--source/ky/vcl/uiconfig/ui.po2
-rw-r--r--source/ky/wizards/source/euro.po2
-rw-r--r--source/ky/wizards/source/formwizard.po2
-rw-r--r--source/ky/wizards/source/importwizard.po2
-rw-r--r--source/ky/wizards/source/template.po2
-rw-r--r--source/ky/xmlsecurity/source/component.po2
-rw-r--r--source/ky/xmlsecurity/source/dialogs.po2
-rw-r--r--source/lb/accessibility/source/helper.po2
-rw-r--r--source/lb/android/sdremote/res/values.po2
-rw-r--r--source/lb/avmedia/source/framework.po2
-rw-r--r--source/lb/avmedia/source/viewer.po2
-rw-r--r--source/lb/basctl/source/basicide.po2
-rw-r--r--source/lb/basctl/source/dlged.po2
-rw-r--r--source/lb/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/lb/basic/source/classes.po2
-rw-r--r--source/lb/basic/source/sbx.po2
-rw-r--r--source/lb/chart2/source/controller/dialogs.po2
-rw-r--r--source/lb/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/connectivity/source/resource.po2
-rw-r--r--source/lb/cui/source/customize.po2
-rw-r--r--source/lb/cui/source/dialogs.po2
-rw-r--r--source/lb/cui/source/options.po2
-rw-r--r--source/lb/cui/source/tabpages.po2
-rw-r--r--source/lb/cui/uiconfig/ui.po2
-rw-r--r--source/lb/dbaccess/source/core/resource.po2
-rw-r--r--source/lb/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/lb/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/lb/dbaccess/source/ui/app.po2
-rw-r--r--source/lb/dbaccess/source/ui/browser.po2
-rw-r--r--source/lb/dbaccess/source/ui/control.po2
-rw-r--r--source/lb/dbaccess/source/ui/dlg.po2
-rw-r--r--source/lb/dbaccess/source/ui/inc.po2
-rw-r--r--source/lb/dbaccess/source/ui/misc.po2
-rw-r--r--source/lb/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/lb/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/lb/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/lb/dbaccess/source/ui/uno.po2
-rw-r--r--source/lb/desktop/source/app.po2
-rw-r--r--source/lb/desktop/source/deployment/gui.po2
-rw-r--r--source/lb/desktop/source/deployment/manager.po2
-rw-r--r--source/lb/desktop/source/deployment/misc.po2
-rw-r--r--source/lb/desktop/source/deployment/registry.po2
-rw-r--r--source/lb/desktop/source/deployment/registry/component.po2
-rw-r--r--source/lb/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/lb/desktop/source/deployment/registry/help.po2
-rw-r--r--source/lb/desktop/source/deployment/registry/package.po2
-rw-r--r--source/lb/desktop/source/deployment/registry/script.po2
-rw-r--r--source/lb/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/lb/desktop/source/deployment/unopkg.po2
-rw-r--r--source/lb/desktop/uiconfig/ui.po2
-rw-r--r--source/lb/dictionaries/af_ZA.po2
-rw-r--r--source/lb/dictionaries/an_ES.po2
-rw-r--r--source/lb/dictionaries/ar.po2
-rw-r--r--source/lb/dictionaries/be_BY.po2
-rw-r--r--source/lb/dictionaries/bg_BG.po2
-rw-r--r--source/lb/dictionaries/bn_BD.po2
-rw-r--r--source/lb/dictionaries/br_FR.po2
-rw-r--r--source/lb/dictionaries/ca.po2
-rw-r--r--source/lb/dictionaries/cs_CZ.po2
-rw-r--r--source/lb/dictionaries/da_DK.po2
-rw-r--r--source/lb/dictionaries/de.po2
-rw-r--r--source/lb/dictionaries/el_GR.po2
-rw-r--r--source/lb/dictionaries/en.po2
-rw-r--r--source/lb/dictionaries/en/dialog.po2
-rw-r--r--source/lb/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lb/dictionaries/es.po2
-rw-r--r--source/lb/dictionaries/et_EE.po2
-rw-r--r--source/lb/dictionaries/fr_FR.po2
-rw-r--r--source/lb/dictionaries/gd_GB.po2
-rw-r--r--source/lb/dictionaries/gl.po2
-rw-r--r--source/lb/dictionaries/gu_IN.po2
-rw-r--r--source/lb/dictionaries/he_IL.po2
-rw-r--r--source/lb/dictionaries/hi_IN.po2
-rw-r--r--source/lb/dictionaries/hr_HR.po2
-rw-r--r--source/lb/dictionaries/hu_HU.po2
-rw-r--r--source/lb/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/lb/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lb/dictionaries/it_IT.po2
-rw-r--r--source/lb/dictionaries/ku_TR.po2
-rw-r--r--source/lb/dictionaries/lt_LT.po2
-rw-r--r--source/lb/dictionaries/lv_LV.po2
-rw-r--r--source/lb/dictionaries/ne_NP.po2
-rw-r--r--source/lb/dictionaries/nl_NL.po2
-rw-r--r--source/lb/dictionaries/no.po2
-rw-r--r--source/lb/dictionaries/oc_FR.po2
-rw-r--r--source/lb/dictionaries/pl_PL.po2
-rw-r--r--source/lb/dictionaries/pt_BR.po2
-rw-r--r--source/lb/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/lb/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lb/dictionaries/pt_PT.po2
-rw-r--r--source/lb/dictionaries/ro.po2
-rw-r--r--source/lb/dictionaries/ru_RU.po2
-rw-r--r--source/lb/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/lb/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lb/dictionaries/si_LK.po2
-rw-r--r--source/lb/dictionaries/sk_SK.po2
-rw-r--r--source/lb/dictionaries/sl_SI.po2
-rw-r--r--source/lb/dictionaries/sr.po2
-rw-r--r--source/lb/dictionaries/sv_SE.po2
-rw-r--r--source/lb/dictionaries/sw_TZ.po2
-rw-r--r--source/lb/dictionaries/te_IN.po2
-rw-r--r--source/lb/dictionaries/th_TH.po2
-rw-r--r--source/lb/dictionaries/uk_UA.po2
-rw-r--r--source/lb/dictionaries/vi.po2
-rw-r--r--source/lb/dictionaries/zu_ZA.po2
-rw-r--r--source/lb/editeng/source/accessibility.po2
-rw-r--r--source/lb/editeng/source/editeng.po2
-rw-r--r--source/lb/editeng/source/items.po2
-rw-r--r--source/lb/editeng/source/misc.po2
-rw-r--r--source/lb/editeng/source/outliner.po2
-rw-r--r--source/lb/extensions/source/abpilot.po2
-rw-r--r--source/lb/extensions/source/bibliography.po2
-rw-r--r--source/lb/extensions/source/dbpilots.po2
-rw-r--r--source/lb/extensions/source/propctrlr.po2
-rw-r--r--source/lb/extensions/source/scanner.po2
-rw-r--r--source/lb/extensions/source/update/check.po2
-rw-r--r--source/lb/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/lb/filter/source/config/fragments/filters.po2
-rw-r--r--source/lb/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/lb/filter/source/config/fragments/types.po2
-rw-r--r--source/lb/filter/source/flash.po2
-rw-r--r--source/lb/filter/source/graphicfilter/eps.po2
-rw-r--r--source/lb/filter/source/pdf.po2
-rw-r--r--source/lb/filter/source/t602.po2
-rw-r--r--source/lb/filter/source/xsltdialog.po2
-rw-r--r--source/lb/filter/uiconfig/ui.po2
-rw-r--r--source/lb/forms/source/resource.po2
-rw-r--r--source/lb/formula/source/core/resource.po38
-rw-r--r--source/lb/formula/source/ui/dlg.po2
-rw-r--r--source/lb/fpicker/source/office.po2
-rw-r--r--source/lb/framework/source/classes.po2
-rw-r--r--source/lb/framework/source/services.po2
-rw-r--r--source/lb/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/lb/librelogo/source/pythonpath.po2
-rw-r--r--source/lb/mysqlc/source.po2
-rw-r--r--source/lb/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lb/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/lb/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/lb/nlpsolver/src/locale.po2
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office.po4
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/lb/padmin/source.po2
-rw-r--r--source/lb/readlicense_oo/docs.po2
-rw-r--r--source/lb/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/lb/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lb/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/lb/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/lb/reportbuilder/util.po2
-rw-r--r--source/lb/reportdesign/source/core/resource.po2
-rw-r--r--source/lb/reportdesign/source/ui/dlg.po2
-rw-r--r--source/lb/reportdesign/source/ui/inspection.po2
-rw-r--r--source/lb/reportdesign/source/ui/report.po2
-rw-r--r--source/lb/sc/source/core/src.po2
-rw-r--r--source/lb/sc/source/ui/cctrl.po2
-rw-r--r--source/lb/sc/source/ui/dbgui.po2
-rw-r--r--source/lb/sc/source/ui/docshell.po2
-rw-r--r--source/lb/sc/source/ui/drawfunc.po2
-rw-r--r--source/lb/sc/source/ui/formdlg.po2
-rw-r--r--source/lb/sc/source/ui/miscdlgs.po2
-rw-r--r--source/lb/sc/source/ui/navipi.po2
-rw-r--r--source/lb/sc/source/ui/optdlg.po2
-rw-r--r--source/lb/sc/source/ui/pagedlg.po2
-rw-r--r--source/lb/sc/source/ui/src.po374
-rw-r--r--source/lb/sc/source/ui/styleui.po2
-rw-r--r--source/lb/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/lb/scaddins/source/analysis.po2
-rw-r--r--source/lb/scaddins/source/datefunc.po2
-rw-r--r--source/lb/scaddins/source/pricing.po2
-rw-r--r--source/lb/sccomp/source/solver.po2
-rw-r--r--source/lb/scp2/source/accessories.po2
-rw-r--r--source/lb/scp2/source/activex.po2
-rw-r--r--source/lb/scp2/source/base.po2
-rw-r--r--source/lb/scp2/source/calc.po2
-rw-r--r--source/lb/scp2/source/draw.po2
-rw-r--r--source/lb/scp2/source/extensions.po2
-rw-r--r--source/lb/scp2/source/gnome.po2
-rw-r--r--source/lb/scp2/source/graphicfilter.po2
-rw-r--r--source/lb/scp2/source/impress.po2
-rw-r--r--source/lb/scp2/source/javafilter.po2
-rw-r--r--source/lb/scp2/source/kde.po2
-rw-r--r--source/lb/scp2/source/math.po2
-rw-r--r--source/lb/scp2/source/onlineupdate.po2
-rw-r--r--source/lb/scp2/source/ooo.po2
-rw-r--r--source/lb/scp2/source/python.po18
-rw-r--r--source/lb/scp2/source/quickstart.po2
-rw-r--r--source/lb/scp2/source/sdkoo.po2
-rw-r--r--source/lb/scp2/source/smoketest.po2
-rw-r--r--source/lb/scp2/source/stdlibs.po2
-rw-r--r--source/lb/scp2/source/tde.po2
-rw-r--r--source/lb/scp2/source/winexplorerext.po2
-rw-r--r--source/lb/scp2/source/writer.po2
-rw-r--r--source/lb/scp2/source/xsltfilter.po2
-rw-r--r--source/lb/sd/source/core.po2
-rw-r--r--source/lb/sd/source/filter/html.po2
-rw-r--r--source/lb/sd/source/ui/accessibility.po2
-rw-r--r--source/lb/sd/source/ui/animations.po2
-rw-r--r--source/lb/sd/source/ui/annotations.po2
-rw-r--r--source/lb/sd/source/ui/app.po2
-rw-r--r--source/lb/sd/source/ui/dlg.po2
-rw-r--r--source/lb/sd/source/ui/slideshow.po2
-rw-r--r--source/lb/sd/source/ui/table.po2
-rw-r--r--source/lb/sd/source/ui/view.po2
-rw-r--r--source/lb/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/lb/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/lb/sdext/source/minimizer.po2
-rw-r--r--source/lb/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lb/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/lb/setup_native/source/mac.po2
-rw-r--r--source/lb/sfx2/source/appl.po2
-rw-r--r--source/lb/sfx2/source/bastyp.po2
-rw-r--r--source/lb/sfx2/source/control.po23
-rw-r--r--source/lb/sfx2/source/dialog.po46
-rw-r--r--source/lb/sfx2/source/doc.po131
-rw-r--r--source/lb/sfx2/source/menu.po2
-rw-r--r--source/lb/sfx2/source/view.po2
-rw-r--r--source/lb/sfx2/uiconfig/ui.po2
-rw-r--r--source/lb/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/lb/starmath/source.po2
-rw-r--r--source/lb/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/lb/svl/source/items.po2
-rw-r--r--source/lb/svl/source/misc.po2
-rw-r--r--source/lb/svtools/source/contnr.po2
-rw-r--r--source/lb/svtools/source/control.po2
-rw-r--r--source/lb/svtools/source/dialogs.po2
-rw-r--r--source/lb/svtools/source/java.po2
-rw-r--r--source/lb/svtools/source/misc.po2
-rw-r--r--source/lb/svtools/source/toolpanel.po2
-rw-r--r--source/lb/svtools/uiconfig/ui.po55
-rw-r--r--source/lb/svx/inc.po2
-rw-r--r--source/lb/svx/source/accessibility.po2
-rw-r--r--source/lb/svx/source/core.po2
-rw-r--r--source/lb/svx/source/dialog.po223
-rw-r--r--source/lb/svx/source/engine3d.po2
-rw-r--r--source/lb/svx/source/fmcomp.po2
-rw-r--r--source/lb/svx/source/form.po2
-rw-r--r--source/lb/svx/source/gallery2.po2
-rw-r--r--source/lb/svx/source/items.po2
-rw-r--r--source/lb/svx/source/src.po2
-rw-r--r--source/lb/svx/source/stbctrls.po2
-rw-r--r--source/lb/svx/source/svdraw.po2
-rw-r--r--source/lb/svx/source/table.po2
-rw-r--r--source/lb/svx/source/tbxctrls.po2
-rw-r--r--source/lb/svx/source/toolbars.po2
-rw-r--r--source/lb/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/lb/svx/uiconfig/ui.po204
-rw-r--r--source/lb/sw/source/core/layout.po2
-rw-r--r--source/lb/sw/source/core/undo.po2
-rw-r--r--source/lb/sw/source/core/unocore.po2
-rw-r--r--source/lb/sw/source/ui/app.po2
-rw-r--r--source/lb/sw/source/ui/chrdlg.po2
-rw-r--r--source/lb/sw/source/ui/config.po2
-rw-r--r--source/lb/sw/source/ui/dbui.po2
-rw-r--r--source/lb/sw/source/ui/dialog.po2
-rw-r--r--source/lb/sw/source/ui/dochdl.po2
-rw-r--r--source/lb/sw/source/ui/docvw.po2
-rw-r--r--source/lb/sw/source/ui/envelp.po2
-rw-r--r--source/lb/sw/source/ui/fldui.po2
-rw-r--r--source/lb/sw/source/ui/fmtui.po2
-rw-r--r--source/lb/sw/source/ui/frmdlg.po2
-rw-r--r--source/lb/sw/source/ui/globdoc.po2
-rw-r--r--source/lb/sw/source/ui/index.po2
-rw-r--r--source/lb/sw/source/ui/lingu.po2
-rw-r--r--source/lb/sw/source/ui/misc.po2
-rw-r--r--source/lb/sw/source/ui/ribbar.po2
-rw-r--r--source/lb/sw/source/ui/shells.po2
-rw-r--r--source/lb/sw/source/ui/smartmenu.po2
-rw-r--r--source/lb/sw/source/ui/table.po2
-rw-r--r--source/lb/sw/source/ui/uiview.po2
-rw-r--r--source/lb/sw/source/ui/utlui.po2
-rw-r--r--source/lb/sw/source/ui/web.po2
-rw-r--r--source/lb/sw/source/ui/wrtsh.po2
-rw-r--r--source/lb/sw/uiconfig/sw/ui.po280
-rw-r--r--source/lb/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/lb/swext/mediawiki/help.po2
-rw-r--r--source/lb/swext/mediawiki/src.po2
-rw-r--r--source/lb/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lb/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/lb/sysui/desktop/share.po2
-rw-r--r--source/lb/tubes/uiconfig/ui.po2
-rw-r--r--source/lb/uui/source.po2
-rw-r--r--source/lb/vcl/qa/cppunit/builder.po2
-rw-r--r--source/lb/vcl/source/edit.po2
-rw-r--r--source/lb/vcl/source/src.po2
-rw-r--r--source/lb/vcl/uiconfig/ui.po2
-rw-r--r--source/lb/wizards/source/euro.po2
-rw-r--r--source/lb/wizards/source/formwizard.po2
-rw-r--r--source/lb/wizards/source/importwizard.po2
-rw-r--r--source/lb/wizards/source/template.po2
-rw-r--r--source/lb/xmlsecurity/source/component.po2
-rw-r--r--source/lb/xmlsecurity/source/dialogs.po2
-rw-r--r--source/lo/accessibility/source/helper.po2
-rw-r--r--source/lo/android/sdremote/res/values.po2
-rw-r--r--source/lo/avmedia/source/framework.po2
-rw-r--r--source/lo/avmedia/source/viewer.po2
-rw-r--r--source/lo/basctl/source/basicide.po2
-rw-r--r--source/lo/basctl/source/dlged.po2
-rw-r--r--source/lo/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/lo/basic/source/classes.po2
-rw-r--r--source/lo/basic/source/sbx.po2
-rw-r--r--source/lo/chart2/source/controller/dialogs.po2
-rw-r--r--source/lo/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/connectivity/source/resource.po2
-rw-r--r--source/lo/cui/source/customize.po2
-rw-r--r--source/lo/cui/source/dialogs.po2
-rw-r--r--source/lo/cui/source/options.po2
-rw-r--r--source/lo/cui/source/tabpages.po2
-rw-r--r--source/lo/cui/uiconfig/ui.po2
-rw-r--r--source/lo/dbaccess/source/core/resource.po2
-rw-r--r--source/lo/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/lo/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/lo/dbaccess/source/ui/app.po2
-rw-r--r--source/lo/dbaccess/source/ui/browser.po2
-rw-r--r--source/lo/dbaccess/source/ui/control.po2
-rw-r--r--source/lo/dbaccess/source/ui/dlg.po2
-rw-r--r--source/lo/dbaccess/source/ui/inc.po2
-rw-r--r--source/lo/dbaccess/source/ui/misc.po2
-rw-r--r--source/lo/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/lo/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/lo/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/lo/dbaccess/source/ui/uno.po2
-rw-r--r--source/lo/desktop/source/app.po2
-rw-r--r--source/lo/desktop/source/deployment/gui.po2
-rw-r--r--source/lo/desktop/source/deployment/manager.po2
-rw-r--r--source/lo/desktop/source/deployment/misc.po2
-rw-r--r--source/lo/desktop/source/deployment/registry.po2
-rw-r--r--source/lo/desktop/source/deployment/registry/component.po2
-rw-r--r--source/lo/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/lo/desktop/source/deployment/registry/help.po2
-rw-r--r--source/lo/desktop/source/deployment/registry/package.po2
-rw-r--r--source/lo/desktop/source/deployment/registry/script.po2
-rw-r--r--source/lo/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/lo/desktop/source/deployment/unopkg.po2
-rw-r--r--source/lo/desktop/uiconfig/ui.po2
-rw-r--r--source/lo/dictionaries/af_ZA.po2
-rw-r--r--source/lo/dictionaries/an_ES.po2
-rw-r--r--source/lo/dictionaries/ar.po2
-rw-r--r--source/lo/dictionaries/be_BY.po2
-rw-r--r--source/lo/dictionaries/bg_BG.po2
-rw-r--r--source/lo/dictionaries/bn_BD.po2
-rw-r--r--source/lo/dictionaries/br_FR.po2
-rw-r--r--source/lo/dictionaries/ca.po2
-rw-r--r--source/lo/dictionaries/cs_CZ.po2
-rw-r--r--source/lo/dictionaries/da_DK.po2
-rw-r--r--source/lo/dictionaries/de.po2
-rw-r--r--source/lo/dictionaries/el_GR.po2
-rw-r--r--source/lo/dictionaries/en.po2
-rw-r--r--source/lo/dictionaries/en/dialog.po2
-rw-r--r--source/lo/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lo/dictionaries/es.po2
-rw-r--r--source/lo/dictionaries/et_EE.po2
-rw-r--r--source/lo/dictionaries/fr_FR.po2
-rw-r--r--source/lo/dictionaries/gd_GB.po2
-rw-r--r--source/lo/dictionaries/gl.po2
-rw-r--r--source/lo/dictionaries/gu_IN.po2
-rw-r--r--source/lo/dictionaries/he_IL.po2
-rw-r--r--source/lo/dictionaries/hi_IN.po2
-rw-r--r--source/lo/dictionaries/hr_HR.po2
-rw-r--r--source/lo/dictionaries/hu_HU.po2
-rw-r--r--source/lo/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/lo/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lo/dictionaries/it_IT.po2
-rw-r--r--source/lo/dictionaries/ku_TR.po2
-rw-r--r--source/lo/dictionaries/lt_LT.po2
-rw-r--r--source/lo/dictionaries/lv_LV.po2
-rw-r--r--source/lo/dictionaries/ne_NP.po2
-rw-r--r--source/lo/dictionaries/nl_NL.po2
-rw-r--r--source/lo/dictionaries/no.po2
-rw-r--r--source/lo/dictionaries/oc_FR.po2
-rw-r--r--source/lo/dictionaries/pl_PL.po2
-rw-r--r--source/lo/dictionaries/pt_BR.po2
-rw-r--r--source/lo/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/lo/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lo/dictionaries/pt_PT.po2
-rw-r--r--source/lo/dictionaries/ro.po2
-rw-r--r--source/lo/dictionaries/ru_RU.po2
-rw-r--r--source/lo/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/lo/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lo/dictionaries/si_LK.po2
-rw-r--r--source/lo/dictionaries/sk_SK.po2
-rw-r--r--source/lo/dictionaries/sl_SI.po2
-rw-r--r--source/lo/dictionaries/sr.po2
-rw-r--r--source/lo/dictionaries/sv_SE.po2
-rw-r--r--source/lo/dictionaries/sw_TZ.po2
-rw-r--r--source/lo/dictionaries/te_IN.po2
-rw-r--r--source/lo/dictionaries/th_TH.po2
-rw-r--r--source/lo/dictionaries/uk_UA.po2
-rw-r--r--source/lo/dictionaries/vi.po2
-rw-r--r--source/lo/dictionaries/zu_ZA.po2
-rw-r--r--source/lo/editeng/source/accessibility.po2
-rw-r--r--source/lo/editeng/source/editeng.po2
-rw-r--r--source/lo/editeng/source/items.po2
-rw-r--r--source/lo/editeng/source/misc.po2
-rw-r--r--source/lo/editeng/source/outliner.po2
-rw-r--r--source/lo/extensions/source/abpilot.po2
-rw-r--r--source/lo/extensions/source/bibliography.po2
-rw-r--r--source/lo/extensions/source/dbpilots.po2
-rw-r--r--source/lo/extensions/source/propctrlr.po2
-rw-r--r--source/lo/extensions/source/scanner.po2
-rw-r--r--source/lo/extensions/source/update/check.po2
-rw-r--r--source/lo/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/lo/filter/source/config/fragments/filters.po2
-rw-r--r--source/lo/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/lo/filter/source/config/fragments/types.po2
-rw-r--r--source/lo/filter/source/flash.po2
-rw-r--r--source/lo/filter/source/graphicfilter/eps.po2
-rw-r--r--source/lo/filter/source/pdf.po2
-rw-r--r--source/lo/filter/source/t602.po2
-rw-r--r--source/lo/filter/source/xsltdialog.po2
-rw-r--r--source/lo/filter/uiconfig/ui.po2
-rw-r--r--source/lo/forms/source/resource.po2
-rw-r--r--source/lo/formula/source/core/resource.po38
-rw-r--r--source/lo/formula/source/ui/dlg.po2
-rw-r--r--source/lo/fpicker/source/office.po2
-rw-r--r--source/lo/framework/source/classes.po2
-rw-r--r--source/lo/framework/source/services.po2
-rw-r--r--source/lo/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/lo/librelogo/source/pythonpath.po2
-rw-r--r--source/lo/mysqlc/source.po2
-rw-r--r--source/lo/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lo/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/lo/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/lo/nlpsolver/src/locale.po2
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/lo/padmin/source.po2
-rw-r--r--source/lo/readlicense_oo/docs.po2
-rw-r--r--source/lo/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/lo/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lo/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/lo/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/lo/reportbuilder/util.po2
-rw-r--r--source/lo/reportdesign/source/core/resource.po2
-rw-r--r--source/lo/reportdesign/source/ui/dlg.po2
-rw-r--r--source/lo/reportdesign/source/ui/inspection.po2
-rw-r--r--source/lo/reportdesign/source/ui/report.po2
-rw-r--r--source/lo/sc/source/core/src.po2
-rw-r--r--source/lo/sc/source/ui/cctrl.po2
-rw-r--r--source/lo/sc/source/ui/dbgui.po2
-rw-r--r--source/lo/sc/source/ui/docshell.po2
-rw-r--r--source/lo/sc/source/ui/drawfunc.po2
-rw-r--r--source/lo/sc/source/ui/formdlg.po2
-rw-r--r--source/lo/sc/source/ui/miscdlgs.po2
-rw-r--r--source/lo/sc/source/ui/navipi.po2
-rw-r--r--source/lo/sc/source/ui/optdlg.po2
-rw-r--r--source/lo/sc/source/ui/pagedlg.po2
-rw-r--r--source/lo/sc/source/ui/src.po389
-rw-r--r--source/lo/sc/source/ui/styleui.po2
-rw-r--r--source/lo/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/lo/scaddins/source/analysis.po2
-rw-r--r--source/lo/scaddins/source/datefunc.po2
-rw-r--r--source/lo/scaddins/source/pricing.po2
-rw-r--r--source/lo/sccomp/source/solver.po2
-rw-r--r--source/lo/scp2/source/accessories.po2
-rw-r--r--source/lo/scp2/source/activex.po2
-rw-r--r--source/lo/scp2/source/base.po2
-rw-r--r--source/lo/scp2/source/calc.po2
-rw-r--r--source/lo/scp2/source/draw.po2
-rw-r--r--source/lo/scp2/source/extensions.po2
-rw-r--r--source/lo/scp2/source/gnome.po2
-rw-r--r--source/lo/scp2/source/graphicfilter.po2
-rw-r--r--source/lo/scp2/source/impress.po2
-rw-r--r--source/lo/scp2/source/javafilter.po2
-rw-r--r--source/lo/scp2/source/kde.po2
-rw-r--r--source/lo/scp2/source/math.po2
-rw-r--r--source/lo/scp2/source/onlineupdate.po2
-rw-r--r--source/lo/scp2/source/ooo.po2
-rw-r--r--source/lo/scp2/source/python.po18
-rw-r--r--source/lo/scp2/source/quickstart.po2
-rw-r--r--source/lo/scp2/source/sdkoo.po2
-rw-r--r--source/lo/scp2/source/smoketest.po2
-rw-r--r--source/lo/scp2/source/stdlibs.po2
-rw-r--r--source/lo/scp2/source/tde.po2
-rw-r--r--source/lo/scp2/source/winexplorerext.po2
-rw-r--r--source/lo/scp2/source/writer.po2
-rw-r--r--source/lo/scp2/source/xsltfilter.po2
-rw-r--r--source/lo/sd/source/core.po2
-rw-r--r--source/lo/sd/source/filter/html.po2
-rw-r--r--source/lo/sd/source/ui/accessibility.po2
-rw-r--r--source/lo/sd/source/ui/animations.po2
-rw-r--r--source/lo/sd/source/ui/annotations.po2
-rw-r--r--source/lo/sd/source/ui/app.po2
-rw-r--r--source/lo/sd/source/ui/dlg.po2
-rw-r--r--source/lo/sd/source/ui/slideshow.po2
-rw-r--r--source/lo/sd/source/ui/table.po2
-rw-r--r--source/lo/sd/source/ui/view.po2
-rw-r--r--source/lo/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/lo/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/lo/sdext/source/minimizer.po2
-rw-r--r--source/lo/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lo/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/lo/setup_native/source/mac.po2
-rw-r--r--source/lo/sfx2/source/appl.po2
-rw-r--r--source/lo/sfx2/source/bastyp.po2
-rw-r--r--source/lo/sfx2/source/control.po23
-rw-r--r--source/lo/sfx2/source/dialog.po46
-rw-r--r--source/lo/sfx2/source/doc.po126
-rw-r--r--source/lo/sfx2/source/menu.po2
-rw-r--r--source/lo/sfx2/source/view.po2
-rw-r--r--source/lo/sfx2/uiconfig/ui.po2
-rw-r--r--source/lo/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/lo/starmath/source.po2
-rw-r--r--source/lo/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/lo/svl/source/items.po2
-rw-r--r--source/lo/svl/source/misc.po2
-rw-r--r--source/lo/svtools/source/contnr.po2
-rw-r--r--source/lo/svtools/source/control.po2
-rw-r--r--source/lo/svtools/source/dialogs.po2
-rw-r--r--source/lo/svtools/source/java.po2
-rw-r--r--source/lo/svtools/source/misc.po2
-rw-r--r--source/lo/svtools/source/toolpanel.po2
-rw-r--r--source/lo/svtools/uiconfig/ui.po55
-rw-r--r--source/lo/svx/inc.po2
-rw-r--r--source/lo/svx/source/accessibility.po2
-rw-r--r--source/lo/svx/source/core.po2
-rw-r--r--source/lo/svx/source/dialog.po222
-rw-r--r--source/lo/svx/source/engine3d.po2
-rw-r--r--source/lo/svx/source/fmcomp.po2
-rw-r--r--source/lo/svx/source/form.po2
-rw-r--r--source/lo/svx/source/gallery2.po2
-rw-r--r--source/lo/svx/source/items.po2
-rw-r--r--source/lo/svx/source/src.po2
-rw-r--r--source/lo/svx/source/stbctrls.po2
-rw-r--r--source/lo/svx/source/svdraw.po2
-rw-r--r--source/lo/svx/source/table.po2
-rw-r--r--source/lo/svx/source/tbxctrls.po2
-rw-r--r--source/lo/svx/source/toolbars.po2
-rw-r--r--source/lo/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/lo/svx/uiconfig/ui.po204
-rw-r--r--source/lo/sw/source/core/layout.po2
-rw-r--r--source/lo/sw/source/core/undo.po2
-rw-r--r--source/lo/sw/source/core/unocore.po2
-rw-r--r--source/lo/sw/source/ui/app.po2
-rw-r--r--source/lo/sw/source/ui/chrdlg.po2
-rw-r--r--source/lo/sw/source/ui/config.po2
-rw-r--r--source/lo/sw/source/ui/dbui.po2
-rw-r--r--source/lo/sw/source/ui/dialog.po2
-rw-r--r--source/lo/sw/source/ui/dochdl.po2
-rw-r--r--source/lo/sw/source/ui/docvw.po2
-rw-r--r--source/lo/sw/source/ui/envelp.po2
-rw-r--r--source/lo/sw/source/ui/fldui.po2
-rw-r--r--source/lo/sw/source/ui/fmtui.po2
-rw-r--r--source/lo/sw/source/ui/frmdlg.po2
-rw-r--r--source/lo/sw/source/ui/globdoc.po2
-rw-r--r--source/lo/sw/source/ui/index.po2
-rw-r--r--source/lo/sw/source/ui/lingu.po2
-rw-r--r--source/lo/sw/source/ui/misc.po2
-rw-r--r--source/lo/sw/source/ui/ribbar.po2
-rw-r--r--source/lo/sw/source/ui/shells.po2
-rw-r--r--source/lo/sw/source/ui/smartmenu.po2
-rw-r--r--source/lo/sw/source/ui/table.po2
-rw-r--r--source/lo/sw/source/ui/uiview.po2
-rw-r--r--source/lo/sw/source/ui/utlui.po2
-rw-r--r--source/lo/sw/source/ui/web.po2
-rw-r--r--source/lo/sw/source/ui/wrtsh.po2
-rw-r--r--source/lo/sw/uiconfig/sw/ui.po288
-rw-r--r--source/lo/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/lo/swext/mediawiki/help.po2
-rw-r--r--source/lo/swext/mediawiki/src.po2
-rw-r--r--source/lo/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lo/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/lo/sysui/desktop/share.po2
-rw-r--r--source/lo/tubes/uiconfig/ui.po2
-rw-r--r--source/lo/uui/source.po2
-rw-r--r--source/lo/vcl/qa/cppunit/builder.po2
-rw-r--r--source/lo/vcl/source/edit.po2
-rw-r--r--source/lo/vcl/source/src.po2
-rw-r--r--source/lo/vcl/uiconfig/ui.po2
-rw-r--r--source/lo/wizards/source/euro.po2
-rw-r--r--source/lo/wizards/source/formwizard.po2
-rw-r--r--source/lo/wizards/source/importwizard.po2
-rw-r--r--source/lo/wizards/source/template.po2
-rw-r--r--source/lo/xmlsecurity/source/component.po2
-rw-r--r--source/lo/xmlsecurity/source/dialogs.po2
-rw-r--r--source/lt/accessibility/source/helper.po2
-rw-r--r--source/lt/android/sdremote/res/values.po2
-rw-r--r--source/lt/avmedia/source/framework.po2
-rw-r--r--source/lt/avmedia/source/viewer.po2
-rw-r--r--source/lt/basctl/source/basicide.po2
-rw-r--r--source/lt/basctl/source/dlged.po2
-rw-r--r--source/lt/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/lt/basic/source/classes.po2
-rw-r--r--source/lt/basic/source/sbx.po2
-rw-r--r--source/lt/chart2/source/controller/dialogs.po2
-rw-r--r--source/lt/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/connectivity/source/resource.po2
-rw-r--r--source/lt/cui/source/customize.po2
-rw-r--r--source/lt/cui/source/dialogs.po2
-rw-r--r--source/lt/cui/source/options.po2
-rw-r--r--source/lt/cui/source/tabpages.po2
-rw-r--r--source/lt/cui/uiconfig/ui.po2
-rw-r--r--source/lt/dbaccess/source/core/resource.po2
-rw-r--r--source/lt/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/lt/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/lt/dbaccess/source/ui/app.po2
-rw-r--r--source/lt/dbaccess/source/ui/browser.po2
-rw-r--r--source/lt/dbaccess/source/ui/control.po2
-rw-r--r--source/lt/dbaccess/source/ui/dlg.po2
-rw-r--r--source/lt/dbaccess/source/ui/inc.po2
-rw-r--r--source/lt/dbaccess/source/ui/misc.po2
-rw-r--r--source/lt/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/lt/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/lt/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/lt/dbaccess/source/ui/uno.po2
-rw-r--r--source/lt/desktop/source/app.po2
-rw-r--r--source/lt/desktop/source/deployment/gui.po2
-rw-r--r--source/lt/desktop/source/deployment/manager.po2
-rw-r--r--source/lt/desktop/source/deployment/misc.po2
-rw-r--r--source/lt/desktop/source/deployment/registry.po2
-rw-r--r--source/lt/desktop/source/deployment/registry/component.po2
-rw-r--r--source/lt/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/lt/desktop/source/deployment/registry/help.po2
-rw-r--r--source/lt/desktop/source/deployment/registry/package.po2
-rw-r--r--source/lt/desktop/source/deployment/registry/script.po2
-rw-r--r--source/lt/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/lt/desktop/source/deployment/unopkg.po2
-rw-r--r--source/lt/desktop/uiconfig/ui.po2
-rw-r--r--source/lt/dictionaries/af_ZA.po2
-rw-r--r--source/lt/dictionaries/an_ES.po2
-rw-r--r--source/lt/dictionaries/ar.po2
-rw-r--r--source/lt/dictionaries/be_BY.po2
-rw-r--r--source/lt/dictionaries/bg_BG.po2
-rw-r--r--source/lt/dictionaries/bn_BD.po2
-rw-r--r--source/lt/dictionaries/br_FR.po2
-rw-r--r--source/lt/dictionaries/ca.po2
-rw-r--r--source/lt/dictionaries/cs_CZ.po2
-rw-r--r--source/lt/dictionaries/da_DK.po2
-rw-r--r--source/lt/dictionaries/de.po2
-rw-r--r--source/lt/dictionaries/el_GR.po2
-rw-r--r--source/lt/dictionaries/en.po2
-rw-r--r--source/lt/dictionaries/en/dialog.po2
-rw-r--r--source/lt/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lt/dictionaries/es.po2
-rw-r--r--source/lt/dictionaries/et_EE.po2
-rw-r--r--source/lt/dictionaries/fr_FR.po2
-rw-r--r--source/lt/dictionaries/gd_GB.po2
-rw-r--r--source/lt/dictionaries/gl.po2
-rw-r--r--source/lt/dictionaries/gu_IN.po2
-rw-r--r--source/lt/dictionaries/he_IL.po2
-rw-r--r--source/lt/dictionaries/hi_IN.po2
-rw-r--r--source/lt/dictionaries/hr_HR.po2
-rw-r--r--source/lt/dictionaries/hu_HU.po2
-rw-r--r--source/lt/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/lt/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lt/dictionaries/it_IT.po2
-rw-r--r--source/lt/dictionaries/ku_TR.po2
-rw-r--r--source/lt/dictionaries/lt_LT.po2
-rw-r--r--source/lt/dictionaries/lv_LV.po2
-rw-r--r--source/lt/dictionaries/ne_NP.po2
-rw-r--r--source/lt/dictionaries/nl_NL.po2
-rw-r--r--source/lt/dictionaries/no.po2
-rw-r--r--source/lt/dictionaries/oc_FR.po2
-rw-r--r--source/lt/dictionaries/pl_PL.po2
-rw-r--r--source/lt/dictionaries/pt_BR.po2
-rw-r--r--source/lt/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/lt/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lt/dictionaries/pt_PT.po2
-rw-r--r--source/lt/dictionaries/ro.po2
-rw-r--r--source/lt/dictionaries/ru_RU.po2
-rw-r--r--source/lt/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/lt/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lt/dictionaries/si_LK.po2
-rw-r--r--source/lt/dictionaries/sk_SK.po2
-rw-r--r--source/lt/dictionaries/sl_SI.po2
-rw-r--r--source/lt/dictionaries/sr.po2
-rw-r--r--source/lt/dictionaries/sv_SE.po2
-rw-r--r--source/lt/dictionaries/sw_TZ.po2
-rw-r--r--source/lt/dictionaries/te_IN.po2
-rw-r--r--source/lt/dictionaries/th_TH.po2
-rw-r--r--source/lt/dictionaries/uk_UA.po2
-rw-r--r--source/lt/dictionaries/vi.po2
-rw-r--r--source/lt/dictionaries/zu_ZA.po2
-rw-r--r--source/lt/editeng/source/accessibility.po2
-rw-r--r--source/lt/editeng/source/editeng.po2
-rw-r--r--source/lt/editeng/source/items.po2
-rw-r--r--source/lt/editeng/source/misc.po2
-rw-r--r--source/lt/editeng/source/outliner.po2
-rw-r--r--source/lt/extensions/source/abpilot.po2
-rw-r--r--source/lt/extensions/source/bibliography.po2
-rw-r--r--source/lt/extensions/source/dbpilots.po2
-rw-r--r--source/lt/extensions/source/propctrlr.po2
-rw-r--r--source/lt/extensions/source/scanner.po2
-rw-r--r--source/lt/extensions/source/update/check.po2
-rw-r--r--source/lt/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/lt/filter/source/config/fragments/filters.po2
-rw-r--r--source/lt/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/lt/filter/source/config/fragments/types.po2
-rw-r--r--source/lt/filter/source/flash.po2
-rw-r--r--source/lt/filter/source/graphicfilter/eps.po2
-rw-r--r--source/lt/filter/source/pdf.po2
-rw-r--r--source/lt/filter/source/t602.po2
-rw-r--r--source/lt/filter/source/xsltdialog.po2
-rw-r--r--source/lt/filter/uiconfig/ui.po2
-rw-r--r--source/lt/forms/source/resource.po2
-rw-r--r--source/lt/formula/source/core/resource.po38
-rw-r--r--source/lt/formula/source/ui/dlg.po2
-rw-r--r--source/lt/fpicker/source/office.po2
-rw-r--r--source/lt/framework/source/classes.po2
-rw-r--r--source/lt/framework/source/services.po2
-rw-r--r--source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/lt/librelogo/source/pythonpath.po2
-rw-r--r--source/lt/mysqlc/source.po2
-rw-r--r--source/lt/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lt/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/lt/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/lt/nlpsolver/src/locale.po2
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/lt/padmin/source.po2
-rw-r--r--source/lt/readlicense_oo/docs.po2
-rw-r--r--source/lt/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/lt/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lt/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/lt/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/lt/reportbuilder/util.po2
-rw-r--r--source/lt/reportdesign/source/core/resource.po2
-rw-r--r--source/lt/reportdesign/source/ui/dlg.po2
-rw-r--r--source/lt/reportdesign/source/ui/inspection.po2
-rw-r--r--source/lt/reportdesign/source/ui/report.po2
-rw-r--r--source/lt/sc/source/core/src.po2
-rw-r--r--source/lt/sc/source/ui/cctrl.po2
-rw-r--r--source/lt/sc/source/ui/dbgui.po2
-rw-r--r--source/lt/sc/source/ui/docshell.po2
-rw-r--r--source/lt/sc/source/ui/drawfunc.po2
-rw-r--r--source/lt/sc/source/ui/formdlg.po2
-rw-r--r--source/lt/sc/source/ui/miscdlgs.po2
-rw-r--r--source/lt/sc/source/ui/navipi.po2
-rw-r--r--source/lt/sc/source/ui/optdlg.po2
-rw-r--r--source/lt/sc/source/ui/pagedlg.po2
-rw-r--r--source/lt/sc/source/ui/src.po383
-rw-r--r--source/lt/sc/source/ui/styleui.po2
-rw-r--r--source/lt/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/lt/scaddins/source/analysis.po2
-rw-r--r--source/lt/scaddins/source/datefunc.po2
-rw-r--r--source/lt/scaddins/source/pricing.po2
-rw-r--r--source/lt/sccomp/source/solver.po2
-rw-r--r--source/lt/scp2/source/accessories.po2
-rw-r--r--source/lt/scp2/source/activex.po2
-rw-r--r--source/lt/scp2/source/base.po2
-rw-r--r--source/lt/scp2/source/calc.po2
-rw-r--r--source/lt/scp2/source/draw.po2
-rw-r--r--source/lt/scp2/source/extensions.po2
-rw-r--r--source/lt/scp2/source/gnome.po2
-rw-r--r--source/lt/scp2/source/graphicfilter.po2
-rw-r--r--source/lt/scp2/source/impress.po2
-rw-r--r--source/lt/scp2/source/javafilter.po2
-rw-r--r--source/lt/scp2/source/kde.po2
-rw-r--r--source/lt/scp2/source/math.po2
-rw-r--r--source/lt/scp2/source/onlineupdate.po2
-rw-r--r--source/lt/scp2/source/ooo.po2
-rw-r--r--source/lt/scp2/source/python.po18
-rw-r--r--source/lt/scp2/source/quickstart.po2
-rw-r--r--source/lt/scp2/source/sdkoo.po2
-rw-r--r--source/lt/scp2/source/smoketest.po2
-rw-r--r--source/lt/scp2/source/stdlibs.po2
-rw-r--r--source/lt/scp2/source/tde.po2
-rw-r--r--source/lt/scp2/source/winexplorerext.po2
-rw-r--r--source/lt/scp2/source/writer.po2
-rw-r--r--source/lt/scp2/source/xsltfilter.po2
-rw-r--r--source/lt/sd/source/core.po2
-rw-r--r--source/lt/sd/source/filter/html.po2
-rw-r--r--source/lt/sd/source/ui/accessibility.po2
-rw-r--r--source/lt/sd/source/ui/animations.po2
-rw-r--r--source/lt/sd/source/ui/annotations.po2
-rw-r--r--source/lt/sd/source/ui/app.po2
-rw-r--r--source/lt/sd/source/ui/dlg.po2
-rw-r--r--source/lt/sd/source/ui/slideshow.po2
-rw-r--r--source/lt/sd/source/ui/table.po2
-rw-r--r--source/lt/sd/source/ui/view.po2
-rw-r--r--source/lt/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/lt/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/lt/sdext/source/minimizer.po2
-rw-r--r--source/lt/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lt/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/lt/setup_native/source/mac.po2
-rw-r--r--source/lt/sfx2/source/appl.po2
-rw-r--r--source/lt/sfx2/source/bastyp.po2
-rw-r--r--source/lt/sfx2/source/control.po23
-rw-r--r--source/lt/sfx2/source/dialog.po46
-rw-r--r--source/lt/sfx2/source/doc.po126
-rw-r--r--source/lt/sfx2/source/menu.po2
-rw-r--r--source/lt/sfx2/source/view.po2
-rw-r--r--source/lt/sfx2/uiconfig/ui.po2
-rw-r--r--source/lt/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/lt/starmath/source.po2
-rw-r--r--source/lt/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/lt/svl/source/items.po2
-rw-r--r--source/lt/svl/source/misc.po2
-rw-r--r--source/lt/svtools/source/contnr.po2
-rw-r--r--source/lt/svtools/source/control.po2
-rw-r--r--source/lt/svtools/source/dialogs.po2
-rw-r--r--source/lt/svtools/source/java.po2
-rw-r--r--source/lt/svtools/source/misc.po2
-rw-r--r--source/lt/svtools/source/toolpanel.po2
-rw-r--r--source/lt/svtools/uiconfig/ui.po53
-rw-r--r--source/lt/svx/inc.po2
-rw-r--r--source/lt/svx/source/accessibility.po2
-rw-r--r--source/lt/svx/source/core.po2
-rw-r--r--source/lt/svx/source/dialog.po225
-rw-r--r--source/lt/svx/source/engine3d.po2
-rw-r--r--source/lt/svx/source/fmcomp.po2
-rw-r--r--source/lt/svx/source/form.po2
-rw-r--r--source/lt/svx/source/gallery2.po2
-rw-r--r--source/lt/svx/source/items.po2
-rw-r--r--source/lt/svx/source/src.po2
-rw-r--r--source/lt/svx/source/stbctrls.po2
-rw-r--r--source/lt/svx/source/svdraw.po2
-rw-r--r--source/lt/svx/source/table.po2
-rw-r--r--source/lt/svx/source/tbxctrls.po2
-rw-r--r--source/lt/svx/source/toolbars.po2
-rw-r--r--source/lt/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/lt/svx/uiconfig/ui.po204
-rw-r--r--source/lt/sw/source/core/layout.po2
-rw-r--r--source/lt/sw/source/core/undo.po2
-rw-r--r--source/lt/sw/source/core/unocore.po2
-rw-r--r--source/lt/sw/source/ui/app.po2
-rw-r--r--source/lt/sw/source/ui/chrdlg.po2
-rw-r--r--source/lt/sw/source/ui/config.po2
-rw-r--r--source/lt/sw/source/ui/dbui.po2
-rw-r--r--source/lt/sw/source/ui/dialog.po2
-rw-r--r--source/lt/sw/source/ui/dochdl.po2
-rw-r--r--source/lt/sw/source/ui/docvw.po2
-rw-r--r--source/lt/sw/source/ui/envelp.po2
-rw-r--r--source/lt/sw/source/ui/fldui.po2
-rw-r--r--source/lt/sw/source/ui/fmtui.po2
-rw-r--r--source/lt/sw/source/ui/frmdlg.po2
-rw-r--r--source/lt/sw/source/ui/globdoc.po2
-rw-r--r--source/lt/sw/source/ui/index.po2
-rw-r--r--source/lt/sw/source/ui/lingu.po2
-rw-r--r--source/lt/sw/source/ui/misc.po2
-rw-r--r--source/lt/sw/source/ui/ribbar.po2
-rw-r--r--source/lt/sw/source/ui/shells.po2
-rw-r--r--source/lt/sw/source/ui/smartmenu.po2
-rw-r--r--source/lt/sw/source/ui/table.po2
-rw-r--r--source/lt/sw/source/ui/uiview.po2
-rw-r--r--source/lt/sw/source/ui/utlui.po2
-rw-r--r--source/lt/sw/source/ui/web.po2
-rw-r--r--source/lt/sw/source/ui/wrtsh.po2
-rw-r--r--source/lt/sw/uiconfig/sw/ui.po281
-rw-r--r--source/lt/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/lt/swext/mediawiki/help.po2
-rw-r--r--source/lt/swext/mediawiki/src.po2
-rw-r--r--source/lt/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lt/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/lt/sysui/desktop/share.po2
-rw-r--r--source/lt/tubes/uiconfig/ui.po2
-rw-r--r--source/lt/uui/source.po2
-rw-r--r--source/lt/vcl/qa/cppunit/builder.po2
-rw-r--r--source/lt/vcl/source/edit.po2
-rw-r--r--source/lt/vcl/source/src.po2
-rw-r--r--source/lt/vcl/uiconfig/ui.po2
-rw-r--r--source/lt/wizards/source/euro.po2
-rw-r--r--source/lt/wizards/source/formwizard.po2
-rw-r--r--source/lt/wizards/source/importwizard.po2
-rw-r--r--source/lt/wizards/source/template.po2
-rw-r--r--source/lt/xmlsecurity/source/component.po2
-rw-r--r--source/lt/xmlsecurity/source/dialogs.po2
-rw-r--r--source/lv/accessibility/source/helper.po2
-rw-r--r--source/lv/android/sdremote/res/values.po2
-rw-r--r--source/lv/avmedia/source/framework.po2
-rw-r--r--source/lv/avmedia/source/viewer.po2
-rw-r--r--source/lv/basctl/source/basicide.po2
-rw-r--r--source/lv/basctl/source/dlged.po2
-rw-r--r--source/lv/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/lv/basic/source/classes.po2
-rw-r--r--source/lv/basic/source/sbx.po2
-rw-r--r--source/lv/chart2/source/controller/dialogs.po2
-rw-r--r--source/lv/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/connectivity/source/resource.po2
-rw-r--r--source/lv/cui/source/customize.po2
-rw-r--r--source/lv/cui/source/dialogs.po2
-rw-r--r--source/lv/cui/source/options.po2
-rw-r--r--source/lv/cui/source/tabpages.po2
-rw-r--r--source/lv/cui/uiconfig/ui.po2
-rw-r--r--source/lv/dbaccess/source/core/resource.po2
-rw-r--r--source/lv/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/lv/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/lv/dbaccess/source/ui/app.po2
-rw-r--r--source/lv/dbaccess/source/ui/browser.po2
-rw-r--r--source/lv/dbaccess/source/ui/control.po2
-rw-r--r--source/lv/dbaccess/source/ui/dlg.po2
-rw-r--r--source/lv/dbaccess/source/ui/inc.po2
-rw-r--r--source/lv/dbaccess/source/ui/misc.po2
-rw-r--r--source/lv/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/lv/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/lv/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/lv/dbaccess/source/ui/uno.po2
-rw-r--r--source/lv/desktop/source/app.po2
-rw-r--r--source/lv/desktop/source/deployment/gui.po2
-rw-r--r--source/lv/desktop/source/deployment/manager.po2
-rw-r--r--source/lv/desktop/source/deployment/misc.po2
-rw-r--r--source/lv/desktop/source/deployment/registry.po2
-rw-r--r--source/lv/desktop/source/deployment/registry/component.po2
-rw-r--r--source/lv/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/lv/desktop/source/deployment/registry/help.po2
-rw-r--r--source/lv/desktop/source/deployment/registry/package.po2
-rw-r--r--source/lv/desktop/source/deployment/registry/script.po2
-rw-r--r--source/lv/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/lv/desktop/source/deployment/unopkg.po2
-rw-r--r--source/lv/desktop/uiconfig/ui.po2
-rw-r--r--source/lv/dictionaries/af_ZA.po2
-rw-r--r--source/lv/dictionaries/an_ES.po2
-rw-r--r--source/lv/dictionaries/ar.po2
-rw-r--r--source/lv/dictionaries/be_BY.po2
-rw-r--r--source/lv/dictionaries/bg_BG.po2
-rw-r--r--source/lv/dictionaries/bn_BD.po2
-rw-r--r--source/lv/dictionaries/br_FR.po2
-rw-r--r--source/lv/dictionaries/ca.po2
-rw-r--r--source/lv/dictionaries/cs_CZ.po2
-rw-r--r--source/lv/dictionaries/da_DK.po2
-rw-r--r--source/lv/dictionaries/de.po2
-rw-r--r--source/lv/dictionaries/el_GR.po2
-rw-r--r--source/lv/dictionaries/en.po2
-rw-r--r--source/lv/dictionaries/en/dialog.po2
-rw-r--r--source/lv/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lv/dictionaries/es.po2
-rw-r--r--source/lv/dictionaries/et_EE.po2
-rw-r--r--source/lv/dictionaries/fr_FR.po2
-rw-r--r--source/lv/dictionaries/gd_GB.po2
-rw-r--r--source/lv/dictionaries/gl.po2
-rw-r--r--source/lv/dictionaries/gu_IN.po2
-rw-r--r--source/lv/dictionaries/he_IL.po2
-rw-r--r--source/lv/dictionaries/hi_IN.po2
-rw-r--r--source/lv/dictionaries/hr_HR.po2
-rw-r--r--source/lv/dictionaries/hu_HU.po2
-rw-r--r--source/lv/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/lv/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lv/dictionaries/it_IT.po2
-rw-r--r--source/lv/dictionaries/ku_TR.po2
-rw-r--r--source/lv/dictionaries/lt_LT.po2
-rw-r--r--source/lv/dictionaries/lv_LV.po2
-rw-r--r--source/lv/dictionaries/ne_NP.po2
-rw-r--r--source/lv/dictionaries/nl_NL.po2
-rw-r--r--source/lv/dictionaries/no.po2
-rw-r--r--source/lv/dictionaries/oc_FR.po2
-rw-r--r--source/lv/dictionaries/pl_PL.po2
-rw-r--r--source/lv/dictionaries/pt_BR.po2
-rw-r--r--source/lv/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/lv/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lv/dictionaries/pt_PT.po2
-rw-r--r--source/lv/dictionaries/ro.po2
-rw-r--r--source/lv/dictionaries/ru_RU.po2
-rw-r--r--source/lv/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/lv/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lv/dictionaries/si_LK.po2
-rw-r--r--source/lv/dictionaries/sk_SK.po2
-rw-r--r--source/lv/dictionaries/sl_SI.po2
-rw-r--r--source/lv/dictionaries/sr.po2
-rw-r--r--source/lv/dictionaries/sv_SE.po2
-rw-r--r--source/lv/dictionaries/sw_TZ.po2
-rw-r--r--source/lv/dictionaries/te_IN.po2
-rw-r--r--source/lv/dictionaries/th_TH.po2
-rw-r--r--source/lv/dictionaries/uk_UA.po2
-rw-r--r--source/lv/dictionaries/vi.po2
-rw-r--r--source/lv/dictionaries/zu_ZA.po2
-rw-r--r--source/lv/editeng/source/accessibility.po2
-rw-r--r--source/lv/editeng/source/editeng.po2
-rw-r--r--source/lv/editeng/source/items.po2
-rw-r--r--source/lv/editeng/source/misc.po2
-rw-r--r--source/lv/editeng/source/outliner.po2
-rw-r--r--source/lv/extensions/source/abpilot.po2
-rw-r--r--source/lv/extensions/source/bibliography.po2
-rw-r--r--source/lv/extensions/source/dbpilots.po2
-rw-r--r--source/lv/extensions/source/propctrlr.po2
-rw-r--r--source/lv/extensions/source/scanner.po2
-rw-r--r--source/lv/extensions/source/update/check.po2
-rw-r--r--source/lv/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/lv/filter/source/config/fragments/filters.po2
-rw-r--r--source/lv/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/lv/filter/source/config/fragments/types.po2
-rw-r--r--source/lv/filter/source/flash.po2
-rw-r--r--source/lv/filter/source/graphicfilter/eps.po2
-rw-r--r--source/lv/filter/source/pdf.po2
-rw-r--r--source/lv/filter/source/t602.po2
-rw-r--r--source/lv/filter/source/xsltdialog.po2
-rw-r--r--source/lv/filter/uiconfig/ui.po2
-rw-r--r--source/lv/forms/source/resource.po2
-rw-r--r--source/lv/formula/source/core/resource.po38
-rw-r--r--source/lv/formula/source/ui/dlg.po2
-rw-r--r--source/lv/fpicker/source/office.po2
-rw-r--r--source/lv/framework/source/classes.po2
-rw-r--r--source/lv/framework/source/services.po2
-rw-r--r--source/lv/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/lv/librelogo/source/pythonpath.po2
-rw-r--r--source/lv/mysqlc/source.po2
-rw-r--r--source/lv/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/lv/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/lv/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/lv/nlpsolver/src/locale.po2
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/lv/padmin/source.po2
-rw-r--r--source/lv/readlicense_oo/docs.po2
-rw-r--r--source/lv/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/lv/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lv/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/lv/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/lv/reportbuilder/util.po2
-rw-r--r--source/lv/reportdesign/source/core/resource.po2
-rw-r--r--source/lv/reportdesign/source/ui/dlg.po2
-rw-r--r--source/lv/reportdesign/source/ui/inspection.po2
-rw-r--r--source/lv/reportdesign/source/ui/report.po2
-rw-r--r--source/lv/sc/source/core/src.po2
-rw-r--r--source/lv/sc/source/ui/cctrl.po2
-rw-r--r--source/lv/sc/source/ui/dbgui.po7
-rw-r--r--source/lv/sc/source/ui/docshell.po2
-rw-r--r--source/lv/sc/source/ui/drawfunc.po2
-rw-r--r--source/lv/sc/source/ui/formdlg.po2
-rw-r--r--source/lv/sc/source/ui/miscdlgs.po2
-rw-r--r--source/lv/sc/source/ui/navipi.po2
-rw-r--r--source/lv/sc/source/ui/optdlg.po2
-rw-r--r--source/lv/sc/source/ui/pagedlg.po2
-rw-r--r--source/lv/sc/source/ui/src.po383
-rw-r--r--source/lv/sc/source/ui/styleui.po2
-rw-r--r--source/lv/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/lv/scaddins/source/analysis.po2
-rw-r--r--source/lv/scaddins/source/datefunc.po2
-rw-r--r--source/lv/scaddins/source/pricing.po2
-rw-r--r--source/lv/sccomp/source/solver.po2
-rw-r--r--source/lv/scp2/source/accessories.po2
-rw-r--r--source/lv/scp2/source/activex.po2
-rw-r--r--source/lv/scp2/source/base.po2
-rw-r--r--source/lv/scp2/source/calc.po2
-rw-r--r--source/lv/scp2/source/draw.po2
-rw-r--r--source/lv/scp2/source/extensions.po2
-rw-r--r--source/lv/scp2/source/gnome.po2
-rw-r--r--source/lv/scp2/source/graphicfilter.po2
-rw-r--r--source/lv/scp2/source/impress.po2
-rw-r--r--source/lv/scp2/source/javafilter.po2
-rw-r--r--source/lv/scp2/source/kde.po2
-rw-r--r--source/lv/scp2/source/math.po2
-rw-r--r--source/lv/scp2/source/onlineupdate.po2
-rw-r--r--source/lv/scp2/source/ooo.po2
-rw-r--r--source/lv/scp2/source/python.po18
-rw-r--r--source/lv/scp2/source/quickstart.po2
-rw-r--r--source/lv/scp2/source/sdkoo.po2
-rw-r--r--source/lv/scp2/source/smoketest.po2
-rw-r--r--source/lv/scp2/source/stdlibs.po2
-rw-r--r--source/lv/scp2/source/tde.po2
-rw-r--r--source/lv/scp2/source/winexplorerext.po2
-rw-r--r--source/lv/scp2/source/writer.po2
-rw-r--r--source/lv/scp2/source/xsltfilter.po2
-rw-r--r--source/lv/sd/source/core.po2
-rw-r--r--source/lv/sd/source/filter/html.po2
-rw-r--r--source/lv/sd/source/ui/accessibility.po2
-rw-r--r--source/lv/sd/source/ui/animations.po2
-rw-r--r--source/lv/sd/source/ui/annotations.po2
-rw-r--r--source/lv/sd/source/ui/app.po2
-rw-r--r--source/lv/sd/source/ui/dlg.po2
-rw-r--r--source/lv/sd/source/ui/slideshow.po2
-rw-r--r--source/lv/sd/source/ui/table.po2
-rw-r--r--source/lv/sd/source/ui/view.po2
-rw-r--r--source/lv/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/lv/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/lv/sdext/source/minimizer.po2
-rw-r--r--source/lv/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lv/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/lv/setup_native/source/mac.po2
-rw-r--r--source/lv/sfx2/source/appl.po2
-rw-r--r--source/lv/sfx2/source/bastyp.po2
-rw-r--r--source/lv/sfx2/source/control.po23
-rw-r--r--source/lv/sfx2/source/dialog.po46
-rw-r--r--source/lv/sfx2/source/doc.po126
-rw-r--r--source/lv/sfx2/source/menu.po2
-rw-r--r--source/lv/sfx2/source/view.po2
-rw-r--r--source/lv/sfx2/uiconfig/ui.po2
-rw-r--r--source/lv/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/lv/starmath/source.po2
-rw-r--r--source/lv/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/lv/svl/source/items.po2
-rw-r--r--source/lv/svl/source/misc.po2
-rw-r--r--source/lv/svtools/source/contnr.po2
-rw-r--r--source/lv/svtools/source/control.po2
-rw-r--r--source/lv/svtools/source/dialogs.po2
-rw-r--r--source/lv/svtools/source/java.po2
-rw-r--r--source/lv/svtools/source/misc.po2
-rw-r--r--source/lv/svtools/source/toolpanel.po2
-rw-r--r--source/lv/svtools/uiconfig/ui.po53
-rw-r--r--source/lv/svx/inc.po2
-rw-r--r--source/lv/svx/source/accessibility.po2
-rw-r--r--source/lv/svx/source/core.po2
-rw-r--r--source/lv/svx/source/dialog.po226
-rw-r--r--source/lv/svx/source/engine3d.po2
-rw-r--r--source/lv/svx/source/fmcomp.po2
-rw-r--r--source/lv/svx/source/form.po2
-rw-r--r--source/lv/svx/source/gallery2.po2
-rw-r--r--source/lv/svx/source/items.po2
-rw-r--r--source/lv/svx/source/src.po2
-rw-r--r--source/lv/svx/source/stbctrls.po2
-rw-r--r--source/lv/svx/source/svdraw.po2
-rw-r--r--source/lv/svx/source/table.po2
-rw-r--r--source/lv/svx/source/tbxctrls.po2
-rw-r--r--source/lv/svx/source/toolbars.po2
-rw-r--r--source/lv/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/lv/svx/uiconfig/ui.po204
-rw-r--r--source/lv/sw/source/core/layout.po2
-rw-r--r--source/lv/sw/source/core/undo.po2
-rw-r--r--source/lv/sw/source/core/unocore.po2
-rw-r--r--source/lv/sw/source/ui/app.po2
-rw-r--r--source/lv/sw/source/ui/chrdlg.po2
-rw-r--r--source/lv/sw/source/ui/config.po2
-rw-r--r--source/lv/sw/source/ui/dbui.po2
-rw-r--r--source/lv/sw/source/ui/dialog.po2
-rw-r--r--source/lv/sw/source/ui/dochdl.po2
-rw-r--r--source/lv/sw/source/ui/docvw.po2
-rw-r--r--source/lv/sw/source/ui/envelp.po2
-rw-r--r--source/lv/sw/source/ui/fldui.po2
-rw-r--r--source/lv/sw/source/ui/fmtui.po2
-rw-r--r--source/lv/sw/source/ui/frmdlg.po2
-rw-r--r--source/lv/sw/source/ui/globdoc.po2
-rw-r--r--source/lv/sw/source/ui/index.po2
-rw-r--r--source/lv/sw/source/ui/lingu.po2
-rw-r--r--source/lv/sw/source/ui/misc.po2
-rw-r--r--source/lv/sw/source/ui/ribbar.po2
-rw-r--r--source/lv/sw/source/ui/shells.po2
-rw-r--r--source/lv/sw/source/ui/smartmenu.po2
-rw-r--r--source/lv/sw/source/ui/table.po2
-rw-r--r--source/lv/sw/source/ui/uiview.po2
-rw-r--r--source/lv/sw/source/ui/utlui.po2
-rw-r--r--source/lv/sw/source/ui/web.po2
-rw-r--r--source/lv/sw/source/ui/wrtsh.po2
-rw-r--r--source/lv/sw/uiconfig/sw/ui.po285
-rw-r--r--source/lv/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/lv/swext/mediawiki/help.po2
-rw-r--r--source/lv/swext/mediawiki/src.po2
-rw-r--r--source/lv/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/lv/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/lv/sysui/desktop/share.po2
-rw-r--r--source/lv/tubes/uiconfig/ui.po2
-rw-r--r--source/lv/uui/source.po2
-rw-r--r--source/lv/vcl/qa/cppunit/builder.po2
-rw-r--r--source/lv/vcl/source/edit.po2
-rw-r--r--source/lv/vcl/source/src.po2
-rw-r--r--source/lv/vcl/uiconfig/ui.po2
-rw-r--r--source/lv/wizards/source/euro.po2
-rw-r--r--source/lv/wizards/source/formwizard.po2
-rw-r--r--source/lv/wizards/source/importwizard.po2
-rw-r--r--source/lv/wizards/source/template.po2
-rw-r--r--source/lv/xmlsecurity/source/component.po2
-rw-r--r--source/lv/xmlsecurity/source/dialogs.po2
-rw-r--r--source/mai/accessibility/source/helper.po2
-rw-r--r--source/mai/android/sdremote/res/values.po2
-rw-r--r--source/mai/avmedia/source/framework.po2
-rw-r--r--source/mai/avmedia/source/viewer.po2
-rw-r--r--source/mai/basctl/source/basicide.po2
-rw-r--r--source/mai/basctl/source/dlged.po2
-rw-r--r--source/mai/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/mai/basic/source/classes.po2
-rw-r--r--source/mai/basic/source/sbx.po2
-rw-r--r--source/mai/chart2/source/controller/dialogs.po2
-rw-r--r--source/mai/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/connectivity/source/resource.po2
-rw-r--r--source/mai/cui/source/customize.po2
-rw-r--r--source/mai/cui/source/dialogs.po2
-rw-r--r--source/mai/cui/source/options.po2
-rw-r--r--source/mai/cui/source/tabpages.po2
-rw-r--r--source/mai/cui/uiconfig/ui.po2
-rw-r--r--source/mai/dbaccess/source/core/resource.po2
-rw-r--r--source/mai/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/mai/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/mai/dbaccess/source/ui/app.po2
-rw-r--r--source/mai/dbaccess/source/ui/browser.po2
-rw-r--r--source/mai/dbaccess/source/ui/control.po2
-rw-r--r--source/mai/dbaccess/source/ui/dlg.po2
-rw-r--r--source/mai/dbaccess/source/ui/inc.po2
-rw-r--r--source/mai/dbaccess/source/ui/misc.po2
-rw-r--r--source/mai/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/mai/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/mai/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/mai/dbaccess/source/ui/uno.po2
-rw-r--r--source/mai/desktop/source/app.po2
-rw-r--r--source/mai/desktop/source/deployment/gui.po2
-rw-r--r--source/mai/desktop/source/deployment/manager.po2
-rw-r--r--source/mai/desktop/source/deployment/misc.po2
-rw-r--r--source/mai/desktop/source/deployment/registry.po2
-rw-r--r--source/mai/desktop/source/deployment/registry/component.po2
-rw-r--r--source/mai/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/mai/desktop/source/deployment/registry/help.po2
-rw-r--r--source/mai/desktop/source/deployment/registry/package.po2
-rw-r--r--source/mai/desktop/source/deployment/registry/script.po2
-rw-r--r--source/mai/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/mai/desktop/source/deployment/unopkg.po2
-rw-r--r--source/mai/desktop/uiconfig/ui.po2
-rw-r--r--source/mai/dictionaries/af_ZA.po2
-rw-r--r--source/mai/dictionaries/an_ES.po2
-rw-r--r--source/mai/dictionaries/ar.po2
-rw-r--r--source/mai/dictionaries/be_BY.po2
-rw-r--r--source/mai/dictionaries/bg_BG.po2
-rw-r--r--source/mai/dictionaries/bn_BD.po2
-rw-r--r--source/mai/dictionaries/br_FR.po2
-rw-r--r--source/mai/dictionaries/ca.po2
-rw-r--r--source/mai/dictionaries/cs_CZ.po2
-rw-r--r--source/mai/dictionaries/da_DK.po2
-rw-r--r--source/mai/dictionaries/de.po2
-rw-r--r--source/mai/dictionaries/el_GR.po2
-rw-r--r--source/mai/dictionaries/en.po2
-rw-r--r--source/mai/dictionaries/en/dialog.po2
-rw-r--r--source/mai/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mai/dictionaries/es.po2
-rw-r--r--source/mai/dictionaries/et_EE.po2
-rw-r--r--source/mai/dictionaries/fr_FR.po2
-rw-r--r--source/mai/dictionaries/gd_GB.po2
-rw-r--r--source/mai/dictionaries/gl.po2
-rw-r--r--source/mai/dictionaries/gu_IN.po2
-rw-r--r--source/mai/dictionaries/he_IL.po2
-rw-r--r--source/mai/dictionaries/hi_IN.po2
-rw-r--r--source/mai/dictionaries/hr_HR.po2
-rw-r--r--source/mai/dictionaries/hu_HU.po2
-rw-r--r--source/mai/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/mai/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mai/dictionaries/it_IT.po2
-rw-r--r--source/mai/dictionaries/ku_TR.po2
-rw-r--r--source/mai/dictionaries/lt_LT.po2
-rw-r--r--source/mai/dictionaries/lv_LV.po2
-rw-r--r--source/mai/dictionaries/ne_NP.po2
-rw-r--r--source/mai/dictionaries/nl_NL.po2
-rw-r--r--source/mai/dictionaries/no.po2
-rw-r--r--source/mai/dictionaries/oc_FR.po2
-rw-r--r--source/mai/dictionaries/pl_PL.po2
-rw-r--r--source/mai/dictionaries/pt_BR.po2
-rw-r--r--source/mai/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/mai/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mai/dictionaries/pt_PT.po2
-rw-r--r--source/mai/dictionaries/ro.po2
-rw-r--r--source/mai/dictionaries/ru_RU.po2
-rw-r--r--source/mai/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/mai/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mai/dictionaries/si_LK.po2
-rw-r--r--source/mai/dictionaries/sk_SK.po2
-rw-r--r--source/mai/dictionaries/sl_SI.po2
-rw-r--r--source/mai/dictionaries/sr.po2
-rw-r--r--source/mai/dictionaries/sv_SE.po2
-rw-r--r--source/mai/dictionaries/sw_TZ.po2
-rw-r--r--source/mai/dictionaries/te_IN.po2
-rw-r--r--source/mai/dictionaries/th_TH.po2
-rw-r--r--source/mai/dictionaries/uk_UA.po2
-rw-r--r--source/mai/dictionaries/vi.po2
-rw-r--r--source/mai/dictionaries/zu_ZA.po2
-rw-r--r--source/mai/editeng/source/accessibility.po2
-rw-r--r--source/mai/editeng/source/editeng.po2
-rw-r--r--source/mai/editeng/source/items.po2
-rw-r--r--source/mai/editeng/source/misc.po2
-rw-r--r--source/mai/editeng/source/outliner.po2
-rw-r--r--source/mai/extensions/source/abpilot.po2
-rw-r--r--source/mai/extensions/source/bibliography.po2
-rw-r--r--source/mai/extensions/source/dbpilots.po2
-rw-r--r--source/mai/extensions/source/propctrlr.po2
-rw-r--r--source/mai/extensions/source/scanner.po2
-rw-r--r--source/mai/extensions/source/update/check.po2
-rw-r--r--source/mai/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/mai/filter/source/config/fragments/filters.po2
-rw-r--r--source/mai/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/mai/filter/source/config/fragments/types.po2
-rw-r--r--source/mai/filter/source/flash.po2
-rw-r--r--source/mai/filter/source/graphicfilter/eps.po2
-rw-r--r--source/mai/filter/source/pdf.po2
-rw-r--r--source/mai/filter/source/t602.po2
-rw-r--r--source/mai/filter/source/xsltdialog.po2
-rw-r--r--source/mai/filter/uiconfig/ui.po2
-rw-r--r--source/mai/forms/source/resource.po2
-rw-r--r--source/mai/formula/source/core/resource.po38
-rw-r--r--source/mai/formula/source/ui/dlg.po2
-rw-r--r--source/mai/fpicker/source/office.po2
-rw-r--r--source/mai/framework/source/classes.po2
-rw-r--r--source/mai/framework/source/services.po2
-rw-r--r--source/mai/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/mai/librelogo/source/pythonpath.po2
-rw-r--r--source/mai/mysqlc/source.po2
-rw-r--r--source/mai/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mai/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/mai/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/mai/nlpsolver/src/locale.po2
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/mai/padmin/source.po2
-rw-r--r--source/mai/readlicense_oo/docs.po2
-rw-r--r--source/mai/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/mai/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mai/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/mai/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/mai/reportbuilder/util.po2
-rw-r--r--source/mai/reportdesign/source/core/resource.po2
-rw-r--r--source/mai/reportdesign/source/ui/dlg.po2
-rw-r--r--source/mai/reportdesign/source/ui/inspection.po2
-rw-r--r--source/mai/reportdesign/source/ui/report.po2
-rw-r--r--source/mai/sc/source/core/src.po2
-rw-r--r--source/mai/sc/source/ui/cctrl.po2
-rw-r--r--source/mai/sc/source/ui/dbgui.po2
-rw-r--r--source/mai/sc/source/ui/docshell.po2
-rw-r--r--source/mai/sc/source/ui/drawfunc.po2
-rw-r--r--source/mai/sc/source/ui/formdlg.po2
-rw-r--r--source/mai/sc/source/ui/miscdlgs.po2
-rw-r--r--source/mai/sc/source/ui/navipi.po2
-rw-r--r--source/mai/sc/source/ui/optdlg.po2
-rw-r--r--source/mai/sc/source/ui/pagedlg.po2
-rw-r--r--source/mai/sc/source/ui/src.po381
-rw-r--r--source/mai/sc/source/ui/styleui.po2
-rw-r--r--source/mai/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/mai/scaddins/source/analysis.po2
-rw-r--r--source/mai/scaddins/source/datefunc.po2
-rw-r--r--source/mai/scaddins/source/pricing.po2
-rw-r--r--source/mai/sccomp/source/solver.po2
-rw-r--r--source/mai/scp2/source/accessories.po2
-rw-r--r--source/mai/scp2/source/activex.po2
-rw-r--r--source/mai/scp2/source/base.po2
-rw-r--r--source/mai/scp2/source/calc.po2
-rw-r--r--source/mai/scp2/source/draw.po2
-rw-r--r--source/mai/scp2/source/extensions.po2
-rw-r--r--source/mai/scp2/source/gnome.po2
-rw-r--r--source/mai/scp2/source/graphicfilter.po2
-rw-r--r--source/mai/scp2/source/impress.po2
-rw-r--r--source/mai/scp2/source/javafilter.po2
-rw-r--r--source/mai/scp2/source/kde.po2
-rw-r--r--source/mai/scp2/source/math.po2
-rw-r--r--source/mai/scp2/source/onlineupdate.po2
-rw-r--r--source/mai/scp2/source/ooo.po2
-rw-r--r--source/mai/scp2/source/python.po18
-rw-r--r--source/mai/scp2/source/quickstart.po2
-rw-r--r--source/mai/scp2/source/sdkoo.po2
-rw-r--r--source/mai/scp2/source/smoketest.po2
-rw-r--r--source/mai/scp2/source/stdlibs.po2
-rw-r--r--source/mai/scp2/source/tde.po2
-rw-r--r--source/mai/scp2/source/winexplorerext.po2
-rw-r--r--source/mai/scp2/source/writer.po2
-rw-r--r--source/mai/scp2/source/xsltfilter.po2
-rw-r--r--source/mai/sd/source/core.po2
-rw-r--r--source/mai/sd/source/filter/html.po2
-rw-r--r--source/mai/sd/source/ui/accessibility.po2
-rw-r--r--source/mai/sd/source/ui/animations.po2
-rw-r--r--source/mai/sd/source/ui/annotations.po2
-rw-r--r--source/mai/sd/source/ui/app.po2
-rw-r--r--source/mai/sd/source/ui/dlg.po2
-rw-r--r--source/mai/sd/source/ui/slideshow.po2
-rw-r--r--source/mai/sd/source/ui/table.po2
-rw-r--r--source/mai/sd/source/ui/view.po2
-rw-r--r--source/mai/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/mai/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/mai/sdext/source/minimizer.po2
-rw-r--r--source/mai/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mai/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/mai/setup_native/source/mac.po2
-rw-r--r--source/mai/sfx2/source/appl.po2
-rw-r--r--source/mai/sfx2/source/bastyp.po2
-rw-r--r--source/mai/sfx2/source/control.po23
-rw-r--r--source/mai/sfx2/source/dialog.po46
-rw-r--r--source/mai/sfx2/source/doc.po126
-rw-r--r--source/mai/sfx2/source/menu.po2
-rw-r--r--source/mai/sfx2/source/view.po2
-rw-r--r--source/mai/sfx2/uiconfig/ui.po2
-rw-r--r--source/mai/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/mai/starmath/source.po2
-rw-r--r--source/mai/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/mai/svl/source/items.po2
-rw-r--r--source/mai/svl/source/misc.po2
-rw-r--r--source/mai/svtools/source/contnr.po2
-rw-r--r--source/mai/svtools/source/control.po2
-rw-r--r--source/mai/svtools/source/dialogs.po2
-rw-r--r--source/mai/svtools/source/java.po2
-rw-r--r--source/mai/svtools/source/misc.po2
-rw-r--r--source/mai/svtools/source/toolpanel.po2
-rw-r--r--source/mai/svtools/uiconfig/ui.po55
-rw-r--r--source/mai/svx/inc.po2
-rw-r--r--source/mai/svx/source/accessibility.po2
-rw-r--r--source/mai/svx/source/core.po2
-rw-r--r--source/mai/svx/source/dialog.po224
-rw-r--r--source/mai/svx/source/engine3d.po2
-rw-r--r--source/mai/svx/source/fmcomp.po2
-rw-r--r--source/mai/svx/source/form.po2
-rw-r--r--source/mai/svx/source/gallery2.po2
-rw-r--r--source/mai/svx/source/items.po2
-rw-r--r--source/mai/svx/source/src.po2
-rw-r--r--source/mai/svx/source/stbctrls.po2
-rw-r--r--source/mai/svx/source/svdraw.po2
-rw-r--r--source/mai/svx/source/table.po2
-rw-r--r--source/mai/svx/source/tbxctrls.po2
-rw-r--r--source/mai/svx/source/toolbars.po2
-rw-r--r--source/mai/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/mai/svx/uiconfig/ui.po204
-rw-r--r--source/mai/sw/source/core/layout.po2
-rw-r--r--source/mai/sw/source/core/undo.po2
-rw-r--r--source/mai/sw/source/core/unocore.po2
-rw-r--r--source/mai/sw/source/ui/app.po2
-rw-r--r--source/mai/sw/source/ui/chrdlg.po2
-rw-r--r--source/mai/sw/source/ui/config.po2
-rw-r--r--source/mai/sw/source/ui/dbui.po2
-rw-r--r--source/mai/sw/source/ui/dialog.po2
-rw-r--r--source/mai/sw/source/ui/dochdl.po2
-rw-r--r--source/mai/sw/source/ui/docvw.po2
-rw-r--r--source/mai/sw/source/ui/envelp.po2
-rw-r--r--source/mai/sw/source/ui/fldui.po2
-rw-r--r--source/mai/sw/source/ui/fmtui.po2
-rw-r--r--source/mai/sw/source/ui/frmdlg.po2
-rw-r--r--source/mai/sw/source/ui/globdoc.po2
-rw-r--r--source/mai/sw/source/ui/index.po2
-rw-r--r--source/mai/sw/source/ui/lingu.po2
-rw-r--r--source/mai/sw/source/ui/misc.po2
-rw-r--r--source/mai/sw/source/ui/ribbar.po2
-rw-r--r--source/mai/sw/source/ui/shells.po2
-rw-r--r--source/mai/sw/source/ui/smartmenu.po2
-rw-r--r--source/mai/sw/source/ui/table.po2
-rw-r--r--source/mai/sw/source/ui/uiview.po2
-rw-r--r--source/mai/sw/source/ui/utlui.po2
-rw-r--r--source/mai/sw/source/ui/web.po2
-rw-r--r--source/mai/sw/source/ui/wrtsh.po2
-rw-r--r--source/mai/sw/uiconfig/sw/ui.po281
-rw-r--r--source/mai/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/mai/swext/mediawiki/help.po2
-rw-r--r--source/mai/swext/mediawiki/src.po2
-rw-r--r--source/mai/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mai/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/mai/sysui/desktop/share.po2
-rw-r--r--source/mai/tubes/uiconfig/ui.po2
-rw-r--r--source/mai/uui/source.po2
-rw-r--r--source/mai/vcl/qa/cppunit/builder.po2
-rw-r--r--source/mai/vcl/source/edit.po2
-rw-r--r--source/mai/vcl/source/src.po2
-rw-r--r--source/mai/vcl/uiconfig/ui.po2
-rw-r--r--source/mai/wizards/source/euro.po2
-rw-r--r--source/mai/wizards/source/formwizard.po2
-rw-r--r--source/mai/wizards/source/importwizard.po2
-rw-r--r--source/mai/wizards/source/template.po2
-rw-r--r--source/mai/xmlsecurity/source/component.po2
-rw-r--r--source/mai/xmlsecurity/source/dialogs.po2
-rw-r--r--source/mk/accessibility/source/helper.po2
-rw-r--r--source/mk/android/sdremote/res/values.po2
-rw-r--r--source/mk/avmedia/source/framework.po2
-rw-r--r--source/mk/avmedia/source/viewer.po2
-rw-r--r--source/mk/basctl/source/basicide.po2
-rw-r--r--source/mk/basctl/source/dlged.po2
-rw-r--r--source/mk/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/mk/basic/source/classes.po2
-rw-r--r--source/mk/basic/source/sbx.po2
-rw-r--r--source/mk/chart2/source/controller/dialogs.po2
-rw-r--r--source/mk/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/connectivity/source/resource.po2
-rw-r--r--source/mk/cui/source/customize.po2
-rw-r--r--source/mk/cui/source/dialogs.po2
-rw-r--r--source/mk/cui/source/options.po2
-rw-r--r--source/mk/cui/source/tabpages.po2
-rw-r--r--source/mk/cui/uiconfig/ui.po2
-rw-r--r--source/mk/dbaccess/source/core/resource.po2
-rw-r--r--source/mk/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/mk/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/mk/dbaccess/source/ui/app.po2
-rw-r--r--source/mk/dbaccess/source/ui/browser.po2
-rw-r--r--source/mk/dbaccess/source/ui/control.po2
-rw-r--r--source/mk/dbaccess/source/ui/dlg.po2
-rw-r--r--source/mk/dbaccess/source/ui/inc.po2
-rw-r--r--source/mk/dbaccess/source/ui/misc.po2
-rw-r--r--source/mk/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/mk/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/mk/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/mk/dbaccess/source/ui/uno.po2
-rw-r--r--source/mk/desktop/source/app.po2
-rw-r--r--source/mk/desktop/source/deployment/gui.po2
-rw-r--r--source/mk/desktop/source/deployment/manager.po2
-rw-r--r--source/mk/desktop/source/deployment/misc.po2
-rw-r--r--source/mk/desktop/source/deployment/registry.po2
-rw-r--r--source/mk/desktop/source/deployment/registry/component.po2
-rw-r--r--source/mk/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/mk/desktop/source/deployment/registry/help.po2
-rw-r--r--source/mk/desktop/source/deployment/registry/package.po2
-rw-r--r--source/mk/desktop/source/deployment/registry/script.po2
-rw-r--r--source/mk/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/mk/desktop/source/deployment/unopkg.po2
-rw-r--r--source/mk/desktop/uiconfig/ui.po2
-rw-r--r--source/mk/dictionaries/af_ZA.po2
-rw-r--r--source/mk/dictionaries/an_ES.po2
-rw-r--r--source/mk/dictionaries/ar.po2
-rw-r--r--source/mk/dictionaries/be_BY.po2
-rw-r--r--source/mk/dictionaries/bg_BG.po2
-rw-r--r--source/mk/dictionaries/bn_BD.po2
-rw-r--r--source/mk/dictionaries/br_FR.po2
-rw-r--r--source/mk/dictionaries/ca.po2
-rw-r--r--source/mk/dictionaries/cs_CZ.po2
-rw-r--r--source/mk/dictionaries/da_DK.po2
-rw-r--r--source/mk/dictionaries/de.po2
-rw-r--r--source/mk/dictionaries/el_GR.po2
-rw-r--r--source/mk/dictionaries/en.po2
-rw-r--r--source/mk/dictionaries/en/dialog.po2
-rw-r--r--source/mk/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mk/dictionaries/es.po2
-rw-r--r--source/mk/dictionaries/et_EE.po2
-rw-r--r--source/mk/dictionaries/fr_FR.po2
-rw-r--r--source/mk/dictionaries/gd_GB.po2
-rw-r--r--source/mk/dictionaries/gl.po2
-rw-r--r--source/mk/dictionaries/gu_IN.po2
-rw-r--r--source/mk/dictionaries/he_IL.po2
-rw-r--r--source/mk/dictionaries/hi_IN.po2
-rw-r--r--source/mk/dictionaries/hr_HR.po2
-rw-r--r--source/mk/dictionaries/hu_HU.po2
-rw-r--r--source/mk/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/mk/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mk/dictionaries/it_IT.po2
-rw-r--r--source/mk/dictionaries/ku_TR.po2
-rw-r--r--source/mk/dictionaries/lt_LT.po2
-rw-r--r--source/mk/dictionaries/lv_LV.po2
-rw-r--r--source/mk/dictionaries/ne_NP.po2
-rw-r--r--source/mk/dictionaries/nl_NL.po2
-rw-r--r--source/mk/dictionaries/no.po2
-rw-r--r--source/mk/dictionaries/oc_FR.po2
-rw-r--r--source/mk/dictionaries/pl_PL.po2
-rw-r--r--source/mk/dictionaries/pt_BR.po2
-rw-r--r--source/mk/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/mk/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mk/dictionaries/pt_PT.po2
-rw-r--r--source/mk/dictionaries/ro.po2
-rw-r--r--source/mk/dictionaries/ru_RU.po2
-rw-r--r--source/mk/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/mk/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mk/dictionaries/si_LK.po2
-rw-r--r--source/mk/dictionaries/sk_SK.po2
-rw-r--r--source/mk/dictionaries/sl_SI.po2
-rw-r--r--source/mk/dictionaries/sr.po2
-rw-r--r--source/mk/dictionaries/sv_SE.po2
-rw-r--r--source/mk/dictionaries/sw_TZ.po2
-rw-r--r--source/mk/dictionaries/te_IN.po2
-rw-r--r--source/mk/dictionaries/th_TH.po2
-rw-r--r--source/mk/dictionaries/uk_UA.po2
-rw-r--r--source/mk/dictionaries/vi.po2
-rw-r--r--source/mk/dictionaries/zu_ZA.po2
-rw-r--r--source/mk/editeng/source/accessibility.po2
-rw-r--r--source/mk/editeng/source/editeng.po2
-rw-r--r--source/mk/editeng/source/items.po2
-rw-r--r--source/mk/editeng/source/misc.po2
-rw-r--r--source/mk/editeng/source/outliner.po2
-rw-r--r--source/mk/extensions/source/abpilot.po2
-rw-r--r--source/mk/extensions/source/bibliography.po2
-rw-r--r--source/mk/extensions/source/dbpilots.po2
-rw-r--r--source/mk/extensions/source/propctrlr.po2
-rw-r--r--source/mk/extensions/source/scanner.po2
-rw-r--r--source/mk/extensions/source/update/check.po2
-rw-r--r--source/mk/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/mk/filter/source/config/fragments/filters.po2
-rw-r--r--source/mk/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/mk/filter/source/config/fragments/types.po2
-rw-r--r--source/mk/filter/source/flash.po2
-rw-r--r--source/mk/filter/source/graphicfilter/eps.po2
-rw-r--r--source/mk/filter/source/pdf.po2
-rw-r--r--source/mk/filter/source/t602.po2
-rw-r--r--source/mk/filter/source/xsltdialog.po2
-rw-r--r--source/mk/filter/uiconfig/ui.po2
-rw-r--r--source/mk/forms/source/resource.po2
-rw-r--r--source/mk/formula/source/core/resource.po38
-rw-r--r--source/mk/formula/source/ui/dlg.po2
-rw-r--r--source/mk/fpicker/source/office.po2
-rw-r--r--source/mk/framework/source/classes.po2
-rw-r--r--source/mk/framework/source/services.po2
-rw-r--r--source/mk/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/mk/librelogo/source/pythonpath.po2
-rw-r--r--source/mk/mysqlc/source.po2
-rw-r--r--source/mk/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mk/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/mk/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/mk/nlpsolver/src/locale.po2
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/mk/padmin/source.po2
-rw-r--r--source/mk/readlicense_oo/docs.po2
-rw-r--r--source/mk/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/mk/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mk/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/mk/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/mk/reportbuilder/util.po2
-rw-r--r--source/mk/reportdesign/source/core/resource.po2
-rw-r--r--source/mk/reportdesign/source/ui/dlg.po2
-rw-r--r--source/mk/reportdesign/source/ui/inspection.po2
-rw-r--r--source/mk/reportdesign/source/ui/report.po2
-rw-r--r--source/mk/sc/source/core/src.po2
-rw-r--r--source/mk/sc/source/ui/cctrl.po2
-rw-r--r--source/mk/sc/source/ui/dbgui.po2
-rw-r--r--source/mk/sc/source/ui/docshell.po2
-rw-r--r--source/mk/sc/source/ui/drawfunc.po2
-rw-r--r--source/mk/sc/source/ui/formdlg.po2
-rw-r--r--source/mk/sc/source/ui/miscdlgs.po2
-rw-r--r--source/mk/sc/source/ui/navipi.po2
-rw-r--r--source/mk/sc/source/ui/optdlg.po2
-rw-r--r--source/mk/sc/source/ui/pagedlg.po2
-rw-r--r--source/mk/sc/source/ui/src.po403
-rw-r--r--source/mk/sc/source/ui/styleui.po2
-rw-r--r--source/mk/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/mk/scaddins/source/analysis.po2
-rw-r--r--source/mk/scaddins/source/datefunc.po2
-rw-r--r--source/mk/scaddins/source/pricing.po2
-rw-r--r--source/mk/sccomp/source/solver.po2
-rw-r--r--source/mk/scp2/source/accessories.po2
-rw-r--r--source/mk/scp2/source/activex.po2
-rw-r--r--source/mk/scp2/source/base.po2
-rw-r--r--source/mk/scp2/source/calc.po2
-rw-r--r--source/mk/scp2/source/draw.po2
-rw-r--r--source/mk/scp2/source/extensions.po2
-rw-r--r--source/mk/scp2/source/gnome.po2
-rw-r--r--source/mk/scp2/source/graphicfilter.po2
-rw-r--r--source/mk/scp2/source/impress.po2
-rw-r--r--source/mk/scp2/source/javafilter.po2
-rw-r--r--source/mk/scp2/source/kde.po2
-rw-r--r--source/mk/scp2/source/math.po2
-rw-r--r--source/mk/scp2/source/onlineupdate.po2
-rw-r--r--source/mk/scp2/source/ooo.po2
-rw-r--r--source/mk/scp2/source/python.po18
-rw-r--r--source/mk/scp2/source/quickstart.po2
-rw-r--r--source/mk/scp2/source/sdkoo.po2
-rw-r--r--source/mk/scp2/source/smoketest.po2
-rw-r--r--source/mk/scp2/source/stdlibs.po2
-rw-r--r--source/mk/scp2/source/tde.po2
-rw-r--r--source/mk/scp2/source/winexplorerext.po2
-rw-r--r--source/mk/scp2/source/writer.po2
-rw-r--r--source/mk/scp2/source/xsltfilter.po2
-rw-r--r--source/mk/sd/source/core.po2
-rw-r--r--source/mk/sd/source/filter/html.po2
-rw-r--r--source/mk/sd/source/ui/accessibility.po2
-rw-r--r--source/mk/sd/source/ui/animations.po2
-rw-r--r--source/mk/sd/source/ui/annotations.po2
-rw-r--r--source/mk/sd/source/ui/app.po2
-rw-r--r--source/mk/sd/source/ui/dlg.po2
-rw-r--r--source/mk/sd/source/ui/slideshow.po2
-rw-r--r--source/mk/sd/source/ui/table.po2
-rw-r--r--source/mk/sd/source/ui/view.po2
-rw-r--r--source/mk/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/mk/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/mk/sdext/source/minimizer.po2
-rw-r--r--source/mk/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mk/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/mk/setup_native/source/mac.po2
-rw-r--r--source/mk/sfx2/source/appl.po2
-rw-r--r--source/mk/sfx2/source/bastyp.po2
-rw-r--r--source/mk/sfx2/source/control.po23
-rw-r--r--source/mk/sfx2/source/dialog.po46
-rw-r--r--source/mk/sfx2/source/doc.po126
-rw-r--r--source/mk/sfx2/source/menu.po2
-rw-r--r--source/mk/sfx2/source/view.po2
-rw-r--r--source/mk/sfx2/uiconfig/ui.po2
-rw-r--r--source/mk/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/mk/starmath/source.po2
-rw-r--r--source/mk/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/mk/svl/source/items.po2
-rw-r--r--source/mk/svl/source/misc.po2
-rw-r--r--source/mk/svtools/source/contnr.po2
-rw-r--r--source/mk/svtools/source/control.po2
-rw-r--r--source/mk/svtools/source/dialogs.po2
-rw-r--r--source/mk/svtools/source/java.po2
-rw-r--r--source/mk/svtools/source/misc.po2
-rw-r--r--source/mk/svtools/source/toolpanel.po2
-rw-r--r--source/mk/svtools/uiconfig/ui.po55
-rw-r--r--source/mk/svx/inc.po2
-rw-r--r--source/mk/svx/source/accessibility.po2
-rw-r--r--source/mk/svx/source/core.po2
-rw-r--r--source/mk/svx/source/dialog.po224
-rw-r--r--source/mk/svx/source/engine3d.po2
-rw-r--r--source/mk/svx/source/fmcomp.po2
-rw-r--r--source/mk/svx/source/form.po2
-rw-r--r--source/mk/svx/source/gallery2.po2
-rw-r--r--source/mk/svx/source/items.po2
-rw-r--r--source/mk/svx/source/src.po2
-rw-r--r--source/mk/svx/source/stbctrls.po2
-rw-r--r--source/mk/svx/source/svdraw.po2
-rw-r--r--source/mk/svx/source/table.po2
-rw-r--r--source/mk/svx/source/tbxctrls.po2
-rw-r--r--source/mk/svx/source/toolbars.po2
-rw-r--r--source/mk/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/mk/svx/uiconfig/ui.po204
-rw-r--r--source/mk/sw/source/core/layout.po2
-rw-r--r--source/mk/sw/source/core/undo.po2
-rw-r--r--source/mk/sw/source/core/unocore.po2
-rw-r--r--source/mk/sw/source/ui/app.po2
-rw-r--r--source/mk/sw/source/ui/chrdlg.po2
-rw-r--r--source/mk/sw/source/ui/config.po2
-rw-r--r--source/mk/sw/source/ui/dbui.po2
-rw-r--r--source/mk/sw/source/ui/dialog.po2
-rw-r--r--source/mk/sw/source/ui/dochdl.po2
-rw-r--r--source/mk/sw/source/ui/docvw.po2
-rw-r--r--source/mk/sw/source/ui/envelp.po2
-rw-r--r--source/mk/sw/source/ui/fldui.po2
-rw-r--r--source/mk/sw/source/ui/fmtui.po2
-rw-r--r--source/mk/sw/source/ui/frmdlg.po2
-rw-r--r--source/mk/sw/source/ui/globdoc.po2
-rw-r--r--source/mk/sw/source/ui/index.po2
-rw-r--r--source/mk/sw/source/ui/lingu.po2
-rw-r--r--source/mk/sw/source/ui/misc.po2
-rw-r--r--source/mk/sw/source/ui/ribbar.po2
-rw-r--r--source/mk/sw/source/ui/shells.po2
-rw-r--r--source/mk/sw/source/ui/smartmenu.po2
-rw-r--r--source/mk/sw/source/ui/table.po2
-rw-r--r--source/mk/sw/source/ui/uiview.po2
-rw-r--r--source/mk/sw/source/ui/utlui.po2
-rw-r--r--source/mk/sw/source/ui/web.po2
-rw-r--r--source/mk/sw/source/ui/wrtsh.po2
-rw-r--r--source/mk/sw/uiconfig/sw/ui.po284
-rw-r--r--source/mk/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/mk/swext/mediawiki/help.po2
-rw-r--r--source/mk/swext/mediawiki/src.po2
-rw-r--r--source/mk/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mk/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/mk/sysui/desktop/share.po2
-rw-r--r--source/mk/tubes/uiconfig/ui.po2
-rw-r--r--source/mk/uui/source.po2
-rw-r--r--source/mk/vcl/qa/cppunit/builder.po2
-rw-r--r--source/mk/vcl/source/edit.po2
-rw-r--r--source/mk/vcl/source/src.po2
-rw-r--r--source/mk/vcl/uiconfig/ui.po2
-rw-r--r--source/mk/wizards/source/euro.po2
-rw-r--r--source/mk/wizards/source/formwizard.po2
-rw-r--r--source/mk/wizards/source/importwizard.po2
-rw-r--r--source/mk/wizards/source/template.po2
-rw-r--r--source/mk/xmlsecurity/source/component.po2
-rw-r--r--source/mk/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ml/accessibility/source/helper.po2
-rw-r--r--source/ml/android/sdremote/res/values.po2
-rw-r--r--source/ml/avmedia/source/framework.po2
-rw-r--r--source/ml/avmedia/source/viewer.po2
-rw-r--r--source/ml/basctl/source/basicide.po2
-rw-r--r--source/ml/basctl/source/dlged.po2
-rw-r--r--source/ml/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ml/basic/source/classes.po2
-rw-r--r--source/ml/basic/source/sbx.po2
-rw-r--r--source/ml/chart2/source/controller/dialogs.po2
-rw-r--r--source/ml/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/connectivity/source/resource.po2
-rw-r--r--source/ml/cui/source/customize.po2
-rw-r--r--source/ml/cui/source/dialogs.po2
-rw-r--r--source/ml/cui/source/options.po2
-rw-r--r--source/ml/cui/source/tabpages.po2
-rw-r--r--source/ml/cui/uiconfig/ui.po2
-rw-r--r--source/ml/dbaccess/source/core/resource.po2
-rw-r--r--source/ml/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ml/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ml/dbaccess/source/ui/app.po2
-rw-r--r--source/ml/dbaccess/source/ui/browser.po2
-rw-r--r--source/ml/dbaccess/source/ui/control.po2
-rw-r--r--source/ml/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ml/dbaccess/source/ui/inc.po2
-rw-r--r--source/ml/dbaccess/source/ui/misc.po2
-rw-r--r--source/ml/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ml/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ml/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ml/dbaccess/source/ui/uno.po2
-rw-r--r--source/ml/desktop/source/app.po2
-rw-r--r--source/ml/desktop/source/deployment/gui.po2
-rw-r--r--source/ml/desktop/source/deployment/manager.po2
-rw-r--r--source/ml/desktop/source/deployment/misc.po2
-rw-r--r--source/ml/desktop/source/deployment/registry.po2
-rw-r--r--source/ml/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ml/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ml/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ml/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ml/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ml/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ml/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ml/desktop/uiconfig/ui.po2
-rw-r--r--source/ml/dictionaries/af_ZA.po2
-rw-r--r--source/ml/dictionaries/an_ES.po2
-rw-r--r--source/ml/dictionaries/ar.po2
-rw-r--r--source/ml/dictionaries/be_BY.po2
-rw-r--r--source/ml/dictionaries/bg_BG.po2
-rw-r--r--source/ml/dictionaries/bn_BD.po2
-rw-r--r--source/ml/dictionaries/br_FR.po2
-rw-r--r--source/ml/dictionaries/ca.po2
-rw-r--r--source/ml/dictionaries/cs_CZ.po2
-rw-r--r--source/ml/dictionaries/da_DK.po2
-rw-r--r--source/ml/dictionaries/de.po2
-rw-r--r--source/ml/dictionaries/el_GR.po2
-rw-r--r--source/ml/dictionaries/en.po2
-rw-r--r--source/ml/dictionaries/en/dialog.po2
-rw-r--r--source/ml/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ml/dictionaries/es.po2
-rw-r--r--source/ml/dictionaries/et_EE.po2
-rw-r--r--source/ml/dictionaries/fr_FR.po2
-rw-r--r--source/ml/dictionaries/gd_GB.po2
-rw-r--r--source/ml/dictionaries/gl.po2
-rw-r--r--source/ml/dictionaries/gu_IN.po2
-rw-r--r--source/ml/dictionaries/he_IL.po2
-rw-r--r--source/ml/dictionaries/hi_IN.po2
-rw-r--r--source/ml/dictionaries/hr_HR.po2
-rw-r--r--source/ml/dictionaries/hu_HU.po2
-rw-r--r--source/ml/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ml/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ml/dictionaries/it_IT.po2
-rw-r--r--source/ml/dictionaries/ku_TR.po2
-rw-r--r--source/ml/dictionaries/lt_LT.po2
-rw-r--r--source/ml/dictionaries/lv_LV.po2
-rw-r--r--source/ml/dictionaries/ne_NP.po2
-rw-r--r--source/ml/dictionaries/nl_NL.po2
-rw-r--r--source/ml/dictionaries/no.po2
-rw-r--r--source/ml/dictionaries/oc_FR.po2
-rw-r--r--source/ml/dictionaries/pl_PL.po2
-rw-r--r--source/ml/dictionaries/pt_BR.po2
-rw-r--r--source/ml/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ml/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ml/dictionaries/pt_PT.po2
-rw-r--r--source/ml/dictionaries/ro.po2
-rw-r--r--source/ml/dictionaries/ru_RU.po2
-rw-r--r--source/ml/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ml/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ml/dictionaries/si_LK.po2
-rw-r--r--source/ml/dictionaries/sk_SK.po2
-rw-r--r--source/ml/dictionaries/sl_SI.po2
-rw-r--r--source/ml/dictionaries/sr.po2
-rw-r--r--source/ml/dictionaries/sv_SE.po2
-rw-r--r--source/ml/dictionaries/sw_TZ.po2
-rw-r--r--source/ml/dictionaries/te_IN.po2
-rw-r--r--source/ml/dictionaries/th_TH.po2
-rw-r--r--source/ml/dictionaries/uk_UA.po2
-rw-r--r--source/ml/dictionaries/vi.po2
-rw-r--r--source/ml/dictionaries/zu_ZA.po2
-rw-r--r--source/ml/editeng/source/accessibility.po2
-rw-r--r--source/ml/editeng/source/editeng.po2
-rw-r--r--source/ml/editeng/source/items.po2
-rw-r--r--source/ml/editeng/source/misc.po2
-rw-r--r--source/ml/editeng/source/outliner.po2
-rw-r--r--source/ml/extensions/source/abpilot.po2
-rw-r--r--source/ml/extensions/source/bibliography.po2
-rw-r--r--source/ml/extensions/source/dbpilots.po2
-rw-r--r--source/ml/extensions/source/propctrlr.po2
-rw-r--r--source/ml/extensions/source/scanner.po2
-rw-r--r--source/ml/extensions/source/update/check.po2
-rw-r--r--source/ml/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ml/filter/source/config/fragments/filters.po2
-rw-r--r--source/ml/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ml/filter/source/config/fragments/types.po2
-rw-r--r--source/ml/filter/source/flash.po2
-rw-r--r--source/ml/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ml/filter/source/pdf.po2
-rw-r--r--source/ml/filter/source/t602.po2
-rw-r--r--source/ml/filter/source/xsltdialog.po2
-rw-r--r--source/ml/filter/uiconfig/ui.po2
-rw-r--r--source/ml/forms/source/resource.po2
-rw-r--r--source/ml/formula/source/core/resource.po38
-rw-r--r--source/ml/formula/source/ui/dlg.po2
-rw-r--r--source/ml/fpicker/source/office.po2
-rw-r--r--source/ml/framework/source/classes.po2
-rw-r--r--source/ml/framework/source/services.po2
-rw-r--r--source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/ml/librelogo/source/pythonpath.po2
-rw-r--r--source/ml/mysqlc/source.po2
-rw-r--r--source/ml/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ml/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ml/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ml/nlpsolver/src/locale.po2
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/ml/padmin/source.po2
-rw-r--r--source/ml/readlicense_oo/docs.po2
-rw-r--r--source/ml/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ml/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ml/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ml/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ml/reportbuilder/util.po2
-rw-r--r--source/ml/reportdesign/source/core/resource.po2
-rw-r--r--source/ml/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ml/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ml/reportdesign/source/ui/report.po2
-rw-r--r--source/ml/sc/source/core/src.po2
-rw-r--r--source/ml/sc/source/ui/cctrl.po2
-rw-r--r--source/ml/sc/source/ui/dbgui.po2
-rw-r--r--source/ml/sc/source/ui/docshell.po2
-rw-r--r--source/ml/sc/source/ui/drawfunc.po2
-rw-r--r--source/ml/sc/source/ui/formdlg.po2
-rw-r--r--source/ml/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ml/sc/source/ui/navipi.po2
-rw-r--r--source/ml/sc/source/ui/optdlg.po2
-rw-r--r--source/ml/sc/source/ui/pagedlg.po2
-rw-r--r--source/ml/sc/source/ui/src.po385
-rw-r--r--source/ml/sc/source/ui/styleui.po2
-rw-r--r--source/ml/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/ml/scaddins/source/analysis.po2
-rw-r--r--source/ml/scaddins/source/datefunc.po2
-rw-r--r--source/ml/scaddins/source/pricing.po2
-rw-r--r--source/ml/sccomp/source/solver.po2
-rw-r--r--source/ml/scp2/source/accessories.po2
-rw-r--r--source/ml/scp2/source/activex.po2
-rw-r--r--source/ml/scp2/source/base.po2
-rw-r--r--source/ml/scp2/source/calc.po2
-rw-r--r--source/ml/scp2/source/draw.po2
-rw-r--r--source/ml/scp2/source/extensions.po2
-rw-r--r--source/ml/scp2/source/gnome.po2
-rw-r--r--source/ml/scp2/source/graphicfilter.po2
-rw-r--r--source/ml/scp2/source/impress.po2
-rw-r--r--source/ml/scp2/source/javafilter.po2
-rw-r--r--source/ml/scp2/source/kde.po2
-rw-r--r--source/ml/scp2/source/math.po2
-rw-r--r--source/ml/scp2/source/onlineupdate.po2
-rw-r--r--source/ml/scp2/source/ooo.po2
-rw-r--r--source/ml/scp2/source/python.po18
-rw-r--r--source/ml/scp2/source/quickstart.po2
-rw-r--r--source/ml/scp2/source/sdkoo.po2
-rw-r--r--source/ml/scp2/source/smoketest.po2
-rw-r--r--source/ml/scp2/source/stdlibs.po2
-rw-r--r--source/ml/scp2/source/tde.po2
-rw-r--r--source/ml/scp2/source/winexplorerext.po2
-rw-r--r--source/ml/scp2/source/writer.po2
-rw-r--r--source/ml/scp2/source/xsltfilter.po2
-rw-r--r--source/ml/sd/source/core.po2
-rw-r--r--source/ml/sd/source/filter/html.po2
-rw-r--r--source/ml/sd/source/ui/accessibility.po2
-rw-r--r--source/ml/sd/source/ui/animations.po2
-rw-r--r--source/ml/sd/source/ui/annotations.po2
-rw-r--r--source/ml/sd/source/ui/app.po2
-rw-r--r--source/ml/sd/source/ui/dlg.po2
-rw-r--r--source/ml/sd/source/ui/slideshow.po2
-rw-r--r--source/ml/sd/source/ui/table.po2
-rw-r--r--source/ml/sd/source/ui/view.po2
-rw-r--r--source/ml/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ml/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ml/sdext/source/minimizer.po2
-rw-r--r--source/ml/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ml/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ml/setup_native/source/mac.po2
-rw-r--r--source/ml/sfx2/source/appl.po2
-rw-r--r--source/ml/sfx2/source/bastyp.po2
-rw-r--r--source/ml/sfx2/source/control.po23
-rw-r--r--source/ml/sfx2/source/dialog.po46
-rw-r--r--source/ml/sfx2/source/doc.po126
-rw-r--r--source/ml/sfx2/source/menu.po2
-rw-r--r--source/ml/sfx2/source/view.po2
-rw-r--r--source/ml/sfx2/uiconfig/ui.po2
-rw-r--r--source/ml/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ml/starmath/source.po2
-rw-r--r--source/ml/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ml/svl/source/items.po2
-rw-r--r--source/ml/svl/source/misc.po2
-rw-r--r--source/ml/svtools/source/contnr.po2
-rw-r--r--source/ml/svtools/source/control.po2
-rw-r--r--source/ml/svtools/source/dialogs.po2
-rw-r--r--source/ml/svtools/source/java.po2
-rw-r--r--source/ml/svtools/source/misc.po2
-rw-r--r--source/ml/svtools/source/toolpanel.po2
-rw-r--r--source/ml/svtools/uiconfig/ui.po53
-rw-r--r--source/ml/svx/inc.po2
-rw-r--r--source/ml/svx/source/accessibility.po2
-rw-r--r--source/ml/svx/source/core.po2
-rw-r--r--source/ml/svx/source/dialog.po224
-rw-r--r--source/ml/svx/source/engine3d.po2
-rw-r--r--source/ml/svx/source/fmcomp.po2
-rw-r--r--source/ml/svx/source/form.po2
-rw-r--r--source/ml/svx/source/gallery2.po2
-rw-r--r--source/ml/svx/source/items.po2
-rw-r--r--source/ml/svx/source/src.po2
-rw-r--r--source/ml/svx/source/stbctrls.po2
-rw-r--r--source/ml/svx/source/svdraw.po2
-rw-r--r--source/ml/svx/source/table.po2
-rw-r--r--source/ml/svx/source/tbxctrls.po2
-rw-r--r--source/ml/svx/source/toolbars.po2
-rw-r--r--source/ml/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ml/svx/uiconfig/ui.po204
-rw-r--r--source/ml/sw/source/core/layout.po2
-rw-r--r--source/ml/sw/source/core/undo.po2
-rw-r--r--source/ml/sw/source/core/unocore.po2
-rw-r--r--source/ml/sw/source/ui/app.po2
-rw-r--r--source/ml/sw/source/ui/chrdlg.po2
-rw-r--r--source/ml/sw/source/ui/config.po2
-rw-r--r--source/ml/sw/source/ui/dbui.po2
-rw-r--r--source/ml/sw/source/ui/dialog.po2
-rw-r--r--source/ml/sw/source/ui/dochdl.po2
-rw-r--r--source/ml/sw/source/ui/docvw.po2
-rw-r--r--source/ml/sw/source/ui/envelp.po2
-rw-r--r--source/ml/sw/source/ui/fldui.po2
-rw-r--r--source/ml/sw/source/ui/fmtui.po2
-rw-r--r--source/ml/sw/source/ui/frmdlg.po2
-rw-r--r--source/ml/sw/source/ui/globdoc.po2
-rw-r--r--source/ml/sw/source/ui/index.po2
-rw-r--r--source/ml/sw/source/ui/lingu.po2
-rw-r--r--source/ml/sw/source/ui/misc.po2
-rw-r--r--source/ml/sw/source/ui/ribbar.po2
-rw-r--r--source/ml/sw/source/ui/shells.po2
-rw-r--r--source/ml/sw/source/ui/smartmenu.po2
-rw-r--r--source/ml/sw/source/ui/table.po2
-rw-r--r--source/ml/sw/source/ui/uiview.po2
-rw-r--r--source/ml/sw/source/ui/utlui.po2
-rw-r--r--source/ml/sw/source/ui/web.po2
-rw-r--r--source/ml/sw/source/ui/wrtsh.po2
-rw-r--r--source/ml/sw/uiconfig/sw/ui.po283
-rw-r--r--source/ml/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/ml/swext/mediawiki/help.po2
-rw-r--r--source/ml/swext/mediawiki/src.po2
-rw-r--r--source/ml/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ml/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ml/sysui/desktop/share.po2
-rw-r--r--source/ml/tubes/uiconfig/ui.po2
-rw-r--r--source/ml/uui/source.po2
-rw-r--r--source/ml/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ml/vcl/source/edit.po2
-rw-r--r--source/ml/vcl/source/src.po2
-rw-r--r--source/ml/vcl/uiconfig/ui.po2
-rw-r--r--source/ml/wizards/source/euro.po2
-rw-r--r--source/ml/wizards/source/formwizard.po2
-rw-r--r--source/ml/wizards/source/importwizard.po2
-rw-r--r--source/ml/wizards/source/template.po2
-rw-r--r--source/ml/xmlsecurity/source/component.po2
-rw-r--r--source/ml/xmlsecurity/source/dialogs.po2
-rw-r--r--source/mn/accessibility/source/helper.po2
-rw-r--r--source/mn/android/sdremote/res/values.po2
-rw-r--r--source/mn/avmedia/source/framework.po2
-rw-r--r--source/mn/avmedia/source/viewer.po2
-rw-r--r--source/mn/basctl/source/basicide.po2
-rw-r--r--source/mn/basctl/source/dlged.po2
-rw-r--r--source/mn/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/mn/basic/source/classes.po2
-rw-r--r--source/mn/basic/source/sbx.po2
-rw-r--r--source/mn/chart2/source/controller/dialogs.po2
-rw-r--r--source/mn/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/connectivity/source/resource.po2
-rw-r--r--source/mn/cui/source/customize.po2
-rw-r--r--source/mn/cui/source/dialogs.po2
-rw-r--r--source/mn/cui/source/options.po2
-rw-r--r--source/mn/cui/source/tabpages.po2
-rw-r--r--source/mn/cui/uiconfig/ui.po2
-rw-r--r--source/mn/dbaccess/source/core/resource.po2
-rw-r--r--source/mn/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/mn/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/mn/dbaccess/source/ui/app.po2
-rw-r--r--source/mn/dbaccess/source/ui/browser.po2
-rw-r--r--source/mn/dbaccess/source/ui/control.po2
-rw-r--r--source/mn/dbaccess/source/ui/dlg.po2
-rw-r--r--source/mn/dbaccess/source/ui/inc.po2
-rw-r--r--source/mn/dbaccess/source/ui/misc.po2
-rw-r--r--source/mn/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/mn/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/mn/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/mn/dbaccess/source/ui/uno.po2
-rw-r--r--source/mn/desktop/source/app.po2
-rw-r--r--source/mn/desktop/source/deployment/gui.po2
-rw-r--r--source/mn/desktop/source/deployment/manager.po2
-rw-r--r--source/mn/desktop/source/deployment/misc.po2
-rw-r--r--source/mn/desktop/source/deployment/registry.po2
-rw-r--r--source/mn/desktop/source/deployment/registry/component.po2
-rw-r--r--source/mn/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/mn/desktop/source/deployment/registry/help.po2
-rw-r--r--source/mn/desktop/source/deployment/registry/package.po2
-rw-r--r--source/mn/desktop/source/deployment/registry/script.po2
-rw-r--r--source/mn/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/mn/desktop/source/deployment/unopkg.po2
-rw-r--r--source/mn/desktop/uiconfig/ui.po2
-rw-r--r--source/mn/dictionaries/af_ZA.po2
-rw-r--r--source/mn/dictionaries/an_ES.po2
-rw-r--r--source/mn/dictionaries/ar.po2
-rw-r--r--source/mn/dictionaries/be_BY.po2
-rw-r--r--source/mn/dictionaries/bg_BG.po2
-rw-r--r--source/mn/dictionaries/bn_BD.po2
-rw-r--r--source/mn/dictionaries/br_FR.po2
-rw-r--r--source/mn/dictionaries/ca.po2
-rw-r--r--source/mn/dictionaries/cs_CZ.po2
-rw-r--r--source/mn/dictionaries/da_DK.po2
-rw-r--r--source/mn/dictionaries/de.po2
-rw-r--r--source/mn/dictionaries/el_GR.po2
-rw-r--r--source/mn/dictionaries/en.po2
-rw-r--r--source/mn/dictionaries/en/dialog.po2
-rw-r--r--source/mn/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mn/dictionaries/es.po2
-rw-r--r--source/mn/dictionaries/et_EE.po2
-rw-r--r--source/mn/dictionaries/fr_FR.po2
-rw-r--r--source/mn/dictionaries/gd_GB.po2
-rw-r--r--source/mn/dictionaries/gl.po2
-rw-r--r--source/mn/dictionaries/gu_IN.po2
-rw-r--r--source/mn/dictionaries/he_IL.po2
-rw-r--r--source/mn/dictionaries/hi_IN.po2
-rw-r--r--source/mn/dictionaries/hr_HR.po2
-rw-r--r--source/mn/dictionaries/hu_HU.po2
-rw-r--r--source/mn/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/mn/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mn/dictionaries/it_IT.po2
-rw-r--r--source/mn/dictionaries/ku_TR.po2
-rw-r--r--source/mn/dictionaries/lt_LT.po2
-rw-r--r--source/mn/dictionaries/lv_LV.po2
-rw-r--r--source/mn/dictionaries/ne_NP.po2
-rw-r--r--source/mn/dictionaries/nl_NL.po2
-rw-r--r--source/mn/dictionaries/no.po2
-rw-r--r--source/mn/dictionaries/oc_FR.po2
-rw-r--r--source/mn/dictionaries/pl_PL.po2
-rw-r--r--source/mn/dictionaries/pt_BR.po2
-rw-r--r--source/mn/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/mn/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mn/dictionaries/pt_PT.po2
-rw-r--r--source/mn/dictionaries/ro.po2
-rw-r--r--source/mn/dictionaries/ru_RU.po2
-rw-r--r--source/mn/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/mn/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mn/dictionaries/si_LK.po2
-rw-r--r--source/mn/dictionaries/sk_SK.po2
-rw-r--r--source/mn/dictionaries/sl_SI.po2
-rw-r--r--source/mn/dictionaries/sr.po2
-rw-r--r--source/mn/dictionaries/sv_SE.po2
-rw-r--r--source/mn/dictionaries/sw_TZ.po2
-rw-r--r--source/mn/dictionaries/te_IN.po2
-rw-r--r--source/mn/dictionaries/th_TH.po2
-rw-r--r--source/mn/dictionaries/uk_UA.po2
-rw-r--r--source/mn/dictionaries/vi.po2
-rw-r--r--source/mn/dictionaries/zu_ZA.po2
-rw-r--r--source/mn/editeng/source/accessibility.po2
-rw-r--r--source/mn/editeng/source/editeng.po2
-rw-r--r--source/mn/editeng/source/items.po2
-rw-r--r--source/mn/editeng/source/misc.po2
-rw-r--r--source/mn/editeng/source/outliner.po2
-rw-r--r--source/mn/extensions/source/abpilot.po2
-rw-r--r--source/mn/extensions/source/bibliography.po2
-rw-r--r--source/mn/extensions/source/dbpilots.po2
-rw-r--r--source/mn/extensions/source/propctrlr.po2
-rw-r--r--source/mn/extensions/source/scanner.po2
-rw-r--r--source/mn/extensions/source/update/check.po2
-rw-r--r--source/mn/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/mn/filter/source/config/fragments/filters.po2
-rw-r--r--source/mn/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/mn/filter/source/config/fragments/types.po2
-rw-r--r--source/mn/filter/source/flash.po2
-rw-r--r--source/mn/filter/source/graphicfilter/eps.po2
-rw-r--r--source/mn/filter/source/pdf.po2
-rw-r--r--source/mn/filter/source/t602.po2
-rw-r--r--source/mn/filter/source/xsltdialog.po2
-rw-r--r--source/mn/filter/uiconfig/ui.po2
-rw-r--r--source/mn/forms/source/resource.po2
-rw-r--r--source/mn/formula/source/core/resource.po38
-rw-r--r--source/mn/formula/source/ui/dlg.po2
-rw-r--r--source/mn/fpicker/source/office.po2
-rw-r--r--source/mn/framework/source/classes.po2
-rw-r--r--source/mn/framework/source/services.po2
-rw-r--r--source/mn/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/mn/librelogo/source/pythonpath.po2
-rw-r--r--source/mn/mysqlc/source.po2
-rw-r--r--source/mn/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mn/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/mn/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/mn/nlpsolver/src/locale.po2
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/mn/padmin/source.po2
-rw-r--r--source/mn/readlicense_oo/docs.po2
-rw-r--r--source/mn/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/mn/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mn/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/mn/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/mn/reportbuilder/util.po2
-rw-r--r--source/mn/reportdesign/source/core/resource.po2
-rw-r--r--source/mn/reportdesign/source/ui/dlg.po2
-rw-r--r--source/mn/reportdesign/source/ui/inspection.po2
-rw-r--r--source/mn/reportdesign/source/ui/report.po2
-rw-r--r--source/mn/sc/source/core/src.po2
-rw-r--r--source/mn/sc/source/ui/cctrl.po2
-rw-r--r--source/mn/sc/source/ui/dbgui.po2
-rw-r--r--source/mn/sc/source/ui/docshell.po2
-rw-r--r--source/mn/sc/source/ui/drawfunc.po2
-rw-r--r--source/mn/sc/source/ui/formdlg.po2
-rw-r--r--source/mn/sc/source/ui/miscdlgs.po2
-rw-r--r--source/mn/sc/source/ui/navipi.po2
-rw-r--r--source/mn/sc/source/ui/optdlg.po2
-rw-r--r--source/mn/sc/source/ui/pagedlg.po2
-rw-r--r--source/mn/sc/source/ui/src.po383
-rw-r--r--source/mn/sc/source/ui/styleui.po2
-rw-r--r--source/mn/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/mn/scaddins/source/analysis.po2
-rw-r--r--source/mn/scaddins/source/datefunc.po2
-rw-r--r--source/mn/scaddins/source/pricing.po2
-rw-r--r--source/mn/sccomp/source/solver.po2
-rw-r--r--source/mn/scp2/source/accessories.po2
-rw-r--r--source/mn/scp2/source/activex.po2
-rw-r--r--source/mn/scp2/source/base.po2
-rw-r--r--source/mn/scp2/source/calc.po2
-rw-r--r--source/mn/scp2/source/draw.po2
-rw-r--r--source/mn/scp2/source/extensions.po2
-rw-r--r--source/mn/scp2/source/gnome.po2
-rw-r--r--source/mn/scp2/source/graphicfilter.po2
-rw-r--r--source/mn/scp2/source/impress.po2
-rw-r--r--source/mn/scp2/source/javafilter.po2
-rw-r--r--source/mn/scp2/source/kde.po2
-rw-r--r--source/mn/scp2/source/math.po2
-rw-r--r--source/mn/scp2/source/onlineupdate.po2
-rw-r--r--source/mn/scp2/source/ooo.po2
-rw-r--r--source/mn/scp2/source/python.po18
-rw-r--r--source/mn/scp2/source/quickstart.po2
-rw-r--r--source/mn/scp2/source/sdkoo.po2
-rw-r--r--source/mn/scp2/source/smoketest.po2
-rw-r--r--source/mn/scp2/source/stdlibs.po2
-rw-r--r--source/mn/scp2/source/tde.po2
-rw-r--r--source/mn/scp2/source/winexplorerext.po2
-rw-r--r--source/mn/scp2/source/writer.po2
-rw-r--r--source/mn/scp2/source/xsltfilter.po2
-rw-r--r--source/mn/sd/source/core.po2
-rw-r--r--source/mn/sd/source/filter/html.po2
-rw-r--r--source/mn/sd/source/ui/accessibility.po2
-rw-r--r--source/mn/sd/source/ui/animations.po2
-rw-r--r--source/mn/sd/source/ui/annotations.po2
-rw-r--r--source/mn/sd/source/ui/app.po2
-rw-r--r--source/mn/sd/source/ui/dlg.po2
-rw-r--r--source/mn/sd/source/ui/slideshow.po2
-rw-r--r--source/mn/sd/source/ui/table.po2
-rw-r--r--source/mn/sd/source/ui/view.po2
-rw-r--r--source/mn/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/mn/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/mn/sdext/source/minimizer.po2
-rw-r--r--source/mn/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mn/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/mn/setup_native/source/mac.po2
-rw-r--r--source/mn/sfx2/source/appl.po2
-rw-r--r--source/mn/sfx2/source/bastyp.po2
-rw-r--r--source/mn/sfx2/source/control.po23
-rw-r--r--source/mn/sfx2/source/dialog.po46
-rw-r--r--source/mn/sfx2/source/doc.po126
-rw-r--r--source/mn/sfx2/source/menu.po2
-rw-r--r--source/mn/sfx2/source/view.po2
-rw-r--r--source/mn/sfx2/uiconfig/ui.po2
-rw-r--r--source/mn/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/mn/starmath/source.po2
-rw-r--r--source/mn/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/mn/svl/source/items.po2
-rw-r--r--source/mn/svl/source/misc.po2
-rw-r--r--source/mn/svtools/source/contnr.po2
-rw-r--r--source/mn/svtools/source/control.po2
-rw-r--r--source/mn/svtools/source/dialogs.po2
-rw-r--r--source/mn/svtools/source/java.po2
-rw-r--r--source/mn/svtools/source/misc.po2
-rw-r--r--source/mn/svtools/source/toolpanel.po2
-rw-r--r--source/mn/svtools/uiconfig/ui.po55
-rw-r--r--source/mn/svx/inc.po2
-rw-r--r--source/mn/svx/source/accessibility.po2
-rw-r--r--source/mn/svx/source/core.po2
-rw-r--r--source/mn/svx/source/dialog.po224
-rw-r--r--source/mn/svx/source/engine3d.po2
-rw-r--r--source/mn/svx/source/fmcomp.po2
-rw-r--r--source/mn/svx/source/form.po2
-rw-r--r--source/mn/svx/source/gallery2.po2
-rw-r--r--source/mn/svx/source/items.po2
-rw-r--r--source/mn/svx/source/src.po2
-rw-r--r--source/mn/svx/source/stbctrls.po2
-rw-r--r--source/mn/svx/source/svdraw.po2
-rw-r--r--source/mn/svx/source/table.po2
-rw-r--r--source/mn/svx/source/tbxctrls.po2
-rw-r--r--source/mn/svx/source/toolbars.po2
-rw-r--r--source/mn/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/mn/svx/uiconfig/ui.po204
-rw-r--r--source/mn/sw/source/core/layout.po2
-rw-r--r--source/mn/sw/source/core/undo.po2
-rw-r--r--source/mn/sw/source/core/unocore.po2
-rw-r--r--source/mn/sw/source/ui/app.po2
-rw-r--r--source/mn/sw/source/ui/chrdlg.po2
-rw-r--r--source/mn/sw/source/ui/config.po2
-rw-r--r--source/mn/sw/source/ui/dbui.po2
-rw-r--r--source/mn/sw/source/ui/dialog.po2
-rw-r--r--source/mn/sw/source/ui/dochdl.po2
-rw-r--r--source/mn/sw/source/ui/docvw.po2
-rw-r--r--source/mn/sw/source/ui/envelp.po2
-rw-r--r--source/mn/sw/source/ui/fldui.po2
-rw-r--r--source/mn/sw/source/ui/fmtui.po2
-rw-r--r--source/mn/sw/source/ui/frmdlg.po2
-rw-r--r--source/mn/sw/source/ui/globdoc.po2
-rw-r--r--source/mn/sw/source/ui/index.po2
-rw-r--r--source/mn/sw/source/ui/lingu.po2
-rw-r--r--source/mn/sw/source/ui/misc.po2
-rw-r--r--source/mn/sw/source/ui/ribbar.po2
-rw-r--r--source/mn/sw/source/ui/shells.po2
-rw-r--r--source/mn/sw/source/ui/smartmenu.po2
-rw-r--r--source/mn/sw/source/ui/table.po2
-rw-r--r--source/mn/sw/source/ui/uiview.po2
-rw-r--r--source/mn/sw/source/ui/utlui.po2
-rw-r--r--source/mn/sw/source/ui/web.po2
-rw-r--r--source/mn/sw/source/ui/wrtsh.po2
-rw-r--r--source/mn/sw/uiconfig/sw/ui.po287
-rw-r--r--source/mn/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/mn/swext/mediawiki/help.po2
-rw-r--r--source/mn/swext/mediawiki/src.po2
-rw-r--r--source/mn/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mn/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/mn/sysui/desktop/share.po2
-rw-r--r--source/mn/tubes/uiconfig/ui.po2
-rw-r--r--source/mn/uui/source.po2
-rw-r--r--source/mn/vcl/qa/cppunit/builder.po2
-rw-r--r--source/mn/vcl/source/edit.po2
-rw-r--r--source/mn/vcl/source/src.po2
-rw-r--r--source/mn/vcl/uiconfig/ui.po2
-rw-r--r--source/mn/wizards/source/euro.po2
-rw-r--r--source/mn/wizards/source/formwizard.po2
-rw-r--r--source/mn/wizards/source/importwizard.po2
-rw-r--r--source/mn/wizards/source/template.po2
-rw-r--r--source/mn/xmlsecurity/source/component.po2
-rw-r--r--source/mn/xmlsecurity/source/dialogs.po2
-rw-r--r--source/mni/accessibility/source/helper.po2
-rw-r--r--source/mni/android/sdremote/res/values.po2
-rw-r--r--source/mni/avmedia/source/framework.po2
-rw-r--r--source/mni/avmedia/source/viewer.po2
-rw-r--r--source/mni/basctl/source/basicide.po2
-rw-r--r--source/mni/basctl/source/dlged.po2
-rw-r--r--source/mni/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/mni/basic/source/classes.po2
-rw-r--r--source/mni/basic/source/sbx.po2
-rw-r--r--source/mni/chart2/source/controller/dialogs.po2
-rw-r--r--source/mni/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/connectivity/source/resource.po2
-rw-r--r--source/mni/cui/source/customize.po2
-rw-r--r--source/mni/cui/source/dialogs.po2
-rw-r--r--source/mni/cui/source/options.po2
-rw-r--r--source/mni/cui/source/tabpages.po2
-rw-r--r--source/mni/cui/uiconfig/ui.po2
-rw-r--r--source/mni/dbaccess/source/core/resource.po2
-rw-r--r--source/mni/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/mni/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/mni/dbaccess/source/ui/app.po2
-rw-r--r--source/mni/dbaccess/source/ui/browser.po2
-rw-r--r--source/mni/dbaccess/source/ui/control.po2
-rw-r--r--source/mni/dbaccess/source/ui/dlg.po2
-rw-r--r--source/mni/dbaccess/source/ui/inc.po2
-rw-r--r--source/mni/dbaccess/source/ui/misc.po2
-rw-r--r--source/mni/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/mni/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/mni/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/mni/dbaccess/source/ui/uno.po2
-rw-r--r--source/mni/desktop/source/app.po2
-rw-r--r--source/mni/desktop/source/deployment/gui.po2
-rw-r--r--source/mni/desktop/source/deployment/manager.po2
-rw-r--r--source/mni/desktop/source/deployment/misc.po2
-rw-r--r--source/mni/desktop/source/deployment/registry.po2
-rw-r--r--source/mni/desktop/source/deployment/registry/component.po2
-rw-r--r--source/mni/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/mni/desktop/source/deployment/registry/help.po2
-rw-r--r--source/mni/desktop/source/deployment/registry/package.po2
-rw-r--r--source/mni/desktop/source/deployment/registry/script.po2
-rw-r--r--source/mni/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/mni/desktop/source/deployment/unopkg.po2
-rw-r--r--source/mni/desktop/uiconfig/ui.po2
-rw-r--r--source/mni/dictionaries/af_ZA.po2
-rw-r--r--source/mni/dictionaries/an_ES.po2
-rw-r--r--source/mni/dictionaries/ar.po2
-rw-r--r--source/mni/dictionaries/be_BY.po2
-rw-r--r--source/mni/dictionaries/bg_BG.po2
-rw-r--r--source/mni/dictionaries/bn_BD.po2
-rw-r--r--source/mni/dictionaries/br_FR.po2
-rw-r--r--source/mni/dictionaries/ca.po2
-rw-r--r--source/mni/dictionaries/cs_CZ.po2
-rw-r--r--source/mni/dictionaries/da_DK.po2
-rw-r--r--source/mni/dictionaries/de.po2
-rw-r--r--source/mni/dictionaries/el_GR.po2
-rw-r--r--source/mni/dictionaries/en.po2
-rw-r--r--source/mni/dictionaries/en/dialog.po2
-rw-r--r--source/mni/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mni/dictionaries/es.po2
-rw-r--r--source/mni/dictionaries/et_EE.po2
-rw-r--r--source/mni/dictionaries/fr_FR.po2
-rw-r--r--source/mni/dictionaries/gd_GB.po2
-rw-r--r--source/mni/dictionaries/gl.po2
-rw-r--r--source/mni/dictionaries/gu_IN.po2
-rw-r--r--source/mni/dictionaries/he_IL.po2
-rw-r--r--source/mni/dictionaries/hi_IN.po2
-rw-r--r--source/mni/dictionaries/hr_HR.po2
-rw-r--r--source/mni/dictionaries/hu_HU.po2
-rw-r--r--source/mni/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/mni/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mni/dictionaries/it_IT.po2
-rw-r--r--source/mni/dictionaries/ku_TR.po2
-rw-r--r--source/mni/dictionaries/lt_LT.po2
-rw-r--r--source/mni/dictionaries/lv_LV.po2
-rw-r--r--source/mni/dictionaries/ne_NP.po2
-rw-r--r--source/mni/dictionaries/nl_NL.po2
-rw-r--r--source/mni/dictionaries/no.po2
-rw-r--r--source/mni/dictionaries/oc_FR.po2
-rw-r--r--source/mni/dictionaries/pl_PL.po2
-rw-r--r--source/mni/dictionaries/pt_BR.po2
-rw-r--r--source/mni/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/mni/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mni/dictionaries/pt_PT.po2
-rw-r--r--source/mni/dictionaries/ro.po2
-rw-r--r--source/mni/dictionaries/ru_RU.po2
-rw-r--r--source/mni/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/mni/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mni/dictionaries/si_LK.po2
-rw-r--r--source/mni/dictionaries/sk_SK.po2
-rw-r--r--source/mni/dictionaries/sl_SI.po2
-rw-r--r--source/mni/dictionaries/sr.po2
-rw-r--r--source/mni/dictionaries/sv_SE.po2
-rw-r--r--source/mni/dictionaries/sw_TZ.po2
-rw-r--r--source/mni/dictionaries/te_IN.po2
-rw-r--r--source/mni/dictionaries/th_TH.po2
-rw-r--r--source/mni/dictionaries/uk_UA.po2
-rw-r--r--source/mni/dictionaries/vi.po2
-rw-r--r--source/mni/dictionaries/zu_ZA.po2
-rw-r--r--source/mni/editeng/source/accessibility.po2
-rw-r--r--source/mni/editeng/source/editeng.po2
-rw-r--r--source/mni/editeng/source/items.po2
-rw-r--r--source/mni/editeng/source/misc.po2
-rw-r--r--source/mni/editeng/source/outliner.po2
-rw-r--r--source/mni/extensions/source/abpilot.po2
-rw-r--r--source/mni/extensions/source/bibliography.po2
-rw-r--r--source/mni/extensions/source/dbpilots.po2
-rw-r--r--source/mni/extensions/source/propctrlr.po2
-rw-r--r--source/mni/extensions/source/scanner.po2
-rw-r--r--source/mni/extensions/source/update/check.po2
-rw-r--r--source/mni/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/mni/filter/source/config/fragments/filters.po2
-rw-r--r--source/mni/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/mni/filter/source/config/fragments/types.po2
-rw-r--r--source/mni/filter/source/flash.po2
-rw-r--r--source/mni/filter/source/graphicfilter/eps.po2
-rw-r--r--source/mni/filter/source/pdf.po2
-rw-r--r--source/mni/filter/source/t602.po2
-rw-r--r--source/mni/filter/source/xsltdialog.po2
-rw-r--r--source/mni/filter/uiconfig/ui.po2
-rw-r--r--source/mni/forms/source/resource.po2
-rw-r--r--source/mni/formula/source/core/resource.po38
-rw-r--r--source/mni/formula/source/ui/dlg.po2
-rw-r--r--source/mni/fpicker/source/office.po2
-rw-r--r--source/mni/framework/source/classes.po2
-rw-r--r--source/mni/framework/source/services.po2
-rw-r--r--source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/mni/librelogo/source/pythonpath.po2
-rw-r--r--source/mni/mysqlc/source.po2
-rw-r--r--source/mni/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mni/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/mni/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/mni/nlpsolver/src/locale.po2
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/mni/padmin/source.po2
-rw-r--r--source/mni/readlicense_oo/docs.po2
-rw-r--r--source/mni/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/mni/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mni/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/mni/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/mni/reportbuilder/util.po2
-rw-r--r--source/mni/reportdesign/source/core/resource.po2
-rw-r--r--source/mni/reportdesign/source/ui/dlg.po2
-rw-r--r--source/mni/reportdesign/source/ui/inspection.po2
-rw-r--r--source/mni/reportdesign/source/ui/report.po2
-rw-r--r--source/mni/sc/source/core/src.po2
-rw-r--r--source/mni/sc/source/ui/cctrl.po2
-rw-r--r--source/mni/sc/source/ui/dbgui.po2
-rw-r--r--source/mni/sc/source/ui/docshell.po2
-rw-r--r--source/mni/sc/source/ui/drawfunc.po2
-rw-r--r--source/mni/sc/source/ui/formdlg.po2
-rw-r--r--source/mni/sc/source/ui/miscdlgs.po2
-rw-r--r--source/mni/sc/source/ui/navipi.po2
-rw-r--r--source/mni/sc/source/ui/optdlg.po2
-rw-r--r--source/mni/sc/source/ui/pagedlg.po2
-rw-r--r--source/mni/sc/source/ui/src.po383
-rw-r--r--source/mni/sc/source/ui/styleui.po2
-rw-r--r--source/mni/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/mni/scaddins/source/analysis.po2
-rw-r--r--source/mni/scaddins/source/datefunc.po2
-rw-r--r--source/mni/scaddins/source/pricing.po2
-rw-r--r--source/mni/sccomp/source/solver.po2
-rw-r--r--source/mni/scp2/source/accessories.po2
-rw-r--r--source/mni/scp2/source/activex.po2
-rw-r--r--source/mni/scp2/source/base.po2
-rw-r--r--source/mni/scp2/source/calc.po2
-rw-r--r--source/mni/scp2/source/draw.po2
-rw-r--r--source/mni/scp2/source/extensions.po2
-rw-r--r--source/mni/scp2/source/gnome.po2
-rw-r--r--source/mni/scp2/source/graphicfilter.po2
-rw-r--r--source/mni/scp2/source/impress.po2
-rw-r--r--source/mni/scp2/source/javafilter.po2
-rw-r--r--source/mni/scp2/source/kde.po2
-rw-r--r--source/mni/scp2/source/math.po2
-rw-r--r--source/mni/scp2/source/onlineupdate.po2
-rw-r--r--source/mni/scp2/source/ooo.po2
-rw-r--r--source/mni/scp2/source/python.po18
-rw-r--r--source/mni/scp2/source/quickstart.po2
-rw-r--r--source/mni/scp2/source/sdkoo.po2
-rw-r--r--source/mni/scp2/source/smoketest.po2
-rw-r--r--source/mni/scp2/source/stdlibs.po2
-rw-r--r--source/mni/scp2/source/tde.po2
-rw-r--r--source/mni/scp2/source/winexplorerext.po2
-rw-r--r--source/mni/scp2/source/writer.po2
-rw-r--r--source/mni/scp2/source/xsltfilter.po2
-rw-r--r--source/mni/sd/source/core.po2
-rw-r--r--source/mni/sd/source/filter/html.po2
-rw-r--r--source/mni/sd/source/ui/accessibility.po2
-rw-r--r--source/mni/sd/source/ui/animations.po2
-rw-r--r--source/mni/sd/source/ui/annotations.po2
-rw-r--r--source/mni/sd/source/ui/app.po2
-rw-r--r--source/mni/sd/source/ui/dlg.po2
-rw-r--r--source/mni/sd/source/ui/slideshow.po2
-rw-r--r--source/mni/sd/source/ui/table.po2
-rw-r--r--source/mni/sd/source/ui/view.po2
-rw-r--r--source/mni/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/mni/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/mni/sdext/source/minimizer.po2
-rw-r--r--source/mni/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mni/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/mni/setup_native/source/mac.po2
-rw-r--r--source/mni/sfx2/source/appl.po2
-rw-r--r--source/mni/sfx2/source/bastyp.po2
-rw-r--r--source/mni/sfx2/source/control.po23
-rw-r--r--source/mni/sfx2/source/dialog.po46
-rw-r--r--source/mni/sfx2/source/doc.po126
-rw-r--r--source/mni/sfx2/source/menu.po2
-rw-r--r--source/mni/sfx2/source/view.po2
-rw-r--r--source/mni/sfx2/uiconfig/ui.po2
-rw-r--r--source/mni/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/mni/starmath/source.po2
-rw-r--r--source/mni/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/mni/svl/source/items.po2
-rw-r--r--source/mni/svl/source/misc.po2
-rw-r--r--source/mni/svtools/source/contnr.po2
-rw-r--r--source/mni/svtools/source/control.po2
-rw-r--r--source/mni/svtools/source/dialogs.po2
-rw-r--r--source/mni/svtools/source/java.po2
-rw-r--r--source/mni/svtools/source/misc.po2
-rw-r--r--source/mni/svtools/source/toolpanel.po2
-rw-r--r--source/mni/svtools/uiconfig/ui.po55
-rw-r--r--source/mni/svx/inc.po2
-rw-r--r--source/mni/svx/source/accessibility.po2
-rw-r--r--source/mni/svx/source/core.po2
-rw-r--r--source/mni/svx/source/dialog.po224
-rw-r--r--source/mni/svx/source/engine3d.po2
-rw-r--r--source/mni/svx/source/fmcomp.po2
-rw-r--r--source/mni/svx/source/form.po2
-rw-r--r--source/mni/svx/source/gallery2.po2
-rw-r--r--source/mni/svx/source/items.po2
-rw-r--r--source/mni/svx/source/src.po2
-rw-r--r--source/mni/svx/source/stbctrls.po2
-rw-r--r--source/mni/svx/source/svdraw.po2
-rw-r--r--source/mni/svx/source/table.po2
-rw-r--r--source/mni/svx/source/tbxctrls.po2
-rw-r--r--source/mni/svx/source/toolbars.po2
-rw-r--r--source/mni/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/mni/svx/uiconfig/ui.po204
-rw-r--r--source/mni/sw/source/core/layout.po2
-rw-r--r--source/mni/sw/source/core/undo.po2
-rw-r--r--source/mni/sw/source/core/unocore.po2
-rw-r--r--source/mni/sw/source/ui/app.po2
-rw-r--r--source/mni/sw/source/ui/chrdlg.po2
-rw-r--r--source/mni/sw/source/ui/config.po2
-rw-r--r--source/mni/sw/source/ui/dbui.po2
-rw-r--r--source/mni/sw/source/ui/dialog.po2
-rw-r--r--source/mni/sw/source/ui/dochdl.po2
-rw-r--r--source/mni/sw/source/ui/docvw.po2
-rw-r--r--source/mni/sw/source/ui/envelp.po2
-rw-r--r--source/mni/sw/source/ui/fldui.po2
-rw-r--r--source/mni/sw/source/ui/fmtui.po2
-rw-r--r--source/mni/sw/source/ui/frmdlg.po2
-rw-r--r--source/mni/sw/source/ui/globdoc.po2
-rw-r--r--source/mni/sw/source/ui/index.po2
-rw-r--r--source/mni/sw/source/ui/lingu.po2
-rw-r--r--source/mni/sw/source/ui/misc.po2
-rw-r--r--source/mni/sw/source/ui/ribbar.po2
-rw-r--r--source/mni/sw/source/ui/shells.po2
-rw-r--r--source/mni/sw/source/ui/smartmenu.po2
-rw-r--r--source/mni/sw/source/ui/table.po2
-rw-r--r--source/mni/sw/source/ui/uiview.po2
-rw-r--r--source/mni/sw/source/ui/utlui.po2
-rw-r--r--source/mni/sw/source/ui/web.po2
-rw-r--r--source/mni/sw/source/ui/wrtsh.po2
-rw-r--r--source/mni/sw/uiconfig/sw/ui.po282
-rw-r--r--source/mni/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/mni/swext/mediawiki/help.po2
-rw-r--r--source/mni/swext/mediawiki/src.po2
-rw-r--r--source/mni/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mni/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/mni/sysui/desktop/share.po2
-rw-r--r--source/mni/tubes/uiconfig/ui.po2
-rw-r--r--source/mni/uui/source.po2
-rw-r--r--source/mni/vcl/qa/cppunit/builder.po2
-rw-r--r--source/mni/vcl/source/edit.po2
-rw-r--r--source/mni/vcl/source/src.po2
-rw-r--r--source/mni/vcl/uiconfig/ui.po2
-rw-r--r--source/mni/wizards/source/euro.po2
-rw-r--r--source/mni/wizards/source/formwizard.po2
-rw-r--r--source/mni/wizards/source/importwizard.po2
-rw-r--r--source/mni/wizards/source/template.po2
-rw-r--r--source/mni/xmlsecurity/source/component.po2
-rw-r--r--source/mni/xmlsecurity/source/dialogs.po2
-rw-r--r--source/mr/accessibility/source/helper.po2
-rw-r--r--source/mr/android/sdremote/res/values.po2
-rw-r--r--source/mr/avmedia/source/framework.po2
-rw-r--r--source/mr/avmedia/source/viewer.po2
-rw-r--r--source/mr/basctl/source/basicide.po2
-rw-r--r--source/mr/basctl/source/dlged.po2
-rw-r--r--source/mr/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/mr/basic/source/classes.po2
-rw-r--r--source/mr/basic/source/sbx.po2
-rw-r--r--source/mr/chart2/source/controller/dialogs.po2
-rw-r--r--source/mr/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/connectivity/source/resource.po2
-rw-r--r--source/mr/cui/source/customize.po2
-rw-r--r--source/mr/cui/source/dialogs.po2
-rw-r--r--source/mr/cui/source/options.po2
-rw-r--r--source/mr/cui/source/tabpages.po2
-rw-r--r--source/mr/cui/uiconfig/ui.po2
-rw-r--r--source/mr/dbaccess/source/core/resource.po2
-rw-r--r--source/mr/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/mr/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/mr/dbaccess/source/ui/app.po2
-rw-r--r--source/mr/dbaccess/source/ui/browser.po2
-rw-r--r--source/mr/dbaccess/source/ui/control.po2
-rw-r--r--source/mr/dbaccess/source/ui/dlg.po2
-rw-r--r--source/mr/dbaccess/source/ui/inc.po2
-rw-r--r--source/mr/dbaccess/source/ui/misc.po2
-rw-r--r--source/mr/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/mr/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/mr/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/mr/dbaccess/source/ui/uno.po2
-rw-r--r--source/mr/desktop/source/app.po2
-rw-r--r--source/mr/desktop/source/deployment/gui.po2
-rw-r--r--source/mr/desktop/source/deployment/manager.po2
-rw-r--r--source/mr/desktop/source/deployment/misc.po2
-rw-r--r--source/mr/desktop/source/deployment/registry.po2
-rw-r--r--source/mr/desktop/source/deployment/registry/component.po2
-rw-r--r--source/mr/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/mr/desktop/source/deployment/registry/help.po2
-rw-r--r--source/mr/desktop/source/deployment/registry/package.po2
-rw-r--r--source/mr/desktop/source/deployment/registry/script.po2
-rw-r--r--source/mr/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/mr/desktop/source/deployment/unopkg.po2
-rw-r--r--source/mr/desktop/uiconfig/ui.po2
-rw-r--r--source/mr/dictionaries/af_ZA.po2
-rw-r--r--source/mr/dictionaries/an_ES.po2
-rw-r--r--source/mr/dictionaries/ar.po2
-rw-r--r--source/mr/dictionaries/be_BY.po2
-rw-r--r--source/mr/dictionaries/bg_BG.po2
-rw-r--r--source/mr/dictionaries/bn_BD.po2
-rw-r--r--source/mr/dictionaries/br_FR.po2
-rw-r--r--source/mr/dictionaries/ca.po2
-rw-r--r--source/mr/dictionaries/cs_CZ.po2
-rw-r--r--source/mr/dictionaries/da_DK.po2
-rw-r--r--source/mr/dictionaries/de.po2
-rw-r--r--source/mr/dictionaries/el_GR.po2
-rw-r--r--source/mr/dictionaries/en.po2
-rw-r--r--source/mr/dictionaries/en/dialog.po2
-rw-r--r--source/mr/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mr/dictionaries/es.po2
-rw-r--r--source/mr/dictionaries/et_EE.po2
-rw-r--r--source/mr/dictionaries/fr_FR.po2
-rw-r--r--source/mr/dictionaries/gd_GB.po2
-rw-r--r--source/mr/dictionaries/gl.po2
-rw-r--r--source/mr/dictionaries/gu_IN.po2
-rw-r--r--source/mr/dictionaries/he_IL.po2
-rw-r--r--source/mr/dictionaries/hi_IN.po2
-rw-r--r--source/mr/dictionaries/hr_HR.po2
-rw-r--r--source/mr/dictionaries/hu_HU.po2
-rw-r--r--source/mr/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/mr/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mr/dictionaries/it_IT.po2
-rw-r--r--source/mr/dictionaries/ku_TR.po2
-rw-r--r--source/mr/dictionaries/lt_LT.po2
-rw-r--r--source/mr/dictionaries/lv_LV.po2
-rw-r--r--source/mr/dictionaries/ne_NP.po2
-rw-r--r--source/mr/dictionaries/nl_NL.po2
-rw-r--r--source/mr/dictionaries/no.po2
-rw-r--r--source/mr/dictionaries/oc_FR.po2
-rw-r--r--source/mr/dictionaries/pl_PL.po2
-rw-r--r--source/mr/dictionaries/pt_BR.po2
-rw-r--r--source/mr/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/mr/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mr/dictionaries/pt_PT.po2
-rw-r--r--source/mr/dictionaries/ro.po2
-rw-r--r--source/mr/dictionaries/ru_RU.po2
-rw-r--r--source/mr/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/mr/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mr/dictionaries/si_LK.po2
-rw-r--r--source/mr/dictionaries/sk_SK.po2
-rw-r--r--source/mr/dictionaries/sl_SI.po2
-rw-r--r--source/mr/dictionaries/sr.po2
-rw-r--r--source/mr/dictionaries/sv_SE.po2
-rw-r--r--source/mr/dictionaries/sw_TZ.po2
-rw-r--r--source/mr/dictionaries/te_IN.po2
-rw-r--r--source/mr/dictionaries/th_TH.po2
-rw-r--r--source/mr/dictionaries/uk_UA.po2
-rw-r--r--source/mr/dictionaries/vi.po2
-rw-r--r--source/mr/dictionaries/zu_ZA.po2
-rw-r--r--source/mr/editeng/source/accessibility.po2
-rw-r--r--source/mr/editeng/source/editeng.po2
-rw-r--r--source/mr/editeng/source/items.po2
-rw-r--r--source/mr/editeng/source/misc.po2
-rw-r--r--source/mr/editeng/source/outliner.po2
-rw-r--r--source/mr/extensions/source/abpilot.po2
-rw-r--r--source/mr/extensions/source/bibliography.po2
-rw-r--r--source/mr/extensions/source/dbpilots.po2
-rw-r--r--source/mr/extensions/source/propctrlr.po2
-rw-r--r--source/mr/extensions/source/scanner.po2
-rw-r--r--source/mr/extensions/source/update/check.po2
-rw-r--r--source/mr/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/mr/filter/source/config/fragments/filters.po2
-rw-r--r--source/mr/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/mr/filter/source/config/fragments/types.po2
-rw-r--r--source/mr/filter/source/flash.po2
-rw-r--r--source/mr/filter/source/graphicfilter/eps.po2
-rw-r--r--source/mr/filter/source/pdf.po2
-rw-r--r--source/mr/filter/source/t602.po2
-rw-r--r--source/mr/filter/source/xsltdialog.po2
-rw-r--r--source/mr/filter/uiconfig/ui.po2
-rw-r--r--source/mr/forms/source/resource.po2
-rw-r--r--source/mr/formula/source/core/resource.po38
-rw-r--r--source/mr/formula/source/ui/dlg.po2
-rw-r--r--source/mr/fpicker/source/office.po2
-rw-r--r--source/mr/framework/source/classes.po2
-rw-r--r--source/mr/framework/source/services.po2
-rw-r--r--source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/mr/librelogo/source/pythonpath.po2
-rw-r--r--source/mr/mysqlc/source.po2
-rw-r--r--source/mr/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/mr/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/mr/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/mr/nlpsolver/src/locale.po2
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/mr/padmin/source.po2
-rw-r--r--source/mr/readlicense_oo/docs.po2
-rw-r--r--source/mr/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/mr/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mr/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/mr/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/mr/reportbuilder/util.po2
-rw-r--r--source/mr/reportdesign/source/core/resource.po2
-rw-r--r--source/mr/reportdesign/source/ui/dlg.po2
-rw-r--r--source/mr/reportdesign/source/ui/inspection.po2
-rw-r--r--source/mr/reportdesign/source/ui/report.po2
-rw-r--r--source/mr/sc/source/core/src.po2
-rw-r--r--source/mr/sc/source/ui/cctrl.po2
-rw-r--r--source/mr/sc/source/ui/dbgui.po2
-rw-r--r--source/mr/sc/source/ui/docshell.po2
-rw-r--r--source/mr/sc/source/ui/drawfunc.po2
-rw-r--r--source/mr/sc/source/ui/formdlg.po2
-rw-r--r--source/mr/sc/source/ui/miscdlgs.po2
-rw-r--r--source/mr/sc/source/ui/navipi.po2
-rw-r--r--source/mr/sc/source/ui/optdlg.po2
-rw-r--r--source/mr/sc/source/ui/pagedlg.po2
-rw-r--r--source/mr/sc/source/ui/src.po383
-rw-r--r--source/mr/sc/source/ui/styleui.po2
-rw-r--r--source/mr/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/mr/scaddins/source/analysis.po2
-rw-r--r--source/mr/scaddins/source/datefunc.po2
-rw-r--r--source/mr/scaddins/source/pricing.po2
-rw-r--r--source/mr/sccomp/source/solver.po2
-rw-r--r--source/mr/scp2/source/accessories.po2
-rw-r--r--source/mr/scp2/source/activex.po2
-rw-r--r--source/mr/scp2/source/base.po2
-rw-r--r--source/mr/scp2/source/calc.po2
-rw-r--r--source/mr/scp2/source/draw.po2
-rw-r--r--source/mr/scp2/source/extensions.po2
-rw-r--r--source/mr/scp2/source/gnome.po2
-rw-r--r--source/mr/scp2/source/graphicfilter.po2
-rw-r--r--source/mr/scp2/source/impress.po2
-rw-r--r--source/mr/scp2/source/javafilter.po2
-rw-r--r--source/mr/scp2/source/kde.po2
-rw-r--r--source/mr/scp2/source/math.po2
-rw-r--r--source/mr/scp2/source/onlineupdate.po2
-rw-r--r--source/mr/scp2/source/ooo.po2
-rw-r--r--source/mr/scp2/source/python.po18
-rw-r--r--source/mr/scp2/source/quickstart.po2
-rw-r--r--source/mr/scp2/source/sdkoo.po2
-rw-r--r--source/mr/scp2/source/smoketest.po2
-rw-r--r--source/mr/scp2/source/stdlibs.po2
-rw-r--r--source/mr/scp2/source/tde.po2
-rw-r--r--source/mr/scp2/source/winexplorerext.po2
-rw-r--r--source/mr/scp2/source/writer.po2
-rw-r--r--source/mr/scp2/source/xsltfilter.po2
-rw-r--r--source/mr/sd/source/core.po2
-rw-r--r--source/mr/sd/source/filter/html.po2
-rw-r--r--source/mr/sd/source/ui/accessibility.po2
-rw-r--r--source/mr/sd/source/ui/animations.po2
-rw-r--r--source/mr/sd/source/ui/annotations.po2
-rw-r--r--source/mr/sd/source/ui/app.po2
-rw-r--r--source/mr/sd/source/ui/dlg.po2
-rw-r--r--source/mr/sd/source/ui/slideshow.po2
-rw-r--r--source/mr/sd/source/ui/table.po2
-rw-r--r--source/mr/sd/source/ui/view.po2
-rw-r--r--source/mr/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/mr/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/mr/sdext/source/minimizer.po2
-rw-r--r--source/mr/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mr/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/mr/setup_native/source/mac.po2
-rw-r--r--source/mr/sfx2/source/appl.po2
-rw-r--r--source/mr/sfx2/source/bastyp.po2
-rw-r--r--source/mr/sfx2/source/control.po23
-rw-r--r--source/mr/sfx2/source/dialog.po46
-rw-r--r--source/mr/sfx2/source/doc.po126
-rw-r--r--source/mr/sfx2/source/menu.po2
-rw-r--r--source/mr/sfx2/source/view.po2
-rw-r--r--source/mr/sfx2/uiconfig/ui.po2
-rw-r--r--source/mr/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/mr/starmath/source.po2
-rw-r--r--source/mr/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/mr/svl/source/items.po2
-rw-r--r--source/mr/svl/source/misc.po2
-rw-r--r--source/mr/svtools/source/contnr.po2
-rw-r--r--source/mr/svtools/source/control.po2
-rw-r--r--source/mr/svtools/source/dialogs.po2
-rw-r--r--source/mr/svtools/source/java.po2
-rw-r--r--source/mr/svtools/source/misc.po2
-rw-r--r--source/mr/svtools/source/toolpanel.po2
-rw-r--r--source/mr/svtools/uiconfig/ui.po53
-rw-r--r--source/mr/svx/inc.po2
-rw-r--r--source/mr/svx/source/accessibility.po2
-rw-r--r--source/mr/svx/source/core.po2
-rw-r--r--source/mr/svx/source/dialog.po226
-rw-r--r--source/mr/svx/source/engine3d.po2
-rw-r--r--source/mr/svx/source/fmcomp.po2
-rw-r--r--source/mr/svx/source/form.po2
-rw-r--r--source/mr/svx/source/gallery2.po2
-rw-r--r--source/mr/svx/source/items.po2
-rw-r--r--source/mr/svx/source/src.po2
-rw-r--r--source/mr/svx/source/stbctrls.po2
-rw-r--r--source/mr/svx/source/svdraw.po2
-rw-r--r--source/mr/svx/source/table.po2
-rw-r--r--source/mr/svx/source/tbxctrls.po2
-rw-r--r--source/mr/svx/source/toolbars.po2
-rw-r--r--source/mr/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/mr/svx/uiconfig/ui.po204
-rw-r--r--source/mr/sw/source/core/layout.po2
-rw-r--r--source/mr/sw/source/core/undo.po2
-rw-r--r--source/mr/sw/source/core/unocore.po2
-rw-r--r--source/mr/sw/source/ui/app.po2
-rw-r--r--source/mr/sw/source/ui/chrdlg.po2
-rw-r--r--source/mr/sw/source/ui/config.po2
-rw-r--r--source/mr/sw/source/ui/dbui.po2
-rw-r--r--source/mr/sw/source/ui/dialog.po2
-rw-r--r--source/mr/sw/source/ui/dochdl.po2
-rw-r--r--source/mr/sw/source/ui/docvw.po2
-rw-r--r--source/mr/sw/source/ui/envelp.po2
-rw-r--r--source/mr/sw/source/ui/fldui.po2
-rw-r--r--source/mr/sw/source/ui/fmtui.po2
-rw-r--r--source/mr/sw/source/ui/frmdlg.po2
-rw-r--r--source/mr/sw/source/ui/globdoc.po2
-rw-r--r--source/mr/sw/source/ui/index.po2
-rw-r--r--source/mr/sw/source/ui/lingu.po2
-rw-r--r--source/mr/sw/source/ui/misc.po2
-rw-r--r--source/mr/sw/source/ui/ribbar.po2
-rw-r--r--source/mr/sw/source/ui/shells.po2
-rw-r--r--source/mr/sw/source/ui/smartmenu.po2
-rw-r--r--source/mr/sw/source/ui/table.po2
-rw-r--r--source/mr/sw/source/ui/uiview.po2
-rw-r--r--source/mr/sw/source/ui/utlui.po2
-rw-r--r--source/mr/sw/source/ui/web.po2
-rw-r--r--source/mr/sw/source/ui/wrtsh.po2
-rw-r--r--source/mr/sw/uiconfig/sw/ui.po281
-rw-r--r--source/mr/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/mr/swext/mediawiki/help.po2
-rw-r--r--source/mr/swext/mediawiki/src.po2
-rw-r--r--source/mr/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/mr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/mr/sysui/desktop/share.po2
-rw-r--r--source/mr/tubes/uiconfig/ui.po2
-rw-r--r--source/mr/uui/source.po2
-rw-r--r--source/mr/vcl/qa/cppunit/builder.po2
-rw-r--r--source/mr/vcl/source/edit.po2
-rw-r--r--source/mr/vcl/source/src.po2
-rw-r--r--source/mr/vcl/uiconfig/ui.po2
-rw-r--r--source/mr/wizards/source/euro.po2
-rw-r--r--source/mr/wizards/source/formwizard.po2
-rw-r--r--source/mr/wizards/source/importwizard.po2
-rw-r--r--source/mr/wizards/source/template.po2
-rw-r--r--source/mr/xmlsecurity/source/component.po2
-rw-r--r--source/mr/xmlsecurity/source/dialogs.po2
-rw-r--r--source/my/accessibility/source/helper.po2
-rw-r--r--source/my/android/sdremote/res/values.po2
-rw-r--r--source/my/avmedia/source/framework.po2
-rw-r--r--source/my/avmedia/source/viewer.po2
-rw-r--r--source/my/basctl/source/basicide.po2
-rw-r--r--source/my/basctl/source/dlged.po2
-rw-r--r--source/my/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/my/basic/source/classes.po2
-rw-r--r--source/my/basic/source/sbx.po2
-rw-r--r--source/my/chart2/source/controller/dialogs.po2
-rw-r--r--source/my/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/connectivity/source/resource.po2
-rw-r--r--source/my/cui/source/customize.po2
-rw-r--r--source/my/cui/source/dialogs.po2
-rw-r--r--source/my/cui/source/options.po2
-rw-r--r--source/my/cui/source/tabpages.po2
-rw-r--r--source/my/cui/uiconfig/ui.po2
-rw-r--r--source/my/dbaccess/source/core/resource.po2
-rw-r--r--source/my/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/my/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/my/dbaccess/source/ui/app.po2
-rw-r--r--source/my/dbaccess/source/ui/browser.po2
-rw-r--r--source/my/dbaccess/source/ui/control.po2
-rw-r--r--source/my/dbaccess/source/ui/dlg.po2
-rw-r--r--source/my/dbaccess/source/ui/inc.po2
-rw-r--r--source/my/dbaccess/source/ui/misc.po2
-rw-r--r--source/my/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/my/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/my/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/my/dbaccess/source/ui/uno.po2
-rw-r--r--source/my/desktop/source/app.po2
-rw-r--r--source/my/desktop/source/deployment/gui.po2
-rw-r--r--source/my/desktop/source/deployment/manager.po2
-rw-r--r--source/my/desktop/source/deployment/misc.po2
-rw-r--r--source/my/desktop/source/deployment/registry.po2
-rw-r--r--source/my/desktop/source/deployment/registry/component.po2
-rw-r--r--source/my/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/my/desktop/source/deployment/registry/help.po2
-rw-r--r--source/my/desktop/source/deployment/registry/package.po2
-rw-r--r--source/my/desktop/source/deployment/registry/script.po2
-rw-r--r--source/my/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/my/desktop/source/deployment/unopkg.po2
-rw-r--r--source/my/desktop/uiconfig/ui.po2
-rw-r--r--source/my/dictionaries/af_ZA.po2
-rw-r--r--source/my/dictionaries/an_ES.po2
-rw-r--r--source/my/dictionaries/ar.po2
-rw-r--r--source/my/dictionaries/be_BY.po2
-rw-r--r--source/my/dictionaries/bg_BG.po2
-rw-r--r--source/my/dictionaries/bn_BD.po2
-rw-r--r--source/my/dictionaries/br_FR.po2
-rw-r--r--source/my/dictionaries/ca.po2
-rw-r--r--source/my/dictionaries/cs_CZ.po2
-rw-r--r--source/my/dictionaries/da_DK.po2
-rw-r--r--source/my/dictionaries/de.po2
-rw-r--r--source/my/dictionaries/el_GR.po2
-rw-r--r--source/my/dictionaries/en.po2
-rw-r--r--source/my/dictionaries/en/dialog.po2
-rw-r--r--source/my/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/my/dictionaries/es.po2
-rw-r--r--source/my/dictionaries/et_EE.po2
-rw-r--r--source/my/dictionaries/fr_FR.po2
-rw-r--r--source/my/dictionaries/gd_GB.po2
-rw-r--r--source/my/dictionaries/gl.po2
-rw-r--r--source/my/dictionaries/gu_IN.po2
-rw-r--r--source/my/dictionaries/he_IL.po2
-rw-r--r--source/my/dictionaries/hi_IN.po2
-rw-r--r--source/my/dictionaries/hr_HR.po2
-rw-r--r--source/my/dictionaries/hu_HU.po2
-rw-r--r--source/my/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/my/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/my/dictionaries/it_IT.po2
-rw-r--r--source/my/dictionaries/ku_TR.po2
-rw-r--r--source/my/dictionaries/lt_LT.po2
-rw-r--r--source/my/dictionaries/lv_LV.po2
-rw-r--r--source/my/dictionaries/ne_NP.po2
-rw-r--r--source/my/dictionaries/nl_NL.po2
-rw-r--r--source/my/dictionaries/no.po2
-rw-r--r--source/my/dictionaries/oc_FR.po2
-rw-r--r--source/my/dictionaries/pl_PL.po2
-rw-r--r--source/my/dictionaries/pt_BR.po2
-rw-r--r--source/my/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/my/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/my/dictionaries/pt_PT.po2
-rw-r--r--source/my/dictionaries/ro.po2
-rw-r--r--source/my/dictionaries/ru_RU.po2
-rw-r--r--source/my/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/my/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/my/dictionaries/si_LK.po2
-rw-r--r--source/my/dictionaries/sk_SK.po2
-rw-r--r--source/my/dictionaries/sl_SI.po2
-rw-r--r--source/my/dictionaries/sr.po2
-rw-r--r--source/my/dictionaries/sv_SE.po2
-rw-r--r--source/my/dictionaries/sw_TZ.po2
-rw-r--r--source/my/dictionaries/te_IN.po2
-rw-r--r--source/my/dictionaries/th_TH.po2
-rw-r--r--source/my/dictionaries/uk_UA.po2
-rw-r--r--source/my/dictionaries/vi.po2
-rw-r--r--source/my/dictionaries/zu_ZA.po2
-rw-r--r--source/my/editeng/source/accessibility.po2
-rw-r--r--source/my/editeng/source/editeng.po2
-rw-r--r--source/my/editeng/source/items.po2
-rw-r--r--source/my/editeng/source/misc.po2
-rw-r--r--source/my/editeng/source/outliner.po2
-rw-r--r--source/my/extensions/source/abpilot.po2
-rw-r--r--source/my/extensions/source/bibliography.po2
-rw-r--r--source/my/extensions/source/dbpilots.po2
-rw-r--r--source/my/extensions/source/propctrlr.po2
-rw-r--r--source/my/extensions/source/scanner.po2
-rw-r--r--source/my/extensions/source/update/check.po2
-rw-r--r--source/my/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/my/filter/source/config/fragments/filters.po2
-rw-r--r--source/my/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/my/filter/source/config/fragments/types.po2
-rw-r--r--source/my/filter/source/flash.po2
-rw-r--r--source/my/filter/source/graphicfilter/eps.po2
-rw-r--r--source/my/filter/source/pdf.po2
-rw-r--r--source/my/filter/source/t602.po2
-rw-r--r--source/my/filter/source/xsltdialog.po2
-rw-r--r--source/my/filter/uiconfig/ui.po2
-rw-r--r--source/my/forms/source/resource.po2
-rw-r--r--source/my/formula/source/core/resource.po38
-rw-r--r--source/my/formula/source/ui/dlg.po2
-rw-r--r--source/my/fpicker/source/office.po2
-rw-r--r--source/my/framework/source/classes.po2
-rw-r--r--source/my/framework/source/services.po2
-rw-r--r--source/my/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/my/librelogo/source/pythonpath.po2
-rw-r--r--source/my/mysqlc/source.po2
-rw-r--r--source/my/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/my/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/my/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/my/nlpsolver/src/locale.po2
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/my/padmin/source.po2
-rw-r--r--source/my/readlicense_oo/docs.po2
-rw-r--r--source/my/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/my/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/my/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/my/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/my/reportbuilder/util.po2
-rw-r--r--source/my/reportdesign/source/core/resource.po2
-rw-r--r--source/my/reportdesign/source/ui/dlg.po2
-rw-r--r--source/my/reportdesign/source/ui/inspection.po2
-rw-r--r--source/my/reportdesign/source/ui/report.po2
-rw-r--r--source/my/sc/source/core/src.po2
-rw-r--r--source/my/sc/source/ui/cctrl.po2
-rw-r--r--source/my/sc/source/ui/dbgui.po2
-rw-r--r--source/my/sc/source/ui/docshell.po2
-rw-r--r--source/my/sc/source/ui/drawfunc.po2
-rw-r--r--source/my/sc/source/ui/formdlg.po2
-rw-r--r--source/my/sc/source/ui/miscdlgs.po2
-rw-r--r--source/my/sc/source/ui/navipi.po2
-rw-r--r--source/my/sc/source/ui/optdlg.po2
-rw-r--r--source/my/sc/source/ui/pagedlg.po2
-rw-r--r--source/my/sc/source/ui/src.po379
-rw-r--r--source/my/sc/source/ui/styleui.po2
-rw-r--r--source/my/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/my/scaddins/source/analysis.po2
-rw-r--r--source/my/scaddins/source/datefunc.po2
-rw-r--r--source/my/scaddins/source/pricing.po2
-rw-r--r--source/my/sccomp/source/solver.po2
-rw-r--r--source/my/scp2/source/accessories.po2
-rw-r--r--source/my/scp2/source/activex.po2
-rw-r--r--source/my/scp2/source/base.po2
-rw-r--r--source/my/scp2/source/calc.po2
-rw-r--r--source/my/scp2/source/draw.po2
-rw-r--r--source/my/scp2/source/extensions.po2
-rw-r--r--source/my/scp2/source/gnome.po2
-rw-r--r--source/my/scp2/source/graphicfilter.po2
-rw-r--r--source/my/scp2/source/impress.po2
-rw-r--r--source/my/scp2/source/javafilter.po2
-rw-r--r--source/my/scp2/source/kde.po2
-rw-r--r--source/my/scp2/source/math.po2
-rw-r--r--source/my/scp2/source/onlineupdate.po2
-rw-r--r--source/my/scp2/source/ooo.po2
-rw-r--r--source/my/scp2/source/python.po18
-rw-r--r--source/my/scp2/source/quickstart.po2
-rw-r--r--source/my/scp2/source/sdkoo.po2
-rw-r--r--source/my/scp2/source/smoketest.po2
-rw-r--r--source/my/scp2/source/stdlibs.po2
-rw-r--r--source/my/scp2/source/tde.po2
-rw-r--r--source/my/scp2/source/winexplorerext.po2
-rw-r--r--source/my/scp2/source/writer.po2
-rw-r--r--source/my/scp2/source/xsltfilter.po2
-rw-r--r--source/my/sd/source/core.po2
-rw-r--r--source/my/sd/source/filter/html.po2
-rw-r--r--source/my/sd/source/ui/accessibility.po2
-rw-r--r--source/my/sd/source/ui/animations.po2
-rw-r--r--source/my/sd/source/ui/annotations.po2
-rw-r--r--source/my/sd/source/ui/app.po2
-rw-r--r--source/my/sd/source/ui/dlg.po2
-rw-r--r--source/my/sd/source/ui/slideshow.po2
-rw-r--r--source/my/sd/source/ui/table.po2
-rw-r--r--source/my/sd/source/ui/view.po2
-rw-r--r--source/my/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/my/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/my/sdext/source/minimizer.po2
-rw-r--r--source/my/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/my/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/my/setup_native/source/mac.po2
-rw-r--r--source/my/sfx2/source/appl.po2
-rw-r--r--source/my/sfx2/source/bastyp.po2
-rw-r--r--source/my/sfx2/source/control.po23
-rw-r--r--source/my/sfx2/source/dialog.po46
-rw-r--r--source/my/sfx2/source/doc.po126
-rw-r--r--source/my/sfx2/source/menu.po2
-rw-r--r--source/my/sfx2/source/view.po2
-rw-r--r--source/my/sfx2/uiconfig/ui.po2
-rw-r--r--source/my/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/my/starmath/source.po2
-rw-r--r--source/my/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/my/svl/source/items.po2
-rw-r--r--source/my/svl/source/misc.po2
-rw-r--r--source/my/svtools/source/contnr.po2
-rw-r--r--source/my/svtools/source/control.po2
-rw-r--r--source/my/svtools/source/dialogs.po2
-rw-r--r--source/my/svtools/source/java.po2
-rw-r--r--source/my/svtools/source/misc.po2
-rw-r--r--source/my/svtools/source/toolpanel.po2
-rw-r--r--source/my/svtools/uiconfig/ui.po49
-rw-r--r--source/my/svx/inc.po2
-rw-r--r--source/my/svx/source/accessibility.po2
-rw-r--r--source/my/svx/source/core.po2
-rw-r--r--source/my/svx/source/dialog.po226
-rw-r--r--source/my/svx/source/engine3d.po2
-rw-r--r--source/my/svx/source/fmcomp.po2
-rw-r--r--source/my/svx/source/form.po2
-rw-r--r--source/my/svx/source/gallery2.po2
-rw-r--r--source/my/svx/source/items.po2
-rw-r--r--source/my/svx/source/src.po2
-rw-r--r--source/my/svx/source/stbctrls.po2
-rw-r--r--source/my/svx/source/svdraw.po2
-rw-r--r--source/my/svx/source/table.po2
-rw-r--r--source/my/svx/source/tbxctrls.po2
-rw-r--r--source/my/svx/source/toolbars.po2
-rw-r--r--source/my/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/my/svx/uiconfig/ui.po204
-rw-r--r--source/my/sw/source/core/layout.po2
-rw-r--r--source/my/sw/source/core/undo.po2
-rw-r--r--source/my/sw/source/core/unocore.po2
-rw-r--r--source/my/sw/source/ui/app.po2
-rw-r--r--source/my/sw/source/ui/chrdlg.po2
-rw-r--r--source/my/sw/source/ui/config.po2
-rw-r--r--source/my/sw/source/ui/dbui.po2
-rw-r--r--source/my/sw/source/ui/dialog.po2
-rw-r--r--source/my/sw/source/ui/dochdl.po2
-rw-r--r--source/my/sw/source/ui/docvw.po2
-rw-r--r--source/my/sw/source/ui/envelp.po2
-rw-r--r--source/my/sw/source/ui/fldui.po2
-rw-r--r--source/my/sw/source/ui/fmtui.po2
-rw-r--r--source/my/sw/source/ui/frmdlg.po2
-rw-r--r--source/my/sw/source/ui/globdoc.po2
-rw-r--r--source/my/sw/source/ui/index.po2
-rw-r--r--source/my/sw/source/ui/lingu.po2
-rw-r--r--source/my/sw/source/ui/misc.po2
-rw-r--r--source/my/sw/source/ui/ribbar.po2
-rw-r--r--source/my/sw/source/ui/shells.po2
-rw-r--r--source/my/sw/source/ui/smartmenu.po2
-rw-r--r--source/my/sw/source/ui/table.po2
-rw-r--r--source/my/sw/source/ui/uiview.po2
-rw-r--r--source/my/sw/source/ui/utlui.po2
-rw-r--r--source/my/sw/source/ui/web.po2
-rw-r--r--source/my/sw/source/ui/wrtsh.po2
-rw-r--r--source/my/sw/uiconfig/sw/ui.po282
-rw-r--r--source/my/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/my/swext/mediawiki/help.po2
-rw-r--r--source/my/swext/mediawiki/src.po2
-rw-r--r--source/my/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/my/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/my/sysui/desktop/share.po2
-rw-r--r--source/my/tubes/uiconfig/ui.po2
-rw-r--r--source/my/uui/source.po2
-rw-r--r--source/my/vcl/qa/cppunit/builder.po2
-rw-r--r--source/my/vcl/source/edit.po2
-rw-r--r--source/my/vcl/source/src.po2
-rw-r--r--source/my/vcl/uiconfig/ui.po2
-rw-r--r--source/my/wizards/source/euro.po2
-rw-r--r--source/my/wizards/source/formwizard.po2
-rw-r--r--source/my/wizards/source/importwizard.po2
-rw-r--r--source/my/wizards/source/template.po2
-rw-r--r--source/my/xmlsecurity/source/component.po2
-rw-r--r--source/my/xmlsecurity/source/dialogs.po2
-rw-r--r--source/nb/accessibility/source/helper.po2
-rw-r--r--source/nb/android/sdremote/res/values.po2
-rw-r--r--source/nb/avmedia/source/framework.po2
-rw-r--r--source/nb/avmedia/source/viewer.po2
-rw-r--r--source/nb/basctl/source/basicide.po2
-rw-r--r--source/nb/basctl/source/dlged.po2
-rw-r--r--source/nb/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/nb/basic/source/classes.po2
-rw-r--r--source/nb/basic/source/sbx.po2
-rw-r--r--source/nb/chart2/source/controller/dialogs.po2
-rw-r--r--source/nb/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/connectivity/source/resource.po2
-rw-r--r--source/nb/cui/source/customize.po2
-rw-r--r--source/nb/cui/source/dialogs.po2
-rw-r--r--source/nb/cui/source/options.po10
-rw-r--r--source/nb/cui/source/tabpages.po2
-rw-r--r--source/nb/cui/uiconfig/ui.po26
-rw-r--r--source/nb/dbaccess/source/core/resource.po2
-rw-r--r--source/nb/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/nb/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/nb/dbaccess/source/ui/app.po2
-rw-r--r--source/nb/dbaccess/source/ui/browser.po2
-rw-r--r--source/nb/dbaccess/source/ui/control.po2
-rw-r--r--source/nb/dbaccess/source/ui/dlg.po2
-rw-r--r--source/nb/dbaccess/source/ui/inc.po2
-rw-r--r--source/nb/dbaccess/source/ui/misc.po2
-rw-r--r--source/nb/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/nb/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/nb/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/nb/dbaccess/source/ui/uno.po2
-rw-r--r--source/nb/desktop/source/app.po2
-rw-r--r--source/nb/desktop/source/deployment/gui.po2
-rw-r--r--source/nb/desktop/source/deployment/manager.po2
-rw-r--r--source/nb/desktop/source/deployment/misc.po2
-rw-r--r--source/nb/desktop/source/deployment/registry.po2
-rw-r--r--source/nb/desktop/source/deployment/registry/component.po2
-rw-r--r--source/nb/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/nb/desktop/source/deployment/registry/help.po2
-rw-r--r--source/nb/desktop/source/deployment/registry/package.po2
-rw-r--r--source/nb/desktop/source/deployment/registry/script.po2
-rw-r--r--source/nb/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/nb/desktop/source/deployment/unopkg.po2
-rw-r--r--source/nb/desktop/uiconfig/ui.po2
-rw-r--r--source/nb/dictionaries/af_ZA.po2
-rw-r--r--source/nb/dictionaries/an_ES.po2
-rw-r--r--source/nb/dictionaries/ar.po2
-rw-r--r--source/nb/dictionaries/be_BY.po2
-rw-r--r--source/nb/dictionaries/bg_BG.po2
-rw-r--r--source/nb/dictionaries/bn_BD.po2
-rw-r--r--source/nb/dictionaries/br_FR.po2
-rw-r--r--source/nb/dictionaries/ca.po2
-rw-r--r--source/nb/dictionaries/cs_CZ.po2
-rw-r--r--source/nb/dictionaries/da_DK.po2
-rw-r--r--source/nb/dictionaries/de.po2
-rw-r--r--source/nb/dictionaries/el_GR.po2
-rw-r--r--source/nb/dictionaries/en.po2
-rw-r--r--source/nb/dictionaries/en/dialog.po2
-rw-r--r--source/nb/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nb/dictionaries/es.po2
-rw-r--r--source/nb/dictionaries/et_EE.po2
-rw-r--r--source/nb/dictionaries/fr_FR.po2
-rw-r--r--source/nb/dictionaries/gd_GB.po2
-rw-r--r--source/nb/dictionaries/gl.po2
-rw-r--r--source/nb/dictionaries/gu_IN.po2
-rw-r--r--source/nb/dictionaries/he_IL.po2
-rw-r--r--source/nb/dictionaries/hi_IN.po2
-rw-r--r--source/nb/dictionaries/hr_HR.po2
-rw-r--r--source/nb/dictionaries/hu_HU.po2
-rw-r--r--source/nb/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/nb/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nb/dictionaries/it_IT.po2
-rw-r--r--source/nb/dictionaries/ku_TR.po2
-rw-r--r--source/nb/dictionaries/lt_LT.po2
-rw-r--r--source/nb/dictionaries/lv_LV.po2
-rw-r--r--source/nb/dictionaries/ne_NP.po2
-rw-r--r--source/nb/dictionaries/nl_NL.po2
-rw-r--r--source/nb/dictionaries/no.po2
-rw-r--r--source/nb/dictionaries/oc_FR.po2
-rw-r--r--source/nb/dictionaries/pl_PL.po2
-rw-r--r--source/nb/dictionaries/pt_BR.po2
-rw-r--r--source/nb/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/nb/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nb/dictionaries/pt_PT.po2
-rw-r--r--source/nb/dictionaries/ro.po2
-rw-r--r--source/nb/dictionaries/ru_RU.po2
-rw-r--r--source/nb/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/nb/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nb/dictionaries/si_LK.po2
-rw-r--r--source/nb/dictionaries/sk_SK.po2
-rw-r--r--source/nb/dictionaries/sl_SI.po2
-rw-r--r--source/nb/dictionaries/sr.po2
-rw-r--r--source/nb/dictionaries/sv_SE.po2
-rw-r--r--source/nb/dictionaries/sw_TZ.po2
-rw-r--r--source/nb/dictionaries/te_IN.po2
-rw-r--r--source/nb/dictionaries/th_TH.po2
-rw-r--r--source/nb/dictionaries/uk_UA.po2
-rw-r--r--source/nb/dictionaries/vi.po2
-rw-r--r--source/nb/dictionaries/zu_ZA.po2
-rw-r--r--source/nb/editeng/source/accessibility.po2
-rw-r--r--source/nb/editeng/source/editeng.po2
-rw-r--r--source/nb/editeng/source/items.po2
-rw-r--r--source/nb/editeng/source/misc.po2
-rw-r--r--source/nb/editeng/source/outliner.po2
-rw-r--r--source/nb/extensions/source/abpilot.po2
-rw-r--r--source/nb/extensions/source/bibliography.po2
-rw-r--r--source/nb/extensions/source/dbpilots.po2
-rw-r--r--source/nb/extensions/source/propctrlr.po2
-rw-r--r--source/nb/extensions/source/scanner.po2
-rw-r--r--source/nb/extensions/source/update/check.po2
-rw-r--r--source/nb/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/nb/filter/source/config/fragments/filters.po2
-rw-r--r--source/nb/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/nb/filter/source/config/fragments/types.po2
-rw-r--r--source/nb/filter/source/flash.po2
-rw-r--r--source/nb/filter/source/graphicfilter/eps.po2
-rw-r--r--source/nb/filter/source/pdf.po2
-rw-r--r--source/nb/filter/source/t602.po2
-rw-r--r--source/nb/filter/source/xsltdialog.po2
-rw-r--r--source/nb/filter/uiconfig/ui.po2
-rw-r--r--source/nb/forms/source/resource.po2
-rw-r--r--source/nb/formula/source/core/resource.po48
-rw-r--r--source/nb/formula/source/ui/dlg.po2
-rw-r--r--source/nb/fpicker/source/office.po2
-rw-r--r--source/nb/framework/source/classes.po2
-rw-r--r--source/nb/framework/source/services.po2
-rw-r--r--source/nb/helpcontent2/source/auxiliary.po120
-rw-r--r--source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/nb/librelogo/source/pythonpath.po2
-rw-r--r--source/nb/mysqlc/source.po2
-rw-r--r--source/nb/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nb/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/nb/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/nb/nlpsolver/src/locale.po2
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/nb/padmin/source.po4
-rw-r--r--source/nb/readlicense_oo/docs.po2
-rw-r--r--source/nb/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/nb/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nb/reportbuilder/registry/data/org/openoffice/Office/UI.po7
-rw-r--r--source/nb/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/nb/reportbuilder/util.po2
-rw-r--r--source/nb/reportdesign/source/core/resource.po2
-rw-r--r--source/nb/reportdesign/source/ui/dlg.po2
-rw-r--r--source/nb/reportdesign/source/ui/inspection.po2
-rw-r--r--source/nb/reportdesign/source/ui/report.po2
-rw-r--r--source/nb/sc/source/core/src.po2
-rw-r--r--source/nb/sc/source/ui/cctrl.po2
-rw-r--r--source/nb/sc/source/ui/dbgui.po2
-rw-r--r--source/nb/sc/source/ui/docshell.po2
-rw-r--r--source/nb/sc/source/ui/drawfunc.po2
-rw-r--r--source/nb/sc/source/ui/formdlg.po2
-rw-r--r--source/nb/sc/source/ui/miscdlgs.po2
-rw-r--r--source/nb/sc/source/ui/navipi.po2
-rw-r--r--source/nb/sc/source/ui/optdlg.po2
-rw-r--r--source/nb/sc/source/ui/pagedlg.po2
-rw-r--r--source/nb/sc/source/ui/src.po408
-rw-r--r--source/nb/sc/source/ui/styleui.po4
-rw-r--r--source/nb/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/nb/scaddins/source/analysis.po2
-rw-r--r--source/nb/scaddins/source/datefunc.po2
-rw-r--r--source/nb/scaddins/source/pricing.po2
-rw-r--r--source/nb/sccomp/source/solver.po2
-rw-r--r--source/nb/scp2/source/accessories.po2
-rw-r--r--source/nb/scp2/source/activex.po2
-rw-r--r--source/nb/scp2/source/base.po2
-rw-r--r--source/nb/scp2/source/calc.po2
-rw-r--r--source/nb/scp2/source/draw.po2
-rw-r--r--source/nb/scp2/source/extensions.po2
-rw-r--r--source/nb/scp2/source/gnome.po2
-rw-r--r--source/nb/scp2/source/graphicfilter.po2
-rw-r--r--source/nb/scp2/source/impress.po2
-rw-r--r--source/nb/scp2/source/javafilter.po2
-rw-r--r--source/nb/scp2/source/kde.po2
-rw-r--r--source/nb/scp2/source/math.po2
-rw-r--r--source/nb/scp2/source/onlineupdate.po2
-rw-r--r--source/nb/scp2/source/ooo.po4
-rw-r--r--source/nb/scp2/source/python.po22
-rw-r--r--source/nb/scp2/source/quickstart.po2
-rw-r--r--source/nb/scp2/source/sdkoo.po2
-rw-r--r--source/nb/scp2/source/smoketest.po2
-rw-r--r--source/nb/scp2/source/stdlibs.po2
-rw-r--r--source/nb/scp2/source/tde.po2
-rw-r--r--source/nb/scp2/source/winexplorerext.po2
-rw-r--r--source/nb/scp2/source/writer.po2
-rw-r--r--source/nb/scp2/source/xsltfilter.po2
-rw-r--r--source/nb/sd/source/core.po2
-rw-r--r--source/nb/sd/source/filter/html.po2
-rw-r--r--source/nb/sd/source/ui/accessibility.po2
-rw-r--r--source/nb/sd/source/ui/animations.po2
-rw-r--r--source/nb/sd/source/ui/annotations.po2
-rw-r--r--source/nb/sd/source/ui/app.po4
-rw-r--r--source/nb/sd/source/ui/dlg.po2
-rw-r--r--source/nb/sd/source/ui/slideshow.po2
-rw-r--r--source/nb/sd/source/ui/table.po2
-rw-r--r--source/nb/sd/source/ui/view.po2
-rw-r--r--source/nb/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/nb/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/nb/sdext/source/minimizer.po2
-rw-r--r--source/nb/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nb/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/nb/setup_native/source/mac.po2
-rw-r--r--source/nb/sfx2/source/appl.po2
-rw-r--r--source/nb/sfx2/source/bastyp.po2
-rw-r--r--source/nb/sfx2/source/control.po25
-rw-r--r--source/nb/sfx2/source/dialog.po48
-rw-r--r--source/nb/sfx2/source/doc.po126
-rw-r--r--source/nb/sfx2/source/menu.po2
-rw-r--r--source/nb/sfx2/source/view.po2
-rw-r--r--source/nb/sfx2/uiconfig/ui.po4
-rw-r--r--source/nb/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/nb/starmath/source.po2
-rw-r--r--source/nb/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/nb/svl/source/items.po2
-rw-r--r--source/nb/svl/source/misc.po2
-rw-r--r--source/nb/svtools/source/contnr.po2
-rw-r--r--source/nb/svtools/source/control.po2
-rw-r--r--source/nb/svtools/source/dialogs.po2
-rw-r--r--source/nb/svtools/source/java.po2
-rw-r--r--source/nb/svtools/source/misc.po10
-rw-r--r--source/nb/svtools/source/toolpanel.po2
-rw-r--r--source/nb/svtools/uiconfig/ui.po51
-rw-r--r--source/nb/svx/inc.po4
-rw-r--r--source/nb/svx/source/accessibility.po2
-rw-r--r--source/nb/svx/source/core.po2
-rw-r--r--source/nb/svx/source/dialog.po229
-rw-r--r--source/nb/svx/source/engine3d.po2
-rw-r--r--source/nb/svx/source/fmcomp.po2
-rw-r--r--source/nb/svx/source/form.po2
-rw-r--r--source/nb/svx/source/gallery2.po2
-rw-r--r--source/nb/svx/source/items.po2
-rw-r--r--source/nb/svx/source/src.po2
-rw-r--r--source/nb/svx/source/stbctrls.po2
-rw-r--r--source/nb/svx/source/svdraw.po2
-rw-r--r--source/nb/svx/source/table.po2
-rw-r--r--source/nb/svx/source/tbxctrls.po2
-rw-r--r--source/nb/svx/source/toolbars.po2
-rw-r--r--source/nb/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/nb/svx/uiconfig/ui.po206
-rw-r--r--source/nb/sw/source/core/layout.po2
-rw-r--r--source/nb/sw/source/core/undo.po2
-rw-r--r--source/nb/sw/source/core/unocore.po2
-rw-r--r--source/nb/sw/source/ui/app.po4
-rw-r--r--source/nb/sw/source/ui/chrdlg.po2
-rw-r--r--source/nb/sw/source/ui/config.po2
-rw-r--r--source/nb/sw/source/ui/dbui.po2
-rw-r--r--source/nb/sw/source/ui/dialog.po2
-rw-r--r--source/nb/sw/source/ui/dochdl.po2
-rw-r--r--source/nb/sw/source/ui/docvw.po2
-rw-r--r--source/nb/sw/source/ui/envelp.po2
-rw-r--r--source/nb/sw/source/ui/fldui.po2
-rw-r--r--source/nb/sw/source/ui/fmtui.po2
-rw-r--r--source/nb/sw/source/ui/frmdlg.po2
-rw-r--r--source/nb/sw/source/ui/globdoc.po2
-rw-r--r--source/nb/sw/source/ui/index.po2
-rw-r--r--source/nb/sw/source/ui/lingu.po2
-rw-r--r--source/nb/sw/source/ui/misc.po2
-rw-r--r--source/nb/sw/source/ui/ribbar.po2
-rw-r--r--source/nb/sw/source/ui/shells.po2
-rw-r--r--source/nb/sw/source/ui/smartmenu.po2
-rw-r--r--source/nb/sw/source/ui/table.po2
-rw-r--r--source/nb/sw/source/ui/uiview.po2
-rw-r--r--source/nb/sw/source/ui/utlui.po2
-rw-r--r--source/nb/sw/source/ui/web.po2
-rw-r--r--source/nb/sw/source/ui/wrtsh.po2
-rw-r--r--source/nb/sw/uiconfig/sw/ui.po278
-rw-r--r--source/nb/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/nb/swext/mediawiki/help.po2
-rw-r--r--source/nb/swext/mediawiki/src.po2
-rw-r--r--source/nb/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nb/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/nb/sysui/desktop/share.po2
-rw-r--r--source/nb/tubes/uiconfig/ui.po2
-rw-r--r--source/nb/uui/source.po2
-rw-r--r--source/nb/vcl/qa/cppunit/builder.po2
-rw-r--r--source/nb/vcl/source/edit.po2
-rw-r--r--source/nb/vcl/source/src.po2
-rw-r--r--source/nb/vcl/uiconfig/ui.po2
-rw-r--r--source/nb/wizards/source/euro.po2
-rw-r--r--source/nb/wizards/source/formwizard.po46
-rw-r--r--source/nb/wizards/source/importwizard.po2
-rw-r--r--source/nb/wizards/source/template.po4
-rw-r--r--source/nb/xmlsecurity/source/component.po2
-rw-r--r--source/nb/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ne/accessibility/source/helper.po2
-rw-r--r--source/ne/android/sdremote/res/values.po2
-rw-r--r--source/ne/avmedia/source/framework.po2
-rw-r--r--source/ne/avmedia/source/viewer.po2
-rw-r--r--source/ne/basctl/source/basicide.po2
-rw-r--r--source/ne/basctl/source/dlged.po2
-rw-r--r--source/ne/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ne/basic/source/classes.po2
-rw-r--r--source/ne/basic/source/sbx.po2
-rw-r--r--source/ne/chart2/source/controller/dialogs.po2
-rw-r--r--source/ne/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/connectivity/source/resource.po2
-rw-r--r--source/ne/cui/source/customize.po2
-rw-r--r--source/ne/cui/source/dialogs.po2
-rw-r--r--source/ne/cui/source/options.po2
-rw-r--r--source/ne/cui/source/tabpages.po2
-rw-r--r--source/ne/cui/uiconfig/ui.po2
-rw-r--r--source/ne/dbaccess/source/core/resource.po2
-rw-r--r--source/ne/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ne/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ne/dbaccess/source/ui/app.po2
-rw-r--r--source/ne/dbaccess/source/ui/browser.po2
-rw-r--r--source/ne/dbaccess/source/ui/control.po2
-rw-r--r--source/ne/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ne/dbaccess/source/ui/inc.po2
-rw-r--r--source/ne/dbaccess/source/ui/misc.po2
-rw-r--r--source/ne/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ne/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ne/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ne/dbaccess/source/ui/uno.po2
-rw-r--r--source/ne/desktop/source/app.po2
-rw-r--r--source/ne/desktop/source/deployment/gui.po2
-rw-r--r--source/ne/desktop/source/deployment/manager.po2
-rw-r--r--source/ne/desktop/source/deployment/misc.po2
-rw-r--r--source/ne/desktop/source/deployment/registry.po2
-rw-r--r--source/ne/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ne/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ne/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ne/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ne/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ne/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ne/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ne/desktop/uiconfig/ui.po2
-rw-r--r--source/ne/dictionaries/af_ZA.po2
-rw-r--r--source/ne/dictionaries/an_ES.po2
-rw-r--r--source/ne/dictionaries/ar.po2
-rw-r--r--source/ne/dictionaries/be_BY.po2
-rw-r--r--source/ne/dictionaries/bg_BG.po2
-rw-r--r--source/ne/dictionaries/bn_BD.po2
-rw-r--r--source/ne/dictionaries/br_FR.po2
-rw-r--r--source/ne/dictionaries/ca.po2
-rw-r--r--source/ne/dictionaries/cs_CZ.po2
-rw-r--r--source/ne/dictionaries/da_DK.po2
-rw-r--r--source/ne/dictionaries/de.po2
-rw-r--r--source/ne/dictionaries/el_GR.po2
-rw-r--r--source/ne/dictionaries/en.po2
-rw-r--r--source/ne/dictionaries/en/dialog.po2
-rw-r--r--source/ne/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ne/dictionaries/es.po2
-rw-r--r--source/ne/dictionaries/et_EE.po2
-rw-r--r--source/ne/dictionaries/fr_FR.po2
-rw-r--r--source/ne/dictionaries/gd_GB.po2
-rw-r--r--source/ne/dictionaries/gl.po2
-rw-r--r--source/ne/dictionaries/gu_IN.po2
-rw-r--r--source/ne/dictionaries/he_IL.po2
-rw-r--r--source/ne/dictionaries/hi_IN.po2
-rw-r--r--source/ne/dictionaries/hr_HR.po2
-rw-r--r--source/ne/dictionaries/hu_HU.po2
-rw-r--r--source/ne/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ne/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ne/dictionaries/it_IT.po2
-rw-r--r--source/ne/dictionaries/ku_TR.po2
-rw-r--r--source/ne/dictionaries/lt_LT.po2
-rw-r--r--source/ne/dictionaries/lv_LV.po2
-rw-r--r--source/ne/dictionaries/ne_NP.po2
-rw-r--r--source/ne/dictionaries/nl_NL.po2
-rw-r--r--source/ne/dictionaries/no.po2
-rw-r--r--source/ne/dictionaries/oc_FR.po2
-rw-r--r--source/ne/dictionaries/pl_PL.po2
-rw-r--r--source/ne/dictionaries/pt_BR.po2
-rw-r--r--source/ne/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ne/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ne/dictionaries/pt_PT.po2
-rw-r--r--source/ne/dictionaries/ro.po2
-rw-r--r--source/ne/dictionaries/ru_RU.po2
-rw-r--r--source/ne/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ne/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ne/dictionaries/si_LK.po2
-rw-r--r--source/ne/dictionaries/sk_SK.po2
-rw-r--r--source/ne/dictionaries/sl_SI.po2
-rw-r--r--source/ne/dictionaries/sr.po2
-rw-r--r--source/ne/dictionaries/sv_SE.po2
-rw-r--r--source/ne/dictionaries/sw_TZ.po2
-rw-r--r--source/ne/dictionaries/te_IN.po2
-rw-r--r--source/ne/dictionaries/th_TH.po2
-rw-r--r--source/ne/dictionaries/uk_UA.po2
-rw-r--r--source/ne/dictionaries/vi.po2
-rw-r--r--source/ne/dictionaries/zu_ZA.po2
-rw-r--r--source/ne/editeng/source/accessibility.po2
-rw-r--r--source/ne/editeng/source/editeng.po2
-rw-r--r--source/ne/editeng/source/items.po2
-rw-r--r--source/ne/editeng/source/misc.po2
-rw-r--r--source/ne/editeng/source/outliner.po2
-rw-r--r--source/ne/extensions/source/abpilot.po2
-rw-r--r--source/ne/extensions/source/bibliography.po2
-rw-r--r--source/ne/extensions/source/dbpilots.po2
-rw-r--r--source/ne/extensions/source/propctrlr.po2
-rw-r--r--source/ne/extensions/source/scanner.po2
-rw-r--r--source/ne/extensions/source/update/check.po2
-rw-r--r--source/ne/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ne/filter/source/config/fragments/filters.po2
-rw-r--r--source/ne/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ne/filter/source/config/fragments/types.po2
-rw-r--r--source/ne/filter/source/flash.po2
-rw-r--r--source/ne/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ne/filter/source/pdf.po2
-rw-r--r--source/ne/filter/source/t602.po2
-rw-r--r--source/ne/filter/source/xsltdialog.po2
-rw-r--r--source/ne/filter/uiconfig/ui.po2
-rw-r--r--source/ne/forms/source/resource.po2
-rw-r--r--source/ne/formula/source/core/resource.po38
-rw-r--r--source/ne/formula/source/ui/dlg.po2
-rw-r--r--source/ne/fpicker/source/office.po2
-rw-r--r--source/ne/framework/source/classes.po2
-rw-r--r--source/ne/framework/source/services.po2
-rw-r--r--source/ne/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/ne/librelogo/source/pythonpath.po2
-rw-r--r--source/ne/mysqlc/source.po2
-rw-r--r--source/ne/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ne/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ne/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ne/nlpsolver/src/locale.po2
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/ne/padmin/source.po2
-rw-r--r--source/ne/readlicense_oo/docs.po2
-rw-r--r--source/ne/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ne/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ne/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ne/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ne/reportbuilder/util.po2
-rw-r--r--source/ne/reportdesign/source/core/resource.po2
-rw-r--r--source/ne/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ne/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ne/reportdesign/source/ui/report.po2
-rw-r--r--source/ne/sc/source/core/src.po2
-rw-r--r--source/ne/sc/source/ui/cctrl.po2
-rw-r--r--source/ne/sc/source/ui/dbgui.po2
-rw-r--r--source/ne/sc/source/ui/docshell.po2
-rw-r--r--source/ne/sc/source/ui/drawfunc.po2
-rw-r--r--source/ne/sc/source/ui/formdlg.po2
-rw-r--r--source/ne/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ne/sc/source/ui/navipi.po2
-rw-r--r--source/ne/sc/source/ui/optdlg.po2
-rw-r--r--source/ne/sc/source/ui/pagedlg.po2
-rw-r--r--source/ne/sc/source/ui/src.po381
-rw-r--r--source/ne/sc/source/ui/styleui.po2
-rw-r--r--source/ne/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/ne/scaddins/source/analysis.po2
-rw-r--r--source/ne/scaddins/source/datefunc.po2
-rw-r--r--source/ne/scaddins/source/pricing.po2
-rw-r--r--source/ne/sccomp/source/solver.po2
-rw-r--r--source/ne/scp2/source/accessories.po2
-rw-r--r--source/ne/scp2/source/activex.po2
-rw-r--r--source/ne/scp2/source/base.po2
-rw-r--r--source/ne/scp2/source/calc.po2
-rw-r--r--source/ne/scp2/source/draw.po2
-rw-r--r--source/ne/scp2/source/extensions.po2
-rw-r--r--source/ne/scp2/source/gnome.po2
-rw-r--r--source/ne/scp2/source/graphicfilter.po2
-rw-r--r--source/ne/scp2/source/impress.po2
-rw-r--r--source/ne/scp2/source/javafilter.po2
-rw-r--r--source/ne/scp2/source/kde.po2
-rw-r--r--source/ne/scp2/source/math.po2
-rw-r--r--source/ne/scp2/source/onlineupdate.po2
-rw-r--r--source/ne/scp2/source/ooo.po2
-rw-r--r--source/ne/scp2/source/python.po18
-rw-r--r--source/ne/scp2/source/quickstart.po2
-rw-r--r--source/ne/scp2/source/sdkoo.po2
-rw-r--r--source/ne/scp2/source/smoketest.po2
-rw-r--r--source/ne/scp2/source/stdlibs.po2
-rw-r--r--source/ne/scp2/source/tde.po2
-rw-r--r--source/ne/scp2/source/winexplorerext.po2
-rw-r--r--source/ne/scp2/source/writer.po2
-rw-r--r--source/ne/scp2/source/xsltfilter.po2
-rw-r--r--source/ne/sd/source/core.po2
-rw-r--r--source/ne/sd/source/filter/html.po2
-rw-r--r--source/ne/sd/source/ui/accessibility.po2
-rw-r--r--source/ne/sd/source/ui/animations.po2
-rw-r--r--source/ne/sd/source/ui/annotations.po2
-rw-r--r--source/ne/sd/source/ui/app.po2
-rw-r--r--source/ne/sd/source/ui/dlg.po2
-rw-r--r--source/ne/sd/source/ui/slideshow.po2
-rw-r--r--source/ne/sd/source/ui/table.po2
-rw-r--r--source/ne/sd/source/ui/view.po2
-rw-r--r--source/ne/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ne/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ne/sdext/source/minimizer.po2
-rw-r--r--source/ne/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ne/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ne/setup_native/source/mac.po2
-rw-r--r--source/ne/sfx2/source/appl.po2
-rw-r--r--source/ne/sfx2/source/bastyp.po2
-rw-r--r--source/ne/sfx2/source/control.po23
-rw-r--r--source/ne/sfx2/source/dialog.po46
-rw-r--r--source/ne/sfx2/source/doc.po126
-rw-r--r--source/ne/sfx2/source/menu.po2
-rw-r--r--source/ne/sfx2/source/view.po2
-rw-r--r--source/ne/sfx2/uiconfig/ui.po2
-rw-r--r--source/ne/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ne/starmath/source.po2
-rw-r--r--source/ne/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ne/svl/source/items.po2
-rw-r--r--source/ne/svl/source/misc.po2
-rw-r--r--source/ne/svtools/source/contnr.po2
-rw-r--r--source/ne/svtools/source/control.po2
-rw-r--r--source/ne/svtools/source/dialogs.po2
-rw-r--r--source/ne/svtools/source/java.po2
-rw-r--r--source/ne/svtools/source/misc.po2
-rw-r--r--source/ne/svtools/source/toolpanel.po2
-rw-r--r--source/ne/svtools/uiconfig/ui.po55
-rw-r--r--source/ne/svx/inc.po2
-rw-r--r--source/ne/svx/source/accessibility.po2
-rw-r--r--source/ne/svx/source/core.po2
-rw-r--r--source/ne/svx/source/dialog.po225
-rw-r--r--source/ne/svx/source/engine3d.po2
-rw-r--r--source/ne/svx/source/fmcomp.po2
-rw-r--r--source/ne/svx/source/form.po2
-rw-r--r--source/ne/svx/source/gallery2.po2
-rw-r--r--source/ne/svx/source/items.po2
-rw-r--r--source/ne/svx/source/src.po2
-rw-r--r--source/ne/svx/source/stbctrls.po2
-rw-r--r--source/ne/svx/source/svdraw.po2
-rw-r--r--source/ne/svx/source/table.po2
-rw-r--r--source/ne/svx/source/tbxctrls.po2
-rw-r--r--source/ne/svx/source/toolbars.po2
-rw-r--r--source/ne/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ne/svx/uiconfig/ui.po204
-rw-r--r--source/ne/sw/source/core/layout.po2
-rw-r--r--source/ne/sw/source/core/undo.po2
-rw-r--r--source/ne/sw/source/core/unocore.po2
-rw-r--r--source/ne/sw/source/ui/app.po2
-rw-r--r--source/ne/sw/source/ui/chrdlg.po2
-rw-r--r--source/ne/sw/source/ui/config.po2
-rw-r--r--source/ne/sw/source/ui/dbui.po2
-rw-r--r--source/ne/sw/source/ui/dialog.po2
-rw-r--r--source/ne/sw/source/ui/dochdl.po2
-rw-r--r--source/ne/sw/source/ui/docvw.po2
-rw-r--r--source/ne/sw/source/ui/envelp.po2
-rw-r--r--source/ne/sw/source/ui/fldui.po2
-rw-r--r--source/ne/sw/source/ui/fmtui.po2
-rw-r--r--source/ne/sw/source/ui/frmdlg.po2
-rw-r--r--source/ne/sw/source/ui/globdoc.po2
-rw-r--r--source/ne/sw/source/ui/index.po2
-rw-r--r--source/ne/sw/source/ui/lingu.po2
-rw-r--r--source/ne/sw/source/ui/misc.po2
-rw-r--r--source/ne/sw/source/ui/ribbar.po2
-rw-r--r--source/ne/sw/source/ui/shells.po2
-rw-r--r--source/ne/sw/source/ui/smartmenu.po2
-rw-r--r--source/ne/sw/source/ui/table.po2
-rw-r--r--source/ne/sw/source/ui/uiview.po2
-rw-r--r--source/ne/sw/source/ui/utlui.po2
-rw-r--r--source/ne/sw/source/ui/web.po2
-rw-r--r--source/ne/sw/source/ui/wrtsh.po2
-rw-r--r--source/ne/sw/uiconfig/sw/ui.po283
-rw-r--r--source/ne/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/ne/swext/mediawiki/help.po2
-rw-r--r--source/ne/swext/mediawiki/src.po2
-rw-r--r--source/ne/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ne/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ne/sysui/desktop/share.po2
-rw-r--r--source/ne/tubes/uiconfig/ui.po2
-rw-r--r--source/ne/uui/source.po2
-rw-r--r--source/ne/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ne/vcl/source/edit.po2
-rw-r--r--source/ne/vcl/source/src.po2
-rw-r--r--source/ne/vcl/uiconfig/ui.po2
-rw-r--r--source/ne/wizards/source/euro.po2
-rw-r--r--source/ne/wizards/source/formwizard.po2
-rw-r--r--source/ne/wizards/source/importwizard.po2
-rw-r--r--source/ne/wizards/source/template.po2
-rw-r--r--source/ne/xmlsecurity/source/component.po2
-rw-r--r--source/ne/xmlsecurity/source/dialogs.po2
-rw-r--r--source/nl/accessibility/source/helper.po2
-rw-r--r--source/nl/android/sdremote/res/values.po15
-rw-r--r--source/nl/avmedia/source/framework.po2
-rw-r--r--source/nl/avmedia/source/viewer.po2
-rw-r--r--source/nl/basctl/source/basicide.po2
-rw-r--r--source/nl/basctl/source/dlged.po2
-rw-r--r--source/nl/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/nl/basic/source/classes.po2
-rw-r--r--source/nl/basic/source/sbx.po2
-rw-r--r--source/nl/chart2/source/controller/dialogs.po2
-rw-r--r--source/nl/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/connectivity/source/resource.po2
-rw-r--r--source/nl/cui/source/customize.po2
-rw-r--r--source/nl/cui/source/dialogs.po2
-rw-r--r--source/nl/cui/source/options.po4
-rw-r--r--source/nl/cui/source/tabpages.po2
-rw-r--r--source/nl/cui/uiconfig/ui.po4
-rw-r--r--source/nl/dbaccess/source/core/resource.po2
-rw-r--r--source/nl/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/nl/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/nl/dbaccess/source/ui/app.po2
-rw-r--r--source/nl/dbaccess/source/ui/browser.po2
-rw-r--r--source/nl/dbaccess/source/ui/control.po2
-rw-r--r--source/nl/dbaccess/source/ui/dlg.po2
-rw-r--r--source/nl/dbaccess/source/ui/inc.po2
-rw-r--r--source/nl/dbaccess/source/ui/misc.po2
-rw-r--r--source/nl/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/nl/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/nl/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/nl/dbaccess/source/ui/uno.po2
-rw-r--r--source/nl/desktop/source/app.po2
-rw-r--r--source/nl/desktop/source/deployment/gui.po2
-rw-r--r--source/nl/desktop/source/deployment/manager.po2
-rw-r--r--source/nl/desktop/source/deployment/misc.po2
-rw-r--r--source/nl/desktop/source/deployment/registry.po2
-rw-r--r--source/nl/desktop/source/deployment/registry/component.po2
-rw-r--r--source/nl/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/nl/desktop/source/deployment/registry/help.po2
-rw-r--r--source/nl/desktop/source/deployment/registry/package.po2
-rw-r--r--source/nl/desktop/source/deployment/registry/script.po2
-rw-r--r--source/nl/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/nl/desktop/source/deployment/unopkg.po2
-rw-r--r--source/nl/desktop/uiconfig/ui.po2
-rw-r--r--source/nl/dictionaries/af_ZA.po2
-rw-r--r--source/nl/dictionaries/an_ES.po2
-rw-r--r--source/nl/dictionaries/ar.po2
-rw-r--r--source/nl/dictionaries/be_BY.po2
-rw-r--r--source/nl/dictionaries/bg_BG.po2
-rw-r--r--source/nl/dictionaries/bn_BD.po2
-rw-r--r--source/nl/dictionaries/br_FR.po2
-rw-r--r--source/nl/dictionaries/ca.po2
-rw-r--r--source/nl/dictionaries/cs_CZ.po2
-rw-r--r--source/nl/dictionaries/da_DK.po2
-rw-r--r--source/nl/dictionaries/de.po2
-rw-r--r--source/nl/dictionaries/el_GR.po2
-rw-r--r--source/nl/dictionaries/en.po2
-rw-r--r--source/nl/dictionaries/en/dialog.po2
-rw-r--r--source/nl/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nl/dictionaries/es.po2
-rw-r--r--source/nl/dictionaries/et_EE.po2
-rw-r--r--source/nl/dictionaries/fr_FR.po2
-rw-r--r--source/nl/dictionaries/gd_GB.po2
-rw-r--r--source/nl/dictionaries/gl.po2
-rw-r--r--source/nl/dictionaries/gu_IN.po2
-rw-r--r--source/nl/dictionaries/he_IL.po2
-rw-r--r--source/nl/dictionaries/hi_IN.po2
-rw-r--r--source/nl/dictionaries/hr_HR.po2
-rw-r--r--source/nl/dictionaries/hu_HU.po2
-rw-r--r--source/nl/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/nl/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nl/dictionaries/it_IT.po2
-rw-r--r--source/nl/dictionaries/ku_TR.po2
-rw-r--r--source/nl/dictionaries/lt_LT.po2
-rw-r--r--source/nl/dictionaries/lv_LV.po2
-rw-r--r--source/nl/dictionaries/ne_NP.po2
-rw-r--r--source/nl/dictionaries/nl_NL.po2
-rw-r--r--source/nl/dictionaries/no.po2
-rw-r--r--source/nl/dictionaries/oc_FR.po2
-rw-r--r--source/nl/dictionaries/pl_PL.po2
-rw-r--r--source/nl/dictionaries/pt_BR.po2
-rw-r--r--source/nl/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/nl/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nl/dictionaries/pt_PT.po2
-rw-r--r--source/nl/dictionaries/ro.po2
-rw-r--r--source/nl/dictionaries/ru_RU.po2
-rw-r--r--source/nl/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/nl/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nl/dictionaries/si_LK.po2
-rw-r--r--source/nl/dictionaries/sk_SK.po2
-rw-r--r--source/nl/dictionaries/sl_SI.po2
-rw-r--r--source/nl/dictionaries/sr.po2
-rw-r--r--source/nl/dictionaries/sv_SE.po2
-rw-r--r--source/nl/dictionaries/sw_TZ.po2
-rw-r--r--source/nl/dictionaries/te_IN.po2
-rw-r--r--source/nl/dictionaries/th_TH.po2
-rw-r--r--source/nl/dictionaries/uk_UA.po2
-rw-r--r--source/nl/dictionaries/vi.po2
-rw-r--r--source/nl/dictionaries/zu_ZA.po2
-rw-r--r--source/nl/editeng/source/accessibility.po2
-rw-r--r--source/nl/editeng/source/editeng.po2
-rw-r--r--source/nl/editeng/source/items.po2
-rw-r--r--source/nl/editeng/source/misc.po2
-rw-r--r--source/nl/editeng/source/outliner.po2
-rw-r--r--source/nl/extensions/source/abpilot.po2
-rw-r--r--source/nl/extensions/source/bibliography.po2
-rw-r--r--source/nl/extensions/source/dbpilots.po2
-rw-r--r--source/nl/extensions/source/propctrlr.po2
-rw-r--r--source/nl/extensions/source/scanner.po2
-rw-r--r--source/nl/extensions/source/update/check.po2
-rw-r--r--source/nl/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/nl/filter/source/config/fragments/filters.po2
-rw-r--r--source/nl/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/nl/filter/source/config/fragments/types.po2
-rw-r--r--source/nl/filter/source/flash.po2
-rw-r--r--source/nl/filter/source/graphicfilter/eps.po2
-rw-r--r--source/nl/filter/source/pdf.po2
-rw-r--r--source/nl/filter/source/t602.po2
-rw-r--r--source/nl/filter/source/xsltdialog.po2
-rw-r--r--source/nl/filter/uiconfig/ui.po2
-rw-r--r--source/nl/forms/source/resource.po2
-rw-r--r--source/nl/formula/source/core/resource.po49
-rw-r--r--source/nl/formula/source/ui/dlg.po2
-rw-r--r--source/nl/fpicker/source/office.po2
-rw-r--r--source/nl/framework/source/classes.po2
-rw-r--r--source/nl/framework/source/services.po2
-rw-r--r--source/nl/helpcontent2/source/auxiliary.po8
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/nl/helpcontent2/source/text/scalc/05.po11
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po12
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/nl/helpcontent2/source/text/simpress.po83
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/nl/helpcontent2/source/text/swriter/librelogo.po532
-rw-r--r--source/nl/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/nl/librelogo/source/pythonpath.po2
-rw-r--r--source/nl/mysqlc/source.po2
-rw-r--r--source/nl/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/nl/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/nl/nlpsolver/src/locale.po2
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office.po14
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po39
-rw-r--r--source/nl/padmin/source.po19
-rw-r--r--source/nl/readlicense_oo/docs.po2
-rw-r--r--source/nl/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/nl/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nl/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/nl/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/nl/reportbuilder/util.po2
-rw-r--r--source/nl/reportdesign/source/core/resource.po2
-rw-r--r--source/nl/reportdesign/source/ui/dlg.po2
-rw-r--r--source/nl/reportdesign/source/ui/inspection.po2
-rw-r--r--source/nl/reportdesign/source/ui/report.po2
-rw-r--r--source/nl/sc/source/core/src.po2
-rw-r--r--source/nl/sc/source/ui/cctrl.po2
-rw-r--r--source/nl/sc/source/ui/dbgui.po2
-rw-r--r--source/nl/sc/source/ui/docshell.po2
-rw-r--r--source/nl/sc/source/ui/drawfunc.po2
-rw-r--r--source/nl/sc/source/ui/formdlg.po2
-rw-r--r--source/nl/sc/source/ui/miscdlgs.po2
-rw-r--r--source/nl/sc/source/ui/navipi.po2
-rw-r--r--source/nl/sc/source/ui/optdlg.po2
-rw-r--r--source/nl/sc/source/ui/pagedlg.po2
-rw-r--r--source/nl/sc/source/ui/src.po408
-rw-r--r--source/nl/sc/source/ui/styleui.po4
-rw-r--r--source/nl/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/nl/scaddins/source/analysis.po2
-rw-r--r--source/nl/scaddins/source/datefunc.po2
-rw-r--r--source/nl/scaddins/source/pricing.po4
-rw-r--r--source/nl/sccomp/source/solver.po2
-rw-r--r--source/nl/scp2/source/accessories.po2
-rw-r--r--source/nl/scp2/source/activex.po2
-rw-r--r--source/nl/scp2/source/base.po2
-rw-r--r--source/nl/scp2/source/calc.po2
-rw-r--r--source/nl/scp2/source/draw.po2
-rw-r--r--source/nl/scp2/source/extensions.po2
-rw-r--r--source/nl/scp2/source/gnome.po2
-rw-r--r--source/nl/scp2/source/graphicfilter.po2
-rw-r--r--source/nl/scp2/source/impress.po2
-rw-r--r--source/nl/scp2/source/javafilter.po2
-rw-r--r--source/nl/scp2/source/kde.po2
-rw-r--r--source/nl/scp2/source/math.po2
-rw-r--r--source/nl/scp2/source/onlineupdate.po2
-rw-r--r--source/nl/scp2/source/ooo.po18
-rw-r--r--source/nl/scp2/source/python.po26
-rw-r--r--source/nl/scp2/source/quickstart.po2
-rw-r--r--source/nl/scp2/source/sdkoo.po2
-rw-r--r--source/nl/scp2/source/smoketest.po2
-rw-r--r--source/nl/scp2/source/stdlibs.po2
-rw-r--r--source/nl/scp2/source/tde.po2
-rw-r--r--source/nl/scp2/source/winexplorerext.po2
-rw-r--r--source/nl/scp2/source/writer.po2
-rw-r--r--source/nl/scp2/source/xsltfilter.po2
-rw-r--r--source/nl/sd/source/core.po2
-rw-r--r--source/nl/sd/source/filter/html.po2
-rw-r--r--source/nl/sd/source/ui/accessibility.po2
-rw-r--r--source/nl/sd/source/ui/animations.po2
-rw-r--r--source/nl/sd/source/ui/annotations.po2
-rw-r--r--source/nl/sd/source/ui/app.po18
-rw-r--r--source/nl/sd/source/ui/dlg.po14
-rw-r--r--source/nl/sd/source/ui/slideshow.po2
-rw-r--r--source/nl/sd/source/ui/table.po2
-rw-r--r--source/nl/sd/source/ui/view.po2
-rw-r--r--source/nl/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/nl/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/nl/sdext/source/minimizer.po2
-rw-r--r--source/nl/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nl/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/nl/setup_native/source/mac.po2
-rw-r--r--source/nl/sfx2/source/appl.po2
-rw-r--r--source/nl/sfx2/source/bastyp.po2
-rw-r--r--source/nl/sfx2/source/control.po25
-rw-r--r--source/nl/sfx2/source/dialog.po58
-rw-r--r--source/nl/sfx2/source/doc.po130
-rw-r--r--source/nl/sfx2/source/menu.po2
-rw-r--r--source/nl/sfx2/source/view.po2
-rw-r--r--source/nl/sfx2/uiconfig/ui.po2
-rw-r--r--source/nl/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/nl/starmath/source.po2
-rw-r--r--source/nl/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/nl/svl/source/items.po2
-rw-r--r--source/nl/svl/source/misc.po2
-rw-r--r--source/nl/svtools/source/contnr.po2
-rw-r--r--source/nl/svtools/source/control.po2
-rw-r--r--source/nl/svtools/source/dialogs.po2
-rw-r--r--source/nl/svtools/source/java.po2
-rw-r--r--source/nl/svtools/source/misc.po40
-rw-r--r--source/nl/svtools/source/toolpanel.po2
-rw-r--r--source/nl/svtools/uiconfig/ui.po62
-rw-r--r--source/nl/svx/inc.po12
-rw-r--r--source/nl/svx/source/accessibility.po2
-rw-r--r--source/nl/svx/source/core.po2
-rw-r--r--source/nl/svx/source/dialog.po230
-rw-r--r--source/nl/svx/source/engine3d.po2
-rw-r--r--source/nl/svx/source/fmcomp.po2
-rw-r--r--source/nl/svx/source/form.po2
-rw-r--r--source/nl/svx/source/gallery2.po2
-rw-r--r--source/nl/svx/source/items.po2
-rw-r--r--source/nl/svx/source/src.po2
-rw-r--r--source/nl/svx/source/stbctrls.po2
-rw-r--r--source/nl/svx/source/svdraw.po2
-rw-r--r--source/nl/svx/source/table.po2
-rw-r--r--source/nl/svx/source/tbxctrls.po2
-rw-r--r--source/nl/svx/source/toolbars.po2
-rw-r--r--source/nl/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/nl/svx/uiconfig/ui.po206
-rw-r--r--source/nl/sw/source/core/layout.po2
-rw-r--r--source/nl/sw/source/core/undo.po2
-rw-r--r--source/nl/sw/source/core/unocore.po2
-rw-r--r--source/nl/sw/source/ui/app.po4
-rw-r--r--source/nl/sw/source/ui/chrdlg.po4
-rw-r--r--source/nl/sw/source/ui/config.po2
-rw-r--r--source/nl/sw/source/ui/dbui.po2
-rw-r--r--source/nl/sw/source/ui/dialog.po2
-rw-r--r--source/nl/sw/source/ui/dochdl.po2
-rw-r--r--source/nl/sw/source/ui/docvw.po2
-rw-r--r--source/nl/sw/source/ui/envelp.po2
-rw-r--r--source/nl/sw/source/ui/fldui.po2
-rw-r--r--source/nl/sw/source/ui/fmtui.po2
-rw-r--r--source/nl/sw/source/ui/frmdlg.po2
-rw-r--r--source/nl/sw/source/ui/globdoc.po2
-rw-r--r--source/nl/sw/source/ui/index.po2
-rw-r--r--source/nl/sw/source/ui/lingu.po2
-rw-r--r--source/nl/sw/source/ui/misc.po2
-rw-r--r--source/nl/sw/source/ui/ribbar.po2
-rw-r--r--source/nl/sw/source/ui/shells.po2
-rw-r--r--source/nl/sw/source/ui/smartmenu.po2
-rw-r--r--source/nl/sw/source/ui/table.po2
-rw-r--r--source/nl/sw/source/ui/uiview.po2
-rw-r--r--source/nl/sw/source/ui/utlui.po4
-rw-r--r--source/nl/sw/source/ui/web.po2
-rw-r--r--source/nl/sw/source/ui/wrtsh.po2
-rw-r--r--source/nl/sw/uiconfig/sw/ui.po278
-rw-r--r--source/nl/sw/uiconfig/swriter/ui.po29
-rw-r--r--source/nl/swext/mediawiki/help.po2
-rw-r--r--source/nl/swext/mediawiki/src.po2
-rw-r--r--source/nl/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/nl/sysui/desktop/share.po2
-rw-r--r--source/nl/tubes/uiconfig/ui.po4
-rw-r--r--source/nl/uui/source.po2
-rw-r--r--source/nl/vcl/qa/cppunit/builder.po2
-rw-r--r--source/nl/vcl/source/edit.po2
-rw-r--r--source/nl/vcl/source/src.po2
-rw-r--r--source/nl/vcl/uiconfig/ui.po2
-rw-r--r--source/nl/wizards/source/euro.po2
-rw-r--r--source/nl/wizards/source/formwizard.po8
-rw-r--r--source/nl/wizards/source/importwizard.po2
-rw-r--r--source/nl/wizards/source/template.po2
-rw-r--r--source/nl/xmlsecurity/source/component.po2
-rw-r--r--source/nl/xmlsecurity/source/dialogs.po2
-rw-r--r--source/nn/accessibility/source/helper.po9
-rw-r--r--source/nn/android/sdremote/res/values.po111
-rw-r--r--source/nn/avmedia/source/framework.po2
-rw-r--r--source/nn/avmedia/source/viewer.po2
-rw-r--r--source/nn/basctl/source/basicide.po24
-rw-r--r--source/nn/basctl/source/dlged.po2
-rw-r--r--source/nn/basctl/uiconfig/basicide/ui.po19
-rw-r--r--source/nn/basic/source/classes.po2
-rw-r--r--source/nn/basic/source/sbx.po2
-rw-r--r--source/nn/chart2/source/controller/dialogs.po106
-rw-r--r--source/nn/connectivity/registry/ado/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/nn/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nn/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po11
-rw-r--r--source/nn/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/nn/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nn/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/nn/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/nn/connectivity/registry/kab/org/openoffice/Office/DataAccess.po9
-rw-r--r--source/nn/connectivity/registry/macab/org/openoffice/Office/DataAccess.po9
-rw-r--r--source/nn/connectivity/registry/mork/org/openoffice/Office/DataAccess.po9
-rw-r--r--source/nn/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po18
-rw-r--r--source/nn/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/nn/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/nn/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/nn/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po11
-rw-r--r--source/nn/connectivity/source/resource.po17
-rw-r--r--source/nn/cui/source/customize.po289
-rw-r--r--source/nn/cui/source/dialogs.po930
-rw-r--r--source/nn/cui/source/options.po1192
-rw-r--r--source/nn/cui/source/tabpages.po2047
-rw-r--r--source/nn/cui/uiconfig/ui.po272
-rw-r--r--source/nn/dbaccess/source/core/resource.po53
-rw-r--r--source/nn/dbaccess/source/ext/macromigration.po16
-rw-r--r--source/nn/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/nn/dbaccess/source/ui/app.po24
-rw-r--r--source/nn/dbaccess/source/ui/browser.po10
-rw-r--r--source/nn/dbaccess/source/ui/control.po2
-rw-r--r--source/nn/dbaccess/source/ui/dlg.po25
-rw-r--r--source/nn/dbaccess/source/ui/inc.po2
-rw-r--r--source/nn/dbaccess/source/ui/misc.po16
-rw-r--r--source/nn/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/nn/dbaccess/source/ui/relationdesign.po11
-rw-r--r--source/nn/dbaccess/source/ui/tabledesign.po12
-rw-r--r--source/nn/dbaccess/source/ui/uno.po15
-rw-r--r--source/nn/desktop/source/app.po11
-rw-r--r--source/nn/desktop/source/deployment/gui.po47
-rw-r--r--source/nn/desktop/source/deployment/manager.po11
-rw-r--r--source/nn/desktop/source/deployment/misc.po15
-rw-r--r--source/nn/desktop/source/deployment/registry.po2
-rw-r--r--source/nn/desktop/source/deployment/registry/component.po12
-rw-r--r--source/nn/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/nn/desktop/source/deployment/registry/help.po2
-rw-r--r--source/nn/desktop/source/deployment/registry/package.po2
-rw-r--r--source/nn/desktop/source/deployment/registry/script.po2
-rw-r--r--source/nn/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/nn/desktop/source/deployment/unopkg.po2
-rw-r--r--source/nn/desktop/uiconfig/ui.po27
-rw-r--r--source/nn/dictionaries/af_ZA.po11
-rw-r--r--source/nn/dictionaries/an_ES.po12
-rw-r--r--source/nn/dictionaries/ar.po11
-rw-r--r--source/nn/dictionaries/be_BY.po12
-rw-r--r--source/nn/dictionaries/bg_BG.po11
-rw-r--r--source/nn/dictionaries/bn_BD.po11
-rw-r--r--source/nn/dictionaries/br_FR.po11
-rw-r--r--source/nn/dictionaries/ca.po11
-rw-r--r--source/nn/dictionaries/cs_CZ.po11
-rw-r--r--source/nn/dictionaries/da_DK.po11
-rw-r--r--source/nn/dictionaries/de.po11
-rw-r--r--source/nn/dictionaries/el_GR.po12
-rw-r--r--source/nn/dictionaries/en.po11
-rw-r--r--source/nn/dictionaries/en/dialog.po85
-rw-r--r--source/nn/dictionaries/en/dialog/registry/data/org/openoffice/Office.po11
-rw-r--r--source/nn/dictionaries/es.po11
-rw-r--r--source/nn/dictionaries/et_EE.po11
-rw-r--r--source/nn/dictionaries/fr_FR.po11
-rw-r--r--source/nn/dictionaries/gd_GB.po12
-rw-r--r--source/nn/dictionaries/gl.po11
-rw-r--r--source/nn/dictionaries/gu_IN.po11
-rw-r--r--source/nn/dictionaries/he_IL.po11
-rw-r--r--source/nn/dictionaries/hi_IN.po11
-rw-r--r--source/nn/dictionaries/hr_HR.po11
-rw-r--r--source/nn/dictionaries/hu_HU.po11
-rw-r--r--source/nn/dictionaries/hu_HU/dialog.po77
-rw-r--r--source/nn/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po11
-rw-r--r--source/nn/dictionaries/it_IT.po11
-rw-r--r--source/nn/dictionaries/ku_TR.po11
-rw-r--r--source/nn/dictionaries/lt_LT.po11
-rw-r--r--source/nn/dictionaries/lv_LV.po11
-rw-r--r--source/nn/dictionaries/ne_NP.po11
-rw-r--r--source/nn/dictionaries/nl_NL.po11
-rw-r--r--source/nn/dictionaries/no.po11
-rw-r--r--source/nn/dictionaries/oc_FR.po11
-rw-r--r--source/nn/dictionaries/pl_PL.po11
-rw-r--r--source/nn/dictionaries/pt_BR.po11
-rw-r--r--source/nn/dictionaries/pt_BR/dialog.po84
-rw-r--r--source/nn/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po14
-rw-r--r--source/nn/dictionaries/pt_PT.po11
-rw-r--r--source/nn/dictionaries/ro.po11
-rw-r--r--source/nn/dictionaries/ru_RU.po11
-rw-r--r--source/nn/dictionaries/ru_RU/dialog.po34
-rw-r--r--source/nn/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po11
-rw-r--r--source/nn/dictionaries/si_LK.po12
-rw-r--r--source/nn/dictionaries/sk_SK.po11
-rw-r--r--source/nn/dictionaries/sl_SI.po11
-rw-r--r--source/nn/dictionaries/sr.po11
-rw-r--r--source/nn/dictionaries/sv_SE.po11
-rw-r--r--source/nn/dictionaries/sw_TZ.po11
-rw-r--r--source/nn/dictionaries/te_IN.po12
-rw-r--r--source/nn/dictionaries/th_TH.po11
-rw-r--r--source/nn/dictionaries/uk_UA.po11
-rw-r--r--source/nn/dictionaries/vi.po11
-rw-r--r--source/nn/dictionaries/zu_ZA.po11
-rw-r--r--source/nn/editeng/source/accessibility.po13
-rw-r--r--source/nn/editeng/source/editeng.po25
-rw-r--r--source/nn/editeng/source/items.po507
-rw-r--r--source/nn/editeng/source/misc.po19
-rw-r--r--source/nn/editeng/source/outliner.po10
-rw-r--r--source/nn/extensions/source/abpilot.po13
-rw-r--r--source/nn/extensions/source/bibliography.po2
-rw-r--r--source/nn/extensions/source/dbpilots.po2
-rw-r--r--source/nn/extensions/source/propctrlr.po19
-rw-r--r--source/nn/extensions/source/scanner.po2
-rw-r--r--source/nn/extensions/source/update/check.po33
-rw-r--r--source/nn/extensions/source/update/check/org/openoffice/Office.po13
-rw-r--r--source/nn/filter/source/config/fragments/filters.po85
-rw-r--r--source/nn/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/nn/filter/source/config/fragments/types.po30
-rw-r--r--source/nn/filter/source/flash.po2
-rw-r--r--source/nn/filter/source/graphicfilter/eps.po11
-rw-r--r--source/nn/filter/source/pdf.po63
-rw-r--r--source/nn/filter/source/t602.po2
-rw-r--r--source/nn/filter/source/xsltdialog.po14
-rw-r--r--source/nn/filter/uiconfig/ui.po38
-rw-r--r--source/nn/forms/source/resource.po2
-rw-r--r--source/nn/formula/source/core/resource.po72
-rw-r--r--source/nn/formula/source/ui/dlg.po2
-rw-r--r--source/nn/fpicker/source/office.po28
-rw-r--r--source/nn/framework/source/classes.po13
-rw-r--r--source/nn/framework/source/services.po2
-rw-r--r--source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po36
-rw-r--r--source/nn/librelogo/source/pythonpath.po236
-rw-r--r--source/nn/mysqlc/source.po13
-rw-r--r--source/nn/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po11
-rw-r--r--source/nn/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po44
-rw-r--r--source/nn/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/nn/nlpsolver/src/locale.po2
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office.po174
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po283
-rw-r--r--source/nn/padmin/source.po31
-rw-r--r--source/nn/readlicense_oo/docs.po203
-rw-r--r--source/nn/reportbuilder/java/com/sun/star/report/function/metadata.po22
-rw-r--r--source/nn/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nn/reportbuilder/registry/data/org/openoffice/Office/UI.po15
-rw-r--r--source/nn/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/nn/reportbuilder/util.po13
-rw-r--r--source/nn/reportdesign/source/core/resource.po2
-rw-r--r--source/nn/reportdesign/source/ui/dlg.po2
-rw-r--r--source/nn/reportdesign/source/ui/inspection.po2
-rw-r--r--source/nn/reportdesign/source/ui/report.po2
-rw-r--r--source/nn/sc/source/core/src.po2
-rw-r--r--source/nn/sc/source/ui/cctrl.po37
-rw-r--r--source/nn/sc/source/ui/dbgui.po37
-rw-r--r--source/nn/sc/source/ui/docshell.po2
-rw-r--r--source/nn/sc/source/ui/drawfunc.po15
-rw-r--r--source/nn/sc/source/ui/formdlg.po2
-rw-r--r--source/nn/sc/source/ui/miscdlgs.po18
-rw-r--r--source/nn/sc/source/ui/navipi.po10
-rw-r--r--source/nn/sc/source/ui/optdlg.po22
-rw-r--r--source/nn/sc/source/ui/pagedlg.po2
-rw-r--r--source/nn/sc/source/ui/src.po1115
-rw-r--r--source/nn/sc/source/ui/styleui.po25
-rw-r--r--source/nn/sc/uiconfig/scalc/ui.po49
-rw-r--r--source/nn/scaddins/source/analysis.po52
-rw-r--r--source/nn/scaddins/source/datefunc.po2
-rw-r--r--source/nn/scaddins/source/pricing.po14
-rw-r--r--source/nn/sccomp/source/solver.po2
-rw-r--r--source/nn/scp2/source/accessories.po57
-rw-r--r--source/nn/scp2/source/activex.po2
-rw-r--r--source/nn/scp2/source/base.po13
-rw-r--r--source/nn/scp2/source/calc.po11
-rw-r--r--source/nn/scp2/source/draw.po13
-rw-r--r--source/nn/scp2/source/extensions.po112
-rw-r--r--source/nn/scp2/source/gnome.po2
-rw-r--r--source/nn/scp2/source/graphicfilter.po2
-rw-r--r--source/nn/scp2/source/impress.po2
-rw-r--r--source/nn/scp2/source/javafilter.po2
-rw-r--r--source/nn/scp2/source/kde.po2
-rw-r--r--source/nn/scp2/source/math.po2
-rw-r--r--source/nn/scp2/source/onlineupdate.po2
-rw-r--r--source/nn/scp2/source/ooo.po809
-rw-r--r--source/nn/scp2/source/python.po27
-rw-r--r--source/nn/scp2/source/quickstart.po2
-rw-r--r--source/nn/scp2/source/sdkoo.po2
-rw-r--r--source/nn/scp2/source/smoketest.po15
-rw-r--r--source/nn/scp2/source/stdlibs.po14
-rw-r--r--source/nn/scp2/source/tde.po16
-rw-r--r--source/nn/scp2/source/winexplorerext.po2
-rw-r--r--source/nn/scp2/source/writer.po2
-rw-r--r--source/nn/scp2/source/xsltfilter.po2
-rw-r--r--source/nn/sd/source/core.po21
-rw-r--r--source/nn/sd/source/filter/html.po2
-rw-r--r--source/nn/sd/source/ui/accessibility.po2
-rw-r--r--source/nn/sd/source/ui/animations.po45
-rw-r--r--source/nn/sd/source/ui/annotations.po2
-rw-r--r--source/nn/sd/source/ui/app.po105
-rw-r--r--source/nn/sd/source/ui/dlg.po69
-rw-r--r--source/nn/sd/source/ui/slideshow.po29
-rw-r--r--source/nn/sd/source/ui/table.po27
-rw-r--r--source/nn/sd/source/ui/view.po119
-rw-r--r--source/nn/sd/uiconfig/sdraw/ui.po27
-rw-r--r--source/nn/sd/uiconfig/simpress/ui.po30
-rw-r--r--source/nn/sdext/source/minimizer.po11
-rw-r--r--source/nn/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nn/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po15
-rw-r--r--source/nn/setup_native/source/mac.po2
-rw-r--r--source/nn/sfx2/source/appl.po77
-rw-r--r--source/nn/sfx2/source/bastyp.po2
-rw-r--r--source/nn/sfx2/source/control.po25
-rw-r--r--source/nn/sfx2/source/dialog.po147
-rw-r--r--source/nn/sfx2/source/doc.po228
-rw-r--r--source/nn/sfx2/source/menu.po24
-rw-r--r--source/nn/sfx2/source/view.po13
-rw-r--r--source/nn/sfx2/uiconfig/ui.po36
-rw-r--r--source/nn/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/nn/starmath/source.po99
-rw-r--r--source/nn/starmath/uiconfig/smath/ui.po21
-rw-r--r--source/nn/svl/source/items.po2
-rw-r--r--source/nn/svl/source/misc.po133
-rw-r--r--source/nn/svtools/source/contnr.po11
-rw-r--r--source/nn/svtools/source/control.po19
-rw-r--r--source/nn/svtools/source/dialogs.po46
-rw-r--r--source/nn/svtools/source/java.po27
-rw-r--r--source/nn/svtools/source/misc.po222
-rw-r--r--source/nn/svtools/source/toolpanel.po13
-rw-r--r--source/nn/svtools/uiconfig/ui.po149
-rw-r--r--source/nn/svx/inc.po25
-rw-r--r--source/nn/svx/source/accessibility.po2
-rw-r--r--source/nn/svx/source/core.po2
-rw-r--r--source/nn/svx/source/dialog.po539
-rw-r--r--source/nn/svx/source/engine3d.po2
-rw-r--r--source/nn/svx/source/fmcomp.po2
-rw-r--r--source/nn/svx/source/form.po2
-rw-r--r--source/nn/svx/source/gallery2.po104
-rw-r--r--source/nn/svx/source/items.po2
-rw-r--r--source/nn/svx/source/src.po21
-rw-r--r--source/nn/svx/source/stbctrls.po12
-rw-r--r--source/nn/svx/source/svdraw.po17
-rw-r--r--source/nn/svx/source/table.po2
-rw-r--r--source/nn/svx/source/tbxctrls.po26
-rw-r--r--source/nn/svx/source/toolbars.po2
-rw-r--r--source/nn/svx/source/unodialogs/textconversiondlgs.po54
-rw-r--r--source/nn/svx/uiconfig/ui.po206
-rw-r--r--source/nn/sw/source/core/layout.po13
-rw-r--r--source/nn/sw/source/core/undo.po13
-rw-r--r--source/nn/sw/source/core/unocore.po2
-rw-r--r--source/nn/sw/source/ui/app.po95
-rw-r--r--source/nn/sw/source/ui/chrdlg.po12
-rw-r--r--source/nn/sw/source/ui/config.po58
-rw-r--r--source/nn/sw/source/ui/dbui.po15
-rw-r--r--source/nn/sw/source/ui/dialog.po14
-rw-r--r--source/nn/sw/source/ui/dochdl.po2
-rw-r--r--source/nn/sw/source/ui/docvw.po26
-rw-r--r--source/nn/sw/source/ui/envelp.po15
-rw-r--r--source/nn/sw/source/ui/fldui.po2
-rw-r--r--source/nn/sw/source/ui/fmtui.po2
-rw-r--r--source/nn/sw/source/ui/frmdlg.po2
-rw-r--r--source/nn/sw/source/ui/globdoc.po2
-rw-r--r--source/nn/sw/source/ui/index.po69
-rw-r--r--source/nn/sw/source/ui/lingu.po18
-rw-r--r--source/nn/sw/source/ui/misc.po63
-rw-r--r--source/nn/sw/source/ui/ribbar.po2
-rw-r--r--source/nn/sw/source/ui/shells.po2
-rw-r--r--source/nn/sw/source/ui/smartmenu.po2
-rw-r--r--source/nn/sw/source/ui/table.po2
-rw-r--r--source/nn/sw/source/ui/uiview.po2
-rw-r--r--source/nn/sw/source/ui/utlui.po2
-rw-r--r--source/nn/sw/source/ui/web.po2
-rw-r--r--source/nn/sw/source/ui/wrtsh.po2
-rw-r--r--source/nn/sw/uiconfig/sw/ui.po286
-rw-r--r--source/nn/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/nn/swext/mediawiki/help.po2
-rw-r--r--source/nn/swext/mediawiki/src.po2
-rw-r--r--source/nn/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nn/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/nn/sysui/desktop/share.po41
-rw-r--r--source/nn/tubes/uiconfig/ui.po22
-rw-r--r--source/nn/uui/source.po64
-rw-r--r--source/nn/vcl/qa/cppunit/builder.po136
-rw-r--r--source/nn/vcl/source/edit.po19
-rw-r--r--source/nn/vcl/source/src.po177
-rw-r--r--source/nn/vcl/uiconfig/ui.po93
-rw-r--r--source/nn/wizards/source/euro.po11
-rw-r--r--source/nn/wizards/source/formwizard.po142
-rw-r--r--source/nn/wizards/source/importwizard.po35
-rw-r--r--source/nn/wizards/source/template.po47
-rw-r--r--source/nn/xmlsecurity/source/component.po2
-rw-r--r--source/nn/xmlsecurity/source/dialogs.po2
-rw-r--r--source/nr/accessibility/source/helper.po2
-rw-r--r--source/nr/android/sdremote/res/values.po2
-rw-r--r--source/nr/avmedia/source/framework.po2
-rw-r--r--source/nr/avmedia/source/viewer.po2
-rw-r--r--source/nr/basctl/source/basicide.po2
-rw-r--r--source/nr/basctl/source/dlged.po2
-rw-r--r--source/nr/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/nr/basic/source/classes.po2
-rw-r--r--source/nr/basic/source/sbx.po2
-rw-r--r--source/nr/chart2/source/controller/dialogs.po2
-rw-r--r--source/nr/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/connectivity/source/resource.po2
-rw-r--r--source/nr/cui/source/customize.po2
-rw-r--r--source/nr/cui/source/dialogs.po2
-rw-r--r--source/nr/cui/source/options.po2
-rw-r--r--source/nr/cui/source/tabpages.po2
-rw-r--r--source/nr/cui/uiconfig/ui.po2
-rw-r--r--source/nr/dbaccess/source/core/resource.po2
-rw-r--r--source/nr/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/nr/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/nr/dbaccess/source/ui/app.po2
-rw-r--r--source/nr/dbaccess/source/ui/browser.po2
-rw-r--r--source/nr/dbaccess/source/ui/control.po2
-rw-r--r--source/nr/dbaccess/source/ui/dlg.po2
-rw-r--r--source/nr/dbaccess/source/ui/inc.po2
-rw-r--r--source/nr/dbaccess/source/ui/misc.po2
-rw-r--r--source/nr/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/nr/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/nr/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/nr/dbaccess/source/ui/uno.po2
-rw-r--r--source/nr/desktop/source/app.po2
-rw-r--r--source/nr/desktop/source/deployment/gui.po2
-rw-r--r--source/nr/desktop/source/deployment/manager.po2
-rw-r--r--source/nr/desktop/source/deployment/misc.po2
-rw-r--r--source/nr/desktop/source/deployment/registry.po2
-rw-r--r--source/nr/desktop/source/deployment/registry/component.po2
-rw-r--r--source/nr/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/nr/desktop/source/deployment/registry/help.po2
-rw-r--r--source/nr/desktop/source/deployment/registry/package.po2
-rw-r--r--source/nr/desktop/source/deployment/registry/script.po2
-rw-r--r--source/nr/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/nr/desktop/source/deployment/unopkg.po2
-rw-r--r--source/nr/desktop/uiconfig/ui.po2
-rw-r--r--source/nr/dictionaries/af_ZA.po2
-rw-r--r--source/nr/dictionaries/an_ES.po2
-rw-r--r--source/nr/dictionaries/ar.po2
-rw-r--r--source/nr/dictionaries/be_BY.po2
-rw-r--r--source/nr/dictionaries/bg_BG.po2
-rw-r--r--source/nr/dictionaries/bn_BD.po2
-rw-r--r--source/nr/dictionaries/br_FR.po2
-rw-r--r--source/nr/dictionaries/ca.po2
-rw-r--r--source/nr/dictionaries/cs_CZ.po2
-rw-r--r--source/nr/dictionaries/da_DK.po2
-rw-r--r--source/nr/dictionaries/de.po2
-rw-r--r--source/nr/dictionaries/el_GR.po2
-rw-r--r--source/nr/dictionaries/en.po2
-rw-r--r--source/nr/dictionaries/en/dialog.po2
-rw-r--r--source/nr/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nr/dictionaries/es.po2
-rw-r--r--source/nr/dictionaries/et_EE.po2
-rw-r--r--source/nr/dictionaries/fr_FR.po2
-rw-r--r--source/nr/dictionaries/gd_GB.po2
-rw-r--r--source/nr/dictionaries/gl.po2
-rw-r--r--source/nr/dictionaries/gu_IN.po2
-rw-r--r--source/nr/dictionaries/he_IL.po2
-rw-r--r--source/nr/dictionaries/hi_IN.po2
-rw-r--r--source/nr/dictionaries/hr_HR.po2
-rw-r--r--source/nr/dictionaries/hu_HU.po2
-rw-r--r--source/nr/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/nr/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nr/dictionaries/it_IT.po2
-rw-r--r--source/nr/dictionaries/ku_TR.po2
-rw-r--r--source/nr/dictionaries/lt_LT.po2
-rw-r--r--source/nr/dictionaries/lv_LV.po2
-rw-r--r--source/nr/dictionaries/ne_NP.po2
-rw-r--r--source/nr/dictionaries/nl_NL.po2
-rw-r--r--source/nr/dictionaries/no.po2
-rw-r--r--source/nr/dictionaries/oc_FR.po2
-rw-r--r--source/nr/dictionaries/pl_PL.po2
-rw-r--r--source/nr/dictionaries/pt_BR.po2
-rw-r--r--source/nr/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/nr/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nr/dictionaries/pt_PT.po2
-rw-r--r--source/nr/dictionaries/ro.po2
-rw-r--r--source/nr/dictionaries/ru_RU.po2
-rw-r--r--source/nr/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/nr/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nr/dictionaries/si_LK.po2
-rw-r--r--source/nr/dictionaries/sk_SK.po2
-rw-r--r--source/nr/dictionaries/sl_SI.po2
-rw-r--r--source/nr/dictionaries/sr.po2
-rw-r--r--source/nr/dictionaries/sv_SE.po2
-rw-r--r--source/nr/dictionaries/sw_TZ.po2
-rw-r--r--source/nr/dictionaries/te_IN.po2
-rw-r--r--source/nr/dictionaries/th_TH.po2
-rw-r--r--source/nr/dictionaries/uk_UA.po2
-rw-r--r--source/nr/dictionaries/vi.po2
-rw-r--r--source/nr/dictionaries/zu_ZA.po2
-rw-r--r--source/nr/editeng/source/accessibility.po2
-rw-r--r--source/nr/editeng/source/editeng.po2
-rw-r--r--source/nr/editeng/source/items.po2
-rw-r--r--source/nr/editeng/source/misc.po2
-rw-r--r--source/nr/editeng/source/outliner.po2
-rw-r--r--source/nr/extensions/source/abpilot.po2
-rw-r--r--source/nr/extensions/source/bibliography.po2
-rw-r--r--source/nr/extensions/source/dbpilots.po2
-rw-r--r--source/nr/extensions/source/propctrlr.po2
-rw-r--r--source/nr/extensions/source/scanner.po2
-rw-r--r--source/nr/extensions/source/update/check.po2
-rw-r--r--source/nr/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/nr/filter/source/config/fragments/filters.po2
-rw-r--r--source/nr/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/nr/filter/source/config/fragments/types.po2
-rw-r--r--source/nr/filter/source/flash.po2
-rw-r--r--source/nr/filter/source/graphicfilter/eps.po2
-rw-r--r--source/nr/filter/source/pdf.po2
-rw-r--r--source/nr/filter/source/t602.po2
-rw-r--r--source/nr/filter/source/xsltdialog.po2
-rw-r--r--source/nr/filter/uiconfig/ui.po2
-rw-r--r--source/nr/forms/source/resource.po2
-rw-r--r--source/nr/formula/source/core/resource.po38
-rw-r--r--source/nr/formula/source/ui/dlg.po2
-rw-r--r--source/nr/fpicker/source/office.po2
-rw-r--r--source/nr/framework/source/classes.po2
-rw-r--r--source/nr/framework/source/services.po2
-rw-r--r--source/nr/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/nr/librelogo/source/pythonpath.po2
-rw-r--r--source/nr/mysqlc/source.po2
-rw-r--r--source/nr/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nr/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/nr/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/nr/nlpsolver/src/locale.po2
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/nr/padmin/source.po2
-rw-r--r--source/nr/readlicense_oo/docs.po2
-rw-r--r--source/nr/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/nr/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nr/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/nr/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/nr/reportbuilder/util.po2
-rw-r--r--source/nr/reportdesign/source/core/resource.po2
-rw-r--r--source/nr/reportdesign/source/ui/dlg.po2
-rw-r--r--source/nr/reportdesign/source/ui/inspection.po2
-rw-r--r--source/nr/reportdesign/source/ui/report.po2
-rw-r--r--source/nr/sc/source/core/src.po2
-rw-r--r--source/nr/sc/source/ui/cctrl.po2
-rw-r--r--source/nr/sc/source/ui/dbgui.po2
-rw-r--r--source/nr/sc/source/ui/docshell.po2
-rw-r--r--source/nr/sc/source/ui/drawfunc.po2
-rw-r--r--source/nr/sc/source/ui/formdlg.po2
-rw-r--r--source/nr/sc/source/ui/miscdlgs.po2
-rw-r--r--source/nr/sc/source/ui/navipi.po2
-rw-r--r--source/nr/sc/source/ui/optdlg.po2
-rw-r--r--source/nr/sc/source/ui/pagedlg.po2
-rw-r--r--source/nr/sc/source/ui/src.po383
-rw-r--r--source/nr/sc/source/ui/styleui.po2
-rw-r--r--source/nr/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/nr/scaddins/source/analysis.po2
-rw-r--r--source/nr/scaddins/source/datefunc.po2
-rw-r--r--source/nr/scaddins/source/pricing.po2
-rw-r--r--source/nr/sccomp/source/solver.po2
-rw-r--r--source/nr/scp2/source/accessories.po2
-rw-r--r--source/nr/scp2/source/activex.po2
-rw-r--r--source/nr/scp2/source/base.po2
-rw-r--r--source/nr/scp2/source/calc.po2
-rw-r--r--source/nr/scp2/source/draw.po2
-rw-r--r--source/nr/scp2/source/extensions.po2
-rw-r--r--source/nr/scp2/source/gnome.po2
-rw-r--r--source/nr/scp2/source/graphicfilter.po2
-rw-r--r--source/nr/scp2/source/impress.po2
-rw-r--r--source/nr/scp2/source/javafilter.po2
-rw-r--r--source/nr/scp2/source/kde.po2
-rw-r--r--source/nr/scp2/source/math.po2
-rw-r--r--source/nr/scp2/source/onlineupdate.po2
-rw-r--r--source/nr/scp2/source/ooo.po2
-rw-r--r--source/nr/scp2/source/python.po18
-rw-r--r--source/nr/scp2/source/quickstart.po2
-rw-r--r--source/nr/scp2/source/sdkoo.po2
-rw-r--r--source/nr/scp2/source/smoketest.po2
-rw-r--r--source/nr/scp2/source/stdlibs.po2
-rw-r--r--source/nr/scp2/source/tde.po2
-rw-r--r--source/nr/scp2/source/winexplorerext.po2
-rw-r--r--source/nr/scp2/source/writer.po2
-rw-r--r--source/nr/scp2/source/xsltfilter.po2
-rw-r--r--source/nr/sd/source/core.po2
-rw-r--r--source/nr/sd/source/filter/html.po2
-rw-r--r--source/nr/sd/source/ui/accessibility.po2
-rw-r--r--source/nr/sd/source/ui/animations.po2
-rw-r--r--source/nr/sd/source/ui/annotations.po2
-rw-r--r--source/nr/sd/source/ui/app.po2
-rw-r--r--source/nr/sd/source/ui/dlg.po2
-rw-r--r--source/nr/sd/source/ui/slideshow.po2
-rw-r--r--source/nr/sd/source/ui/table.po2
-rw-r--r--source/nr/sd/source/ui/view.po2
-rw-r--r--source/nr/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/nr/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/nr/sdext/source/minimizer.po2
-rw-r--r--source/nr/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nr/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/nr/setup_native/source/mac.po2
-rw-r--r--source/nr/sfx2/source/appl.po2
-rw-r--r--source/nr/sfx2/source/bastyp.po2
-rw-r--r--source/nr/sfx2/source/control.po23
-rw-r--r--source/nr/sfx2/source/dialog.po46
-rw-r--r--source/nr/sfx2/source/doc.po130
-rw-r--r--source/nr/sfx2/source/menu.po2
-rw-r--r--source/nr/sfx2/source/view.po2
-rw-r--r--source/nr/sfx2/uiconfig/ui.po2
-rw-r--r--source/nr/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/nr/starmath/source.po2
-rw-r--r--source/nr/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/nr/svl/source/items.po2
-rw-r--r--source/nr/svl/source/misc.po2
-rw-r--r--source/nr/svtools/source/contnr.po2
-rw-r--r--source/nr/svtools/source/control.po2
-rw-r--r--source/nr/svtools/source/dialogs.po2
-rw-r--r--source/nr/svtools/source/java.po2
-rw-r--r--source/nr/svtools/source/misc.po2
-rw-r--r--source/nr/svtools/source/toolpanel.po2
-rw-r--r--source/nr/svtools/uiconfig/ui.po55
-rw-r--r--source/nr/svx/inc.po2
-rw-r--r--source/nr/svx/source/accessibility.po2
-rw-r--r--source/nr/svx/source/core.po2
-rw-r--r--source/nr/svx/source/dialog.po223
-rw-r--r--source/nr/svx/source/engine3d.po2
-rw-r--r--source/nr/svx/source/fmcomp.po2
-rw-r--r--source/nr/svx/source/form.po2
-rw-r--r--source/nr/svx/source/gallery2.po2
-rw-r--r--source/nr/svx/source/items.po2
-rw-r--r--source/nr/svx/source/src.po2
-rw-r--r--source/nr/svx/source/stbctrls.po2
-rw-r--r--source/nr/svx/source/svdraw.po2
-rw-r--r--source/nr/svx/source/table.po2
-rw-r--r--source/nr/svx/source/tbxctrls.po2
-rw-r--r--source/nr/svx/source/toolbars.po2
-rw-r--r--source/nr/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/nr/svx/uiconfig/ui.po204
-rw-r--r--source/nr/sw/source/core/layout.po2
-rw-r--r--source/nr/sw/source/core/undo.po2
-rw-r--r--source/nr/sw/source/core/unocore.po2
-rw-r--r--source/nr/sw/source/ui/app.po2
-rw-r--r--source/nr/sw/source/ui/chrdlg.po2
-rw-r--r--source/nr/sw/source/ui/config.po2
-rw-r--r--source/nr/sw/source/ui/dbui.po2
-rw-r--r--source/nr/sw/source/ui/dialog.po2
-rw-r--r--source/nr/sw/source/ui/dochdl.po2
-rw-r--r--source/nr/sw/source/ui/docvw.po2
-rw-r--r--source/nr/sw/source/ui/envelp.po2
-rw-r--r--source/nr/sw/source/ui/fldui.po2
-rw-r--r--source/nr/sw/source/ui/fmtui.po2
-rw-r--r--source/nr/sw/source/ui/frmdlg.po2
-rw-r--r--source/nr/sw/source/ui/globdoc.po2
-rw-r--r--source/nr/sw/source/ui/index.po2
-rw-r--r--source/nr/sw/source/ui/lingu.po2
-rw-r--r--source/nr/sw/source/ui/misc.po2
-rw-r--r--source/nr/sw/source/ui/ribbar.po2
-rw-r--r--source/nr/sw/source/ui/shells.po2
-rw-r--r--source/nr/sw/source/ui/smartmenu.po2
-rw-r--r--source/nr/sw/source/ui/table.po2
-rw-r--r--source/nr/sw/source/ui/uiview.po2
-rw-r--r--source/nr/sw/source/ui/utlui.po2
-rw-r--r--source/nr/sw/source/ui/web.po2
-rw-r--r--source/nr/sw/source/ui/wrtsh.po2
-rw-r--r--source/nr/sw/uiconfig/sw/ui.po291
-rw-r--r--source/nr/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/nr/swext/mediawiki/help.po2
-rw-r--r--source/nr/swext/mediawiki/src.po2
-rw-r--r--source/nr/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/nr/sysui/desktop/share.po2
-rw-r--r--source/nr/tubes/uiconfig/ui.po2
-rw-r--r--source/nr/uui/source.po2
-rw-r--r--source/nr/vcl/qa/cppunit/builder.po2
-rw-r--r--source/nr/vcl/source/edit.po2
-rw-r--r--source/nr/vcl/source/src.po2
-rw-r--r--source/nr/vcl/uiconfig/ui.po2
-rw-r--r--source/nr/wizards/source/euro.po2
-rw-r--r--source/nr/wizards/source/formwizard.po2
-rw-r--r--source/nr/wizards/source/importwizard.po2
-rw-r--r--source/nr/wizards/source/template.po2
-rw-r--r--source/nr/xmlsecurity/source/component.po2
-rw-r--r--source/nr/xmlsecurity/source/dialogs.po2
-rw-r--r--source/nso/accessibility/source/helper.po2
-rw-r--r--source/nso/android/sdremote/res/values.po2
-rw-r--r--source/nso/avmedia/source/framework.po2
-rw-r--r--source/nso/avmedia/source/viewer.po2
-rw-r--r--source/nso/basctl/source/basicide.po2
-rw-r--r--source/nso/basctl/source/dlged.po2
-rw-r--r--source/nso/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/nso/basic/source/classes.po2
-rw-r--r--source/nso/basic/source/sbx.po2
-rw-r--r--source/nso/chart2/source/controller/dialogs.po2
-rw-r--r--source/nso/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/connectivity/source/resource.po2
-rw-r--r--source/nso/cui/source/customize.po2
-rw-r--r--source/nso/cui/source/dialogs.po2
-rw-r--r--source/nso/cui/source/options.po2
-rw-r--r--source/nso/cui/source/tabpages.po2
-rw-r--r--source/nso/cui/uiconfig/ui.po2
-rw-r--r--source/nso/dbaccess/source/core/resource.po2
-rw-r--r--source/nso/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/nso/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/nso/dbaccess/source/ui/app.po2
-rw-r--r--source/nso/dbaccess/source/ui/browser.po2
-rw-r--r--source/nso/dbaccess/source/ui/control.po2
-rw-r--r--source/nso/dbaccess/source/ui/dlg.po2
-rw-r--r--source/nso/dbaccess/source/ui/inc.po2
-rw-r--r--source/nso/dbaccess/source/ui/misc.po2
-rw-r--r--source/nso/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/nso/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/nso/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/nso/dbaccess/source/ui/uno.po2
-rw-r--r--source/nso/desktop/source/app.po2
-rw-r--r--source/nso/desktop/source/deployment/gui.po2
-rw-r--r--source/nso/desktop/source/deployment/manager.po2
-rw-r--r--source/nso/desktop/source/deployment/misc.po2
-rw-r--r--source/nso/desktop/source/deployment/registry.po2
-rw-r--r--source/nso/desktop/source/deployment/registry/component.po2
-rw-r--r--source/nso/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/nso/desktop/source/deployment/registry/help.po2
-rw-r--r--source/nso/desktop/source/deployment/registry/package.po2
-rw-r--r--source/nso/desktop/source/deployment/registry/script.po2
-rw-r--r--source/nso/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/nso/desktop/source/deployment/unopkg.po2
-rw-r--r--source/nso/desktop/uiconfig/ui.po2
-rw-r--r--source/nso/dictionaries/af_ZA.po2
-rw-r--r--source/nso/dictionaries/an_ES.po2
-rw-r--r--source/nso/dictionaries/ar.po2
-rw-r--r--source/nso/dictionaries/be_BY.po2
-rw-r--r--source/nso/dictionaries/bg_BG.po2
-rw-r--r--source/nso/dictionaries/bn_BD.po2
-rw-r--r--source/nso/dictionaries/br_FR.po2
-rw-r--r--source/nso/dictionaries/ca.po2
-rw-r--r--source/nso/dictionaries/cs_CZ.po2
-rw-r--r--source/nso/dictionaries/da_DK.po2
-rw-r--r--source/nso/dictionaries/de.po2
-rw-r--r--source/nso/dictionaries/el_GR.po2
-rw-r--r--source/nso/dictionaries/en.po2
-rw-r--r--source/nso/dictionaries/en/dialog.po2
-rw-r--r--source/nso/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nso/dictionaries/es.po2
-rw-r--r--source/nso/dictionaries/et_EE.po2
-rw-r--r--source/nso/dictionaries/fr_FR.po2
-rw-r--r--source/nso/dictionaries/gd_GB.po2
-rw-r--r--source/nso/dictionaries/gl.po2
-rw-r--r--source/nso/dictionaries/gu_IN.po2
-rw-r--r--source/nso/dictionaries/he_IL.po2
-rw-r--r--source/nso/dictionaries/hi_IN.po2
-rw-r--r--source/nso/dictionaries/hr_HR.po2
-rw-r--r--source/nso/dictionaries/hu_HU.po2
-rw-r--r--source/nso/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/nso/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nso/dictionaries/it_IT.po2
-rw-r--r--source/nso/dictionaries/ku_TR.po2
-rw-r--r--source/nso/dictionaries/lt_LT.po2
-rw-r--r--source/nso/dictionaries/lv_LV.po2
-rw-r--r--source/nso/dictionaries/ne_NP.po2
-rw-r--r--source/nso/dictionaries/nl_NL.po2
-rw-r--r--source/nso/dictionaries/no.po2
-rw-r--r--source/nso/dictionaries/oc_FR.po2
-rw-r--r--source/nso/dictionaries/pl_PL.po2
-rw-r--r--source/nso/dictionaries/pt_BR.po2
-rw-r--r--source/nso/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/nso/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nso/dictionaries/pt_PT.po2
-rw-r--r--source/nso/dictionaries/ro.po2
-rw-r--r--source/nso/dictionaries/ru_RU.po2
-rw-r--r--source/nso/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/nso/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nso/dictionaries/si_LK.po2
-rw-r--r--source/nso/dictionaries/sk_SK.po2
-rw-r--r--source/nso/dictionaries/sl_SI.po2
-rw-r--r--source/nso/dictionaries/sr.po2
-rw-r--r--source/nso/dictionaries/sv_SE.po2
-rw-r--r--source/nso/dictionaries/sw_TZ.po2
-rw-r--r--source/nso/dictionaries/te_IN.po2
-rw-r--r--source/nso/dictionaries/th_TH.po2
-rw-r--r--source/nso/dictionaries/uk_UA.po2
-rw-r--r--source/nso/dictionaries/vi.po2
-rw-r--r--source/nso/dictionaries/zu_ZA.po2
-rw-r--r--source/nso/editeng/source/accessibility.po2
-rw-r--r--source/nso/editeng/source/editeng.po2
-rw-r--r--source/nso/editeng/source/items.po2
-rw-r--r--source/nso/editeng/source/misc.po2
-rw-r--r--source/nso/editeng/source/outliner.po2
-rw-r--r--source/nso/extensions/source/abpilot.po2
-rw-r--r--source/nso/extensions/source/bibliography.po2
-rw-r--r--source/nso/extensions/source/dbpilots.po2
-rw-r--r--source/nso/extensions/source/propctrlr.po2
-rw-r--r--source/nso/extensions/source/scanner.po2
-rw-r--r--source/nso/extensions/source/update/check.po2
-rw-r--r--source/nso/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/nso/filter/source/config/fragments/filters.po2
-rw-r--r--source/nso/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/nso/filter/source/config/fragments/types.po2
-rw-r--r--source/nso/filter/source/flash.po2
-rw-r--r--source/nso/filter/source/graphicfilter/eps.po2
-rw-r--r--source/nso/filter/source/pdf.po2
-rw-r--r--source/nso/filter/source/t602.po2
-rw-r--r--source/nso/filter/source/xsltdialog.po2
-rw-r--r--source/nso/filter/uiconfig/ui.po2
-rw-r--r--source/nso/forms/source/resource.po2
-rw-r--r--source/nso/formula/source/core/resource.po38
-rw-r--r--source/nso/formula/source/ui/dlg.po2
-rw-r--r--source/nso/fpicker/source/office.po2
-rw-r--r--source/nso/framework/source/classes.po2
-rw-r--r--source/nso/framework/source/services.po2
-rw-r--r--source/nso/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/nso/librelogo/source/pythonpath.po2
-rw-r--r--source/nso/mysqlc/source.po2
-rw-r--r--source/nso/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/nso/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/nso/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/nso/nlpsolver/src/locale.po2
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/nso/padmin/source.po2
-rw-r--r--source/nso/readlicense_oo/docs.po2
-rw-r--r--source/nso/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/nso/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nso/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/nso/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/nso/reportbuilder/util.po2
-rw-r--r--source/nso/reportdesign/source/core/resource.po2
-rw-r--r--source/nso/reportdesign/source/ui/dlg.po2
-rw-r--r--source/nso/reportdesign/source/ui/inspection.po2
-rw-r--r--source/nso/reportdesign/source/ui/report.po2
-rw-r--r--source/nso/sc/source/core/src.po2
-rw-r--r--source/nso/sc/source/ui/cctrl.po2
-rw-r--r--source/nso/sc/source/ui/dbgui.po2
-rw-r--r--source/nso/sc/source/ui/docshell.po2
-rw-r--r--source/nso/sc/source/ui/drawfunc.po2
-rw-r--r--source/nso/sc/source/ui/formdlg.po2
-rw-r--r--source/nso/sc/source/ui/miscdlgs.po2
-rw-r--r--source/nso/sc/source/ui/navipi.po2
-rw-r--r--source/nso/sc/source/ui/optdlg.po2
-rw-r--r--source/nso/sc/source/ui/pagedlg.po2
-rw-r--r--source/nso/sc/source/ui/src.po381
-rw-r--r--source/nso/sc/source/ui/styleui.po2
-rw-r--r--source/nso/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/nso/scaddins/source/analysis.po2
-rw-r--r--source/nso/scaddins/source/datefunc.po2
-rw-r--r--source/nso/scaddins/source/pricing.po2
-rw-r--r--source/nso/sccomp/source/solver.po2
-rw-r--r--source/nso/scp2/source/accessories.po2
-rw-r--r--source/nso/scp2/source/activex.po2
-rw-r--r--source/nso/scp2/source/base.po2
-rw-r--r--source/nso/scp2/source/calc.po2
-rw-r--r--source/nso/scp2/source/draw.po2
-rw-r--r--source/nso/scp2/source/extensions.po2
-rw-r--r--source/nso/scp2/source/gnome.po2
-rw-r--r--source/nso/scp2/source/graphicfilter.po2
-rw-r--r--source/nso/scp2/source/impress.po2
-rw-r--r--source/nso/scp2/source/javafilter.po2
-rw-r--r--source/nso/scp2/source/kde.po2
-rw-r--r--source/nso/scp2/source/math.po2
-rw-r--r--source/nso/scp2/source/onlineupdate.po2
-rw-r--r--source/nso/scp2/source/ooo.po2
-rw-r--r--source/nso/scp2/source/python.po18
-rw-r--r--source/nso/scp2/source/quickstart.po2
-rw-r--r--source/nso/scp2/source/sdkoo.po2
-rw-r--r--source/nso/scp2/source/smoketest.po2
-rw-r--r--source/nso/scp2/source/stdlibs.po2
-rw-r--r--source/nso/scp2/source/tde.po2
-rw-r--r--source/nso/scp2/source/winexplorerext.po2
-rw-r--r--source/nso/scp2/source/writer.po2
-rw-r--r--source/nso/scp2/source/xsltfilter.po2
-rw-r--r--source/nso/sd/source/core.po2
-rw-r--r--source/nso/sd/source/filter/html.po2
-rw-r--r--source/nso/sd/source/ui/accessibility.po2
-rw-r--r--source/nso/sd/source/ui/animations.po2
-rw-r--r--source/nso/sd/source/ui/annotations.po2
-rw-r--r--source/nso/sd/source/ui/app.po2
-rw-r--r--source/nso/sd/source/ui/dlg.po2
-rw-r--r--source/nso/sd/source/ui/slideshow.po2
-rw-r--r--source/nso/sd/source/ui/table.po2
-rw-r--r--source/nso/sd/source/ui/view.po2
-rw-r--r--source/nso/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/nso/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/nso/sdext/source/minimizer.po2
-rw-r--r--source/nso/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nso/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/nso/setup_native/source/mac.po2
-rw-r--r--source/nso/sfx2/source/appl.po2
-rw-r--r--source/nso/sfx2/source/bastyp.po2
-rw-r--r--source/nso/sfx2/source/control.po23
-rw-r--r--source/nso/sfx2/source/dialog.po46
-rw-r--r--source/nso/sfx2/source/doc.po126
-rw-r--r--source/nso/sfx2/source/menu.po2
-rw-r--r--source/nso/sfx2/source/view.po2
-rw-r--r--source/nso/sfx2/uiconfig/ui.po2
-rw-r--r--source/nso/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/nso/starmath/source.po2
-rw-r--r--source/nso/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/nso/svl/source/items.po2
-rw-r--r--source/nso/svl/source/misc.po2
-rw-r--r--source/nso/svtools/source/contnr.po2
-rw-r--r--source/nso/svtools/source/control.po2
-rw-r--r--source/nso/svtools/source/dialogs.po2
-rw-r--r--source/nso/svtools/source/java.po2
-rw-r--r--source/nso/svtools/source/misc.po2
-rw-r--r--source/nso/svtools/source/toolpanel.po2
-rw-r--r--source/nso/svtools/uiconfig/ui.po49
-rw-r--r--source/nso/svx/inc.po2
-rw-r--r--source/nso/svx/source/accessibility.po2
-rw-r--r--source/nso/svx/source/core.po2
-rw-r--r--source/nso/svx/source/dialog.po225
-rw-r--r--source/nso/svx/source/engine3d.po2
-rw-r--r--source/nso/svx/source/fmcomp.po2
-rw-r--r--source/nso/svx/source/form.po2
-rw-r--r--source/nso/svx/source/gallery2.po2
-rw-r--r--source/nso/svx/source/items.po2
-rw-r--r--source/nso/svx/source/src.po2
-rw-r--r--source/nso/svx/source/stbctrls.po2
-rw-r--r--source/nso/svx/source/svdraw.po2
-rw-r--r--source/nso/svx/source/table.po2
-rw-r--r--source/nso/svx/source/tbxctrls.po2
-rw-r--r--source/nso/svx/source/toolbars.po2
-rw-r--r--source/nso/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/nso/svx/uiconfig/ui.po204
-rw-r--r--source/nso/sw/source/core/layout.po2
-rw-r--r--source/nso/sw/source/core/undo.po2
-rw-r--r--source/nso/sw/source/core/unocore.po2
-rw-r--r--source/nso/sw/source/ui/app.po2
-rw-r--r--source/nso/sw/source/ui/chrdlg.po2
-rw-r--r--source/nso/sw/source/ui/config.po2
-rw-r--r--source/nso/sw/source/ui/dbui.po2
-rw-r--r--source/nso/sw/source/ui/dialog.po2
-rw-r--r--source/nso/sw/source/ui/dochdl.po2
-rw-r--r--source/nso/sw/source/ui/docvw.po2
-rw-r--r--source/nso/sw/source/ui/envelp.po2
-rw-r--r--source/nso/sw/source/ui/fldui.po2
-rw-r--r--source/nso/sw/source/ui/fmtui.po2
-rw-r--r--source/nso/sw/source/ui/frmdlg.po2
-rw-r--r--source/nso/sw/source/ui/globdoc.po2
-rw-r--r--source/nso/sw/source/ui/index.po2
-rw-r--r--source/nso/sw/source/ui/lingu.po2
-rw-r--r--source/nso/sw/source/ui/misc.po2
-rw-r--r--source/nso/sw/source/ui/ribbar.po2
-rw-r--r--source/nso/sw/source/ui/shells.po2
-rw-r--r--source/nso/sw/source/ui/smartmenu.po2
-rw-r--r--source/nso/sw/source/ui/table.po2
-rw-r--r--source/nso/sw/source/ui/uiview.po2
-rw-r--r--source/nso/sw/source/ui/utlui.po2
-rw-r--r--source/nso/sw/source/ui/web.po2
-rw-r--r--source/nso/sw/source/ui/wrtsh.po2
-rw-r--r--source/nso/sw/uiconfig/sw/ui.po284
-rw-r--r--source/nso/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/nso/swext/mediawiki/help.po2
-rw-r--r--source/nso/swext/mediawiki/src.po2
-rw-r--r--source/nso/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/nso/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/nso/sysui/desktop/share.po2
-rw-r--r--source/nso/tubes/uiconfig/ui.po2
-rw-r--r--source/nso/uui/source.po2
-rw-r--r--source/nso/vcl/qa/cppunit/builder.po2
-rw-r--r--source/nso/vcl/source/edit.po2
-rw-r--r--source/nso/vcl/source/src.po2
-rw-r--r--source/nso/vcl/uiconfig/ui.po2
-rw-r--r--source/nso/wizards/source/euro.po2
-rw-r--r--source/nso/wizards/source/formwizard.po2
-rw-r--r--source/nso/wizards/source/importwizard.po2
-rw-r--r--source/nso/wizards/source/template.po2
-rw-r--r--source/nso/xmlsecurity/source/component.po2
-rw-r--r--source/nso/xmlsecurity/source/dialogs.po2
-rw-r--r--source/oc/accessibility/source/helper.po7
-rw-r--r--source/oc/android/sdremote/res/values.po4
-rw-r--r--source/oc/avmedia/source/framework.po2
-rw-r--r--source/oc/avmedia/source/viewer.po2
-rw-r--r--source/oc/basctl/source/basicide.po2
-rw-r--r--source/oc/basctl/source/dlged.po2
-rw-r--r--source/oc/basctl/uiconfig/basicide/ui.po19
-rw-r--r--source/oc/basic/source/classes.po2
-rw-r--r--source/oc/basic/source/sbx.po2
-rw-r--r--source/oc/chart2/source/controller/dialogs.po23
-rw-r--r--source/oc/connectivity/registry/ado/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/oc/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/oc/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po11
-rw-r--r--source/oc/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/oc/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/oc/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/oc/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/oc/connectivity/registry/kab/org/openoffice/Office/DataAccess.po9
-rw-r--r--source/oc/connectivity/registry/macab/org/openoffice/Office/DataAccess.po11
-rw-r--r--source/oc/connectivity/registry/mork/org/openoffice/Office/DataAccess.po9
-rw-r--r--source/oc/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po20
-rw-r--r--source/oc/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/oc/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/oc/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/oc/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po13
-rw-r--r--source/oc/connectivity/source/resource.po2
-rw-r--r--source/oc/cui/source/customize.po13
-rw-r--r--source/oc/cui/source/dialogs.po97
-rw-r--r--source/oc/cui/source/options.po2
-rw-r--r--source/oc/cui/source/tabpages.po2
-rw-r--r--source/oc/cui/uiconfig/ui.po2
-rw-r--r--source/oc/dbaccess/source/core/resource.po2
-rw-r--r--source/oc/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/oc/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/oc/dbaccess/source/ui/app.po2
-rw-r--r--source/oc/dbaccess/source/ui/browser.po2
-rw-r--r--source/oc/dbaccess/source/ui/control.po2
-rw-r--r--source/oc/dbaccess/source/ui/dlg.po2
-rw-r--r--source/oc/dbaccess/source/ui/inc.po2
-rw-r--r--source/oc/dbaccess/source/ui/misc.po2
-rw-r--r--source/oc/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/oc/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/oc/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/oc/dbaccess/source/ui/uno.po2
-rw-r--r--source/oc/desktop/source/app.po9
-rw-r--r--source/oc/desktop/source/deployment/gui.po12
-rw-r--r--source/oc/desktop/source/deployment/manager.po2
-rw-r--r--source/oc/desktop/source/deployment/misc.po15
-rw-r--r--source/oc/desktop/source/deployment/registry.po2
-rw-r--r--source/oc/desktop/source/deployment/registry/component.po2
-rw-r--r--source/oc/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/oc/desktop/source/deployment/registry/help.po2
-rw-r--r--source/oc/desktop/source/deployment/registry/package.po2
-rw-r--r--source/oc/desktop/source/deployment/registry/script.po2
-rw-r--r--source/oc/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/oc/desktop/source/deployment/unopkg.po2
-rw-r--r--source/oc/desktop/uiconfig/ui.po28
-rw-r--r--source/oc/dictionaries/af_ZA.po2
-rw-r--r--source/oc/dictionaries/an_ES.po2
-rw-r--r--source/oc/dictionaries/ar.po2
-rw-r--r--source/oc/dictionaries/be_BY.po2
-rw-r--r--source/oc/dictionaries/bg_BG.po2
-rw-r--r--source/oc/dictionaries/bn_BD.po2
-rw-r--r--source/oc/dictionaries/br_FR.po2
-rw-r--r--source/oc/dictionaries/ca.po2
-rw-r--r--source/oc/dictionaries/cs_CZ.po2
-rw-r--r--source/oc/dictionaries/da_DK.po2
-rw-r--r--source/oc/dictionaries/de.po2
-rw-r--r--source/oc/dictionaries/el_GR.po2
-rw-r--r--source/oc/dictionaries/en.po2
-rw-r--r--source/oc/dictionaries/en/dialog.po2
-rw-r--r--source/oc/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/oc/dictionaries/es.po2
-rw-r--r--source/oc/dictionaries/et_EE.po2
-rw-r--r--source/oc/dictionaries/fr_FR.po2
-rw-r--r--source/oc/dictionaries/gd_GB.po2
-rw-r--r--source/oc/dictionaries/gl.po2
-rw-r--r--source/oc/dictionaries/gu_IN.po2
-rw-r--r--source/oc/dictionaries/he_IL.po2
-rw-r--r--source/oc/dictionaries/hi_IN.po2
-rw-r--r--source/oc/dictionaries/hr_HR.po2
-rw-r--r--source/oc/dictionaries/hu_HU.po2
-rw-r--r--source/oc/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/oc/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/oc/dictionaries/it_IT.po2
-rw-r--r--source/oc/dictionaries/ku_TR.po2
-rw-r--r--source/oc/dictionaries/lt_LT.po2
-rw-r--r--source/oc/dictionaries/lv_LV.po2
-rw-r--r--source/oc/dictionaries/ne_NP.po2
-rw-r--r--source/oc/dictionaries/nl_NL.po2
-rw-r--r--source/oc/dictionaries/no.po2
-rw-r--r--source/oc/dictionaries/oc_FR.po2
-rw-r--r--source/oc/dictionaries/pl_PL.po2
-rw-r--r--source/oc/dictionaries/pt_BR.po2
-rw-r--r--source/oc/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/oc/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/oc/dictionaries/pt_PT.po2
-rw-r--r--source/oc/dictionaries/ro.po2
-rw-r--r--source/oc/dictionaries/ru_RU.po2
-rw-r--r--source/oc/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/oc/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/oc/dictionaries/si_LK.po2
-rw-r--r--source/oc/dictionaries/sk_SK.po2
-rw-r--r--source/oc/dictionaries/sl_SI.po2
-rw-r--r--source/oc/dictionaries/sr.po2
-rw-r--r--source/oc/dictionaries/sv_SE.po2
-rw-r--r--source/oc/dictionaries/sw_TZ.po2
-rw-r--r--source/oc/dictionaries/te_IN.po2
-rw-r--r--source/oc/dictionaries/th_TH.po2
-rw-r--r--source/oc/dictionaries/uk_UA.po2
-rw-r--r--source/oc/dictionaries/vi.po2
-rw-r--r--source/oc/dictionaries/zu_ZA.po2
-rw-r--r--source/oc/editeng/source/accessibility.po2
-rw-r--r--source/oc/editeng/source/editeng.po11
-rw-r--r--source/oc/editeng/source/items.po10
-rw-r--r--source/oc/editeng/source/misc.po10
-rw-r--r--source/oc/editeng/source/outliner.po2
-rw-r--r--source/oc/extensions/source/abpilot.po2
-rw-r--r--source/oc/extensions/source/bibliography.po2
-rw-r--r--source/oc/extensions/source/dbpilots.po2
-rw-r--r--source/oc/extensions/source/propctrlr.po2
-rw-r--r--source/oc/extensions/source/scanner.po2
-rw-r--r--source/oc/extensions/source/update/check.po2
-rw-r--r--source/oc/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/oc/filter/source/config/fragments/filters.po2
-rw-r--r--source/oc/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/oc/filter/source/config/fragments/types.po2
-rw-r--r--source/oc/filter/source/flash.po2
-rw-r--r--source/oc/filter/source/graphicfilter/eps.po2
-rw-r--r--source/oc/filter/source/pdf.po2
-rw-r--r--source/oc/filter/source/t602.po2
-rw-r--r--source/oc/filter/source/xsltdialog.po2
-rw-r--r--source/oc/filter/uiconfig/ui.po2
-rw-r--r--source/oc/forms/source/resource.po2
-rw-r--r--source/oc/formula/source/core/resource.po65
-rw-r--r--source/oc/formula/source/ui/dlg.po2
-rw-r--r--source/oc/fpicker/source/office.po16
-rw-r--r--source/oc/framework/source/classes.po2
-rw-r--r--source/oc/framework/source/services.po2
-rw-r--r--source/oc/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/oc/librelogo/source/pythonpath.po2
-rw-r--r--source/oc/mysqlc/source.po2
-rw-r--r--source/oc/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/oc/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/oc/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/oc/nlpsolver/src/locale.po2
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/oc/padmin/source.po2
-rw-r--r--source/oc/readlicense_oo/docs.po2
-rw-r--r--source/oc/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/oc/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/oc/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/oc/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/oc/reportbuilder/util.po2
-rw-r--r--source/oc/reportdesign/source/core/resource.po2
-rw-r--r--source/oc/reportdesign/source/ui/dlg.po2
-rw-r--r--source/oc/reportdesign/source/ui/inspection.po2
-rw-r--r--source/oc/reportdesign/source/ui/report.po2
-rw-r--r--source/oc/sc/source/core/src.po2
-rw-r--r--source/oc/sc/source/ui/cctrl.po2
-rw-r--r--source/oc/sc/source/ui/dbgui.po2
-rw-r--r--source/oc/sc/source/ui/docshell.po2
-rw-r--r--source/oc/sc/source/ui/drawfunc.po2
-rw-r--r--source/oc/sc/source/ui/formdlg.po2
-rw-r--r--source/oc/sc/source/ui/miscdlgs.po2
-rw-r--r--source/oc/sc/source/ui/navipi.po2
-rw-r--r--source/oc/sc/source/ui/optdlg.po2
-rw-r--r--source/oc/sc/source/ui/pagedlg.po2
-rw-r--r--source/oc/sc/source/ui/src.po378
-rw-r--r--source/oc/sc/source/ui/styleui.po2
-rw-r--r--source/oc/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/oc/scaddins/source/analysis.po2
-rw-r--r--source/oc/scaddins/source/datefunc.po2
-rw-r--r--source/oc/scaddins/source/pricing.po2
-rw-r--r--source/oc/sccomp/source/solver.po2
-rw-r--r--source/oc/scp2/source/accessories.po2
-rw-r--r--source/oc/scp2/source/activex.po2
-rw-r--r--source/oc/scp2/source/base.po2
-rw-r--r--source/oc/scp2/source/calc.po2
-rw-r--r--source/oc/scp2/source/draw.po2
-rw-r--r--source/oc/scp2/source/extensions.po2
-rw-r--r--source/oc/scp2/source/gnome.po2
-rw-r--r--source/oc/scp2/source/graphicfilter.po2
-rw-r--r--source/oc/scp2/source/impress.po2
-rw-r--r--source/oc/scp2/source/javafilter.po2
-rw-r--r--source/oc/scp2/source/kde.po2
-rw-r--r--source/oc/scp2/source/math.po2
-rw-r--r--source/oc/scp2/source/onlineupdate.po2
-rw-r--r--source/oc/scp2/source/ooo.po2
-rw-r--r--source/oc/scp2/source/python.po18
-rw-r--r--source/oc/scp2/source/quickstart.po2
-rw-r--r--source/oc/scp2/source/sdkoo.po2
-rw-r--r--source/oc/scp2/source/smoketest.po2
-rw-r--r--source/oc/scp2/source/stdlibs.po2
-rw-r--r--source/oc/scp2/source/tde.po2
-rw-r--r--source/oc/scp2/source/winexplorerext.po2
-rw-r--r--source/oc/scp2/source/writer.po2
-rw-r--r--source/oc/scp2/source/xsltfilter.po2
-rw-r--r--source/oc/sd/source/core.po2
-rw-r--r--source/oc/sd/source/filter/html.po2
-rw-r--r--source/oc/sd/source/ui/accessibility.po2
-rw-r--r--source/oc/sd/source/ui/animations.po2
-rw-r--r--source/oc/sd/source/ui/annotations.po2
-rw-r--r--source/oc/sd/source/ui/app.po2
-rw-r--r--source/oc/sd/source/ui/dlg.po2
-rw-r--r--source/oc/sd/source/ui/slideshow.po2
-rw-r--r--source/oc/sd/source/ui/table.po2
-rw-r--r--source/oc/sd/source/ui/view.po2
-rw-r--r--source/oc/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/oc/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/oc/sdext/source/minimizer.po2
-rw-r--r--source/oc/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/oc/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/oc/setup_native/source/mac.po2
-rw-r--r--source/oc/sfx2/source/appl.po2
-rw-r--r--source/oc/sfx2/source/bastyp.po2
-rw-r--r--source/oc/sfx2/source/control.po23
-rw-r--r--source/oc/sfx2/source/dialog.po46
-rw-r--r--source/oc/sfx2/source/doc.po126
-rw-r--r--source/oc/sfx2/source/menu.po2
-rw-r--r--source/oc/sfx2/source/view.po2
-rw-r--r--source/oc/sfx2/uiconfig/ui.po2
-rw-r--r--source/oc/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/oc/starmath/source.po2
-rw-r--r--source/oc/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/oc/svl/source/items.po2
-rw-r--r--source/oc/svl/source/misc.po10
-rw-r--r--source/oc/svtools/source/contnr.po2
-rw-r--r--source/oc/svtools/source/control.po2
-rw-r--r--source/oc/svtools/source/dialogs.po2
-rw-r--r--source/oc/svtools/source/java.po2
-rw-r--r--source/oc/svtools/source/misc.po2
-rw-r--r--source/oc/svtools/source/toolpanel.po2
-rw-r--r--source/oc/svtools/uiconfig/ui.po55
-rw-r--r--source/oc/svx/inc.po2
-rw-r--r--source/oc/svx/source/accessibility.po2
-rw-r--r--source/oc/svx/source/core.po2
-rw-r--r--source/oc/svx/source/dialog.po225
-rw-r--r--source/oc/svx/source/engine3d.po2
-rw-r--r--source/oc/svx/source/fmcomp.po2
-rw-r--r--source/oc/svx/source/form.po2
-rw-r--r--source/oc/svx/source/gallery2.po2
-rw-r--r--source/oc/svx/source/items.po2
-rw-r--r--source/oc/svx/source/src.po2
-rw-r--r--source/oc/svx/source/stbctrls.po2
-rw-r--r--source/oc/svx/source/svdraw.po2
-rw-r--r--source/oc/svx/source/table.po2
-rw-r--r--source/oc/svx/source/tbxctrls.po2
-rw-r--r--source/oc/svx/source/toolbars.po2
-rw-r--r--source/oc/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/oc/svx/uiconfig/ui.po204
-rw-r--r--source/oc/sw/source/core/layout.po2
-rw-r--r--source/oc/sw/source/core/undo.po2
-rw-r--r--source/oc/sw/source/core/unocore.po2
-rw-r--r--source/oc/sw/source/ui/app.po2
-rw-r--r--source/oc/sw/source/ui/chrdlg.po2
-rw-r--r--source/oc/sw/source/ui/config.po2
-rw-r--r--source/oc/sw/source/ui/dbui.po2
-rw-r--r--source/oc/sw/source/ui/dialog.po2
-rw-r--r--source/oc/sw/source/ui/dochdl.po2
-rw-r--r--source/oc/sw/source/ui/docvw.po2
-rw-r--r--source/oc/sw/source/ui/envelp.po2
-rw-r--r--source/oc/sw/source/ui/fldui.po2
-rw-r--r--source/oc/sw/source/ui/fmtui.po2
-rw-r--r--source/oc/sw/source/ui/frmdlg.po2
-rw-r--r--source/oc/sw/source/ui/globdoc.po2
-rw-r--r--source/oc/sw/source/ui/index.po2
-rw-r--r--source/oc/sw/source/ui/lingu.po2
-rw-r--r--source/oc/sw/source/ui/misc.po2
-rw-r--r--source/oc/sw/source/ui/ribbar.po2
-rw-r--r--source/oc/sw/source/ui/shells.po2
-rw-r--r--source/oc/sw/source/ui/smartmenu.po2
-rw-r--r--source/oc/sw/source/ui/table.po2
-rw-r--r--source/oc/sw/source/ui/uiview.po2
-rw-r--r--source/oc/sw/source/ui/utlui.po2
-rw-r--r--source/oc/sw/source/ui/web.po2
-rw-r--r--source/oc/sw/source/ui/wrtsh.po2
-rw-r--r--source/oc/sw/uiconfig/sw/ui.po282
-rw-r--r--source/oc/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/oc/swext/mediawiki/help.po2
-rw-r--r--source/oc/swext/mediawiki/src.po2
-rw-r--r--source/oc/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/oc/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/oc/sysui/desktop/share.po2
-rw-r--r--source/oc/tubes/uiconfig/ui.po22
-rw-r--r--source/oc/uui/source.po2
-rw-r--r--source/oc/vcl/qa/cppunit/builder.po2
-rw-r--r--source/oc/vcl/source/edit.po2
-rw-r--r--source/oc/vcl/source/src.po2
-rw-r--r--source/oc/vcl/uiconfig/ui.po2
-rw-r--r--source/oc/wizards/source/euro.po2
-rw-r--r--source/oc/wizards/source/formwizard.po2
-rw-r--r--source/oc/wizards/source/importwizard.po2
-rw-r--r--source/oc/wizards/source/template.po2
-rw-r--r--source/oc/xmlsecurity/source/component.po2
-rw-r--r--source/oc/xmlsecurity/source/dialogs.po2
-rw-r--r--source/om/accessibility/source/helper.po2
-rw-r--r--source/om/android/sdremote/res/values.po2
-rw-r--r--source/om/avmedia/source/framework.po2
-rw-r--r--source/om/avmedia/source/viewer.po2
-rw-r--r--source/om/basctl/source/basicide.po2
-rw-r--r--source/om/basctl/source/dlged.po2
-rw-r--r--source/om/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/om/basic/source/classes.po2
-rw-r--r--source/om/basic/source/sbx.po2
-rw-r--r--source/om/chart2/source/controller/dialogs.po2
-rw-r--r--source/om/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/connectivity/source/resource.po2
-rw-r--r--source/om/cui/source/customize.po2
-rw-r--r--source/om/cui/source/dialogs.po2
-rw-r--r--source/om/cui/source/options.po2
-rw-r--r--source/om/cui/source/tabpages.po2
-rw-r--r--source/om/cui/uiconfig/ui.po2
-rw-r--r--source/om/dbaccess/source/core/resource.po2
-rw-r--r--source/om/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/om/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/om/dbaccess/source/ui/app.po2
-rw-r--r--source/om/dbaccess/source/ui/browser.po2
-rw-r--r--source/om/dbaccess/source/ui/control.po2
-rw-r--r--source/om/dbaccess/source/ui/dlg.po2
-rw-r--r--source/om/dbaccess/source/ui/inc.po2
-rw-r--r--source/om/dbaccess/source/ui/misc.po2
-rw-r--r--source/om/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/om/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/om/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/om/dbaccess/source/ui/uno.po2
-rw-r--r--source/om/desktop/source/app.po2
-rw-r--r--source/om/desktop/source/deployment/gui.po2
-rw-r--r--source/om/desktop/source/deployment/manager.po2
-rw-r--r--source/om/desktop/source/deployment/misc.po2
-rw-r--r--source/om/desktop/source/deployment/registry.po2
-rw-r--r--source/om/desktop/source/deployment/registry/component.po2
-rw-r--r--source/om/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/om/desktop/source/deployment/registry/help.po2
-rw-r--r--source/om/desktop/source/deployment/registry/package.po2
-rw-r--r--source/om/desktop/source/deployment/registry/script.po2
-rw-r--r--source/om/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/om/desktop/source/deployment/unopkg.po2
-rw-r--r--source/om/desktop/uiconfig/ui.po2
-rw-r--r--source/om/dictionaries/af_ZA.po2
-rw-r--r--source/om/dictionaries/an_ES.po2
-rw-r--r--source/om/dictionaries/ar.po2
-rw-r--r--source/om/dictionaries/be_BY.po2
-rw-r--r--source/om/dictionaries/bg_BG.po2
-rw-r--r--source/om/dictionaries/bn_BD.po2
-rw-r--r--source/om/dictionaries/br_FR.po2
-rw-r--r--source/om/dictionaries/ca.po2
-rw-r--r--source/om/dictionaries/cs_CZ.po2
-rw-r--r--source/om/dictionaries/da_DK.po2
-rw-r--r--source/om/dictionaries/de.po2
-rw-r--r--source/om/dictionaries/el_GR.po2
-rw-r--r--source/om/dictionaries/en.po2
-rw-r--r--source/om/dictionaries/en/dialog.po2
-rw-r--r--source/om/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/om/dictionaries/es.po2
-rw-r--r--source/om/dictionaries/et_EE.po2
-rw-r--r--source/om/dictionaries/fr_FR.po2
-rw-r--r--source/om/dictionaries/gd_GB.po2
-rw-r--r--source/om/dictionaries/gl.po2
-rw-r--r--source/om/dictionaries/gu_IN.po2
-rw-r--r--source/om/dictionaries/he_IL.po2
-rw-r--r--source/om/dictionaries/hi_IN.po2
-rw-r--r--source/om/dictionaries/hr_HR.po2
-rw-r--r--source/om/dictionaries/hu_HU.po2
-rw-r--r--source/om/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/om/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/om/dictionaries/it_IT.po2
-rw-r--r--source/om/dictionaries/ku_TR.po2
-rw-r--r--source/om/dictionaries/lt_LT.po2
-rw-r--r--source/om/dictionaries/lv_LV.po2
-rw-r--r--source/om/dictionaries/ne_NP.po2
-rw-r--r--source/om/dictionaries/nl_NL.po2
-rw-r--r--source/om/dictionaries/no.po2
-rw-r--r--source/om/dictionaries/oc_FR.po2
-rw-r--r--source/om/dictionaries/pl_PL.po2
-rw-r--r--source/om/dictionaries/pt_BR.po2
-rw-r--r--source/om/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/om/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/om/dictionaries/pt_PT.po2
-rw-r--r--source/om/dictionaries/ro.po2
-rw-r--r--source/om/dictionaries/ru_RU.po2
-rw-r--r--source/om/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/om/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/om/dictionaries/si_LK.po2
-rw-r--r--source/om/dictionaries/sk_SK.po2
-rw-r--r--source/om/dictionaries/sl_SI.po2
-rw-r--r--source/om/dictionaries/sr.po2
-rw-r--r--source/om/dictionaries/sv_SE.po2
-rw-r--r--source/om/dictionaries/sw_TZ.po2
-rw-r--r--source/om/dictionaries/te_IN.po2
-rw-r--r--source/om/dictionaries/th_TH.po2
-rw-r--r--source/om/dictionaries/uk_UA.po2
-rw-r--r--source/om/dictionaries/vi.po2
-rw-r--r--source/om/dictionaries/zu_ZA.po2
-rw-r--r--source/om/editeng/source/accessibility.po2
-rw-r--r--source/om/editeng/source/editeng.po2
-rw-r--r--source/om/editeng/source/items.po2
-rw-r--r--source/om/editeng/source/misc.po2
-rw-r--r--source/om/editeng/source/outliner.po2
-rw-r--r--source/om/extensions/source/abpilot.po2
-rw-r--r--source/om/extensions/source/bibliography.po2
-rw-r--r--source/om/extensions/source/dbpilots.po2
-rw-r--r--source/om/extensions/source/propctrlr.po2
-rw-r--r--source/om/extensions/source/scanner.po2
-rw-r--r--source/om/extensions/source/update/check.po2
-rw-r--r--source/om/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/om/filter/source/config/fragments/filters.po2
-rw-r--r--source/om/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/om/filter/source/config/fragments/types.po2
-rw-r--r--source/om/filter/source/flash.po2
-rw-r--r--source/om/filter/source/graphicfilter/eps.po2
-rw-r--r--source/om/filter/source/pdf.po2
-rw-r--r--source/om/filter/source/t602.po2
-rw-r--r--source/om/filter/source/xsltdialog.po2
-rw-r--r--source/om/filter/uiconfig/ui.po2
-rw-r--r--source/om/forms/source/resource.po2
-rw-r--r--source/om/formula/source/core/resource.po38
-rw-r--r--source/om/formula/source/ui/dlg.po2
-rw-r--r--source/om/fpicker/source/office.po2
-rw-r--r--source/om/framework/source/classes.po2
-rw-r--r--source/om/framework/source/services.po2
-rw-r--r--source/om/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/om/librelogo/source/pythonpath.po2
-rw-r--r--source/om/mysqlc/source.po2
-rw-r--r--source/om/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/om/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/om/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/om/nlpsolver/src/locale.po2
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/om/padmin/source.po2
-rw-r--r--source/om/readlicense_oo/docs.po2
-rw-r--r--source/om/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/om/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/om/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/om/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/om/reportbuilder/util.po2
-rw-r--r--source/om/reportdesign/source/core/resource.po2
-rw-r--r--source/om/reportdesign/source/ui/dlg.po2
-rw-r--r--source/om/reportdesign/source/ui/inspection.po2
-rw-r--r--source/om/reportdesign/source/ui/report.po2
-rw-r--r--source/om/sc/source/core/src.po2
-rw-r--r--source/om/sc/source/ui/cctrl.po2
-rw-r--r--source/om/sc/source/ui/dbgui.po2
-rw-r--r--source/om/sc/source/ui/docshell.po2
-rw-r--r--source/om/sc/source/ui/drawfunc.po2
-rw-r--r--source/om/sc/source/ui/formdlg.po2
-rw-r--r--source/om/sc/source/ui/miscdlgs.po2
-rw-r--r--source/om/sc/source/ui/navipi.po2
-rw-r--r--source/om/sc/source/ui/optdlg.po2
-rw-r--r--source/om/sc/source/ui/pagedlg.po2
-rw-r--r--source/om/sc/source/ui/src.po379
-rw-r--r--source/om/sc/source/ui/styleui.po2
-rw-r--r--source/om/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/om/scaddins/source/analysis.po2
-rw-r--r--source/om/scaddins/source/datefunc.po2
-rw-r--r--source/om/scaddins/source/pricing.po2
-rw-r--r--source/om/sccomp/source/solver.po2
-rw-r--r--source/om/scp2/source/accessories.po2
-rw-r--r--source/om/scp2/source/activex.po2
-rw-r--r--source/om/scp2/source/base.po2
-rw-r--r--source/om/scp2/source/calc.po2
-rw-r--r--source/om/scp2/source/draw.po2
-rw-r--r--source/om/scp2/source/extensions.po2
-rw-r--r--source/om/scp2/source/gnome.po2
-rw-r--r--source/om/scp2/source/graphicfilter.po2
-rw-r--r--source/om/scp2/source/impress.po2
-rw-r--r--source/om/scp2/source/javafilter.po2
-rw-r--r--source/om/scp2/source/kde.po2
-rw-r--r--source/om/scp2/source/math.po2
-rw-r--r--source/om/scp2/source/onlineupdate.po2
-rw-r--r--source/om/scp2/source/ooo.po2
-rw-r--r--source/om/scp2/source/python.po18
-rw-r--r--source/om/scp2/source/quickstart.po2
-rw-r--r--source/om/scp2/source/sdkoo.po2
-rw-r--r--source/om/scp2/source/smoketest.po2
-rw-r--r--source/om/scp2/source/stdlibs.po2
-rw-r--r--source/om/scp2/source/tde.po2
-rw-r--r--source/om/scp2/source/winexplorerext.po2
-rw-r--r--source/om/scp2/source/writer.po2
-rw-r--r--source/om/scp2/source/xsltfilter.po2
-rw-r--r--source/om/sd/source/core.po2
-rw-r--r--source/om/sd/source/filter/html.po2
-rw-r--r--source/om/sd/source/ui/accessibility.po2
-rw-r--r--source/om/sd/source/ui/animations.po2
-rw-r--r--source/om/sd/source/ui/annotations.po2
-rw-r--r--source/om/sd/source/ui/app.po2
-rw-r--r--source/om/sd/source/ui/dlg.po2
-rw-r--r--source/om/sd/source/ui/slideshow.po2
-rw-r--r--source/om/sd/source/ui/table.po2
-rw-r--r--source/om/sd/source/ui/view.po2
-rw-r--r--source/om/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/om/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/om/sdext/source/minimizer.po2
-rw-r--r--source/om/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/om/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/om/setup_native/source/mac.po2
-rw-r--r--source/om/sfx2/source/appl.po2
-rw-r--r--source/om/sfx2/source/bastyp.po2
-rw-r--r--source/om/sfx2/source/control.po23
-rw-r--r--source/om/sfx2/source/dialog.po46
-rw-r--r--source/om/sfx2/source/doc.po126
-rw-r--r--source/om/sfx2/source/menu.po2
-rw-r--r--source/om/sfx2/source/view.po2
-rw-r--r--source/om/sfx2/uiconfig/ui.po2
-rw-r--r--source/om/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/om/starmath/source.po2
-rw-r--r--source/om/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/om/svl/source/items.po2
-rw-r--r--source/om/svl/source/misc.po2
-rw-r--r--source/om/svtools/source/contnr.po2
-rw-r--r--source/om/svtools/source/control.po2
-rw-r--r--source/om/svtools/source/dialogs.po2
-rw-r--r--source/om/svtools/source/java.po2
-rw-r--r--source/om/svtools/source/misc.po2
-rw-r--r--source/om/svtools/source/toolpanel.po2
-rw-r--r--source/om/svtools/uiconfig/ui.po53
-rw-r--r--source/om/svx/inc.po2
-rw-r--r--source/om/svx/source/accessibility.po2
-rw-r--r--source/om/svx/source/core.po2
-rw-r--r--source/om/svx/source/dialog.po224
-rw-r--r--source/om/svx/source/engine3d.po2
-rw-r--r--source/om/svx/source/fmcomp.po2
-rw-r--r--source/om/svx/source/form.po2
-rw-r--r--source/om/svx/source/gallery2.po2
-rw-r--r--source/om/svx/source/items.po2
-rw-r--r--source/om/svx/source/src.po2
-rw-r--r--source/om/svx/source/stbctrls.po2
-rw-r--r--source/om/svx/source/svdraw.po2
-rw-r--r--source/om/svx/source/table.po2
-rw-r--r--source/om/svx/source/tbxctrls.po2
-rw-r--r--source/om/svx/source/toolbars.po2
-rw-r--r--source/om/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/om/svx/uiconfig/ui.po204
-rw-r--r--source/om/sw/source/core/layout.po2
-rw-r--r--source/om/sw/source/core/undo.po2
-rw-r--r--source/om/sw/source/core/unocore.po2
-rw-r--r--source/om/sw/source/ui/app.po2
-rw-r--r--source/om/sw/source/ui/chrdlg.po2
-rw-r--r--source/om/sw/source/ui/config.po2
-rw-r--r--source/om/sw/source/ui/dbui.po2
-rw-r--r--source/om/sw/source/ui/dialog.po2
-rw-r--r--source/om/sw/source/ui/dochdl.po2
-rw-r--r--source/om/sw/source/ui/docvw.po2
-rw-r--r--source/om/sw/source/ui/envelp.po2
-rw-r--r--source/om/sw/source/ui/fldui.po2
-rw-r--r--source/om/sw/source/ui/fmtui.po2
-rw-r--r--source/om/sw/source/ui/frmdlg.po2
-rw-r--r--source/om/sw/source/ui/globdoc.po2
-rw-r--r--source/om/sw/source/ui/index.po2
-rw-r--r--source/om/sw/source/ui/lingu.po2
-rw-r--r--source/om/sw/source/ui/misc.po2
-rw-r--r--source/om/sw/source/ui/ribbar.po2
-rw-r--r--source/om/sw/source/ui/shells.po2
-rw-r--r--source/om/sw/source/ui/smartmenu.po2
-rw-r--r--source/om/sw/source/ui/table.po2
-rw-r--r--source/om/sw/source/ui/uiview.po2
-rw-r--r--source/om/sw/source/ui/utlui.po2
-rw-r--r--source/om/sw/source/ui/web.po2
-rw-r--r--source/om/sw/source/ui/wrtsh.po2
-rw-r--r--source/om/sw/uiconfig/sw/ui.po285
-rw-r--r--source/om/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/om/swext/mediawiki/help.po2
-rw-r--r--source/om/swext/mediawiki/src.po2
-rw-r--r--source/om/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/om/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/om/sysui/desktop/share.po2
-rw-r--r--source/om/tubes/uiconfig/ui.po2
-rw-r--r--source/om/uui/source.po2
-rw-r--r--source/om/vcl/qa/cppunit/builder.po2
-rw-r--r--source/om/vcl/source/edit.po2
-rw-r--r--source/om/vcl/source/src.po2
-rw-r--r--source/om/vcl/uiconfig/ui.po2
-rw-r--r--source/om/wizards/source/euro.po2
-rw-r--r--source/om/wizards/source/formwizard.po2
-rw-r--r--source/om/wizards/source/importwizard.po2
-rw-r--r--source/om/wizards/source/template.po2
-rw-r--r--source/om/xmlsecurity/source/component.po2
-rw-r--r--source/om/xmlsecurity/source/dialogs.po2
-rw-r--r--source/or/accessibility/source/helper.po2
-rw-r--r--source/or/android/sdremote/res/values.po2
-rw-r--r--source/or/avmedia/source/framework.po2
-rw-r--r--source/or/avmedia/source/viewer.po2
-rw-r--r--source/or/basctl/source/basicide.po2
-rw-r--r--source/or/basctl/source/dlged.po2
-rw-r--r--source/or/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/or/basic/source/classes.po2
-rw-r--r--source/or/basic/source/sbx.po2
-rw-r--r--source/or/chart2/source/controller/dialogs.po2
-rw-r--r--source/or/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/connectivity/source/resource.po2
-rw-r--r--source/or/cui/source/customize.po2
-rw-r--r--source/or/cui/source/dialogs.po2
-rw-r--r--source/or/cui/source/options.po2
-rw-r--r--source/or/cui/source/tabpages.po2
-rw-r--r--source/or/cui/uiconfig/ui.po2
-rw-r--r--source/or/dbaccess/source/core/resource.po2
-rw-r--r--source/or/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/or/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/or/dbaccess/source/ui/app.po2
-rw-r--r--source/or/dbaccess/source/ui/browser.po2
-rw-r--r--source/or/dbaccess/source/ui/control.po2
-rw-r--r--source/or/dbaccess/source/ui/dlg.po2
-rw-r--r--source/or/dbaccess/source/ui/inc.po2
-rw-r--r--source/or/dbaccess/source/ui/misc.po2
-rw-r--r--source/or/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/or/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/or/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/or/dbaccess/source/ui/uno.po2
-rw-r--r--source/or/desktop/source/app.po2
-rw-r--r--source/or/desktop/source/deployment/gui.po2
-rw-r--r--source/or/desktop/source/deployment/manager.po2
-rw-r--r--source/or/desktop/source/deployment/misc.po2
-rw-r--r--source/or/desktop/source/deployment/registry.po2
-rw-r--r--source/or/desktop/source/deployment/registry/component.po2
-rw-r--r--source/or/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/or/desktop/source/deployment/registry/help.po2
-rw-r--r--source/or/desktop/source/deployment/registry/package.po2
-rw-r--r--source/or/desktop/source/deployment/registry/script.po2
-rw-r--r--source/or/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/or/desktop/source/deployment/unopkg.po2
-rw-r--r--source/or/desktop/uiconfig/ui.po2
-rw-r--r--source/or/dictionaries/af_ZA.po2
-rw-r--r--source/or/dictionaries/an_ES.po2
-rw-r--r--source/or/dictionaries/ar.po2
-rw-r--r--source/or/dictionaries/be_BY.po2
-rw-r--r--source/or/dictionaries/bg_BG.po2
-rw-r--r--source/or/dictionaries/bn_BD.po2
-rw-r--r--source/or/dictionaries/br_FR.po2
-rw-r--r--source/or/dictionaries/ca.po2
-rw-r--r--source/or/dictionaries/cs_CZ.po2
-rw-r--r--source/or/dictionaries/da_DK.po2
-rw-r--r--source/or/dictionaries/de.po2
-rw-r--r--source/or/dictionaries/el_GR.po2
-rw-r--r--source/or/dictionaries/en.po2
-rw-r--r--source/or/dictionaries/en/dialog.po2
-rw-r--r--source/or/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/or/dictionaries/es.po2
-rw-r--r--source/or/dictionaries/et_EE.po2
-rw-r--r--source/or/dictionaries/fr_FR.po2
-rw-r--r--source/or/dictionaries/gd_GB.po2
-rw-r--r--source/or/dictionaries/gl.po2
-rw-r--r--source/or/dictionaries/gu_IN.po2
-rw-r--r--source/or/dictionaries/he_IL.po2
-rw-r--r--source/or/dictionaries/hi_IN.po2
-rw-r--r--source/or/dictionaries/hr_HR.po2
-rw-r--r--source/or/dictionaries/hu_HU.po2
-rw-r--r--source/or/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/or/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/or/dictionaries/it_IT.po2
-rw-r--r--source/or/dictionaries/ku_TR.po2
-rw-r--r--source/or/dictionaries/lt_LT.po2
-rw-r--r--source/or/dictionaries/lv_LV.po2
-rw-r--r--source/or/dictionaries/ne_NP.po2
-rw-r--r--source/or/dictionaries/nl_NL.po2
-rw-r--r--source/or/dictionaries/no.po2
-rw-r--r--source/or/dictionaries/oc_FR.po2
-rw-r--r--source/or/dictionaries/pl_PL.po2
-rw-r--r--source/or/dictionaries/pt_BR.po2
-rw-r--r--source/or/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/or/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/or/dictionaries/pt_PT.po2
-rw-r--r--source/or/dictionaries/ro.po2
-rw-r--r--source/or/dictionaries/ru_RU.po2
-rw-r--r--source/or/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/or/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/or/dictionaries/si_LK.po2
-rw-r--r--source/or/dictionaries/sk_SK.po2
-rw-r--r--source/or/dictionaries/sl_SI.po2
-rw-r--r--source/or/dictionaries/sr.po2
-rw-r--r--source/or/dictionaries/sv_SE.po2
-rw-r--r--source/or/dictionaries/sw_TZ.po2
-rw-r--r--source/or/dictionaries/te_IN.po2
-rw-r--r--source/or/dictionaries/th_TH.po2
-rw-r--r--source/or/dictionaries/uk_UA.po2
-rw-r--r--source/or/dictionaries/vi.po2
-rw-r--r--source/or/dictionaries/zu_ZA.po2
-rw-r--r--source/or/editeng/source/accessibility.po2
-rw-r--r--source/or/editeng/source/editeng.po2
-rw-r--r--source/or/editeng/source/items.po2
-rw-r--r--source/or/editeng/source/misc.po2
-rw-r--r--source/or/editeng/source/outliner.po2
-rw-r--r--source/or/extensions/source/abpilot.po2
-rw-r--r--source/or/extensions/source/bibliography.po2
-rw-r--r--source/or/extensions/source/dbpilots.po2
-rw-r--r--source/or/extensions/source/propctrlr.po2
-rw-r--r--source/or/extensions/source/scanner.po2
-rw-r--r--source/or/extensions/source/update/check.po2
-rw-r--r--source/or/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/or/filter/source/config/fragments/filters.po2
-rw-r--r--source/or/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/or/filter/source/config/fragments/types.po2
-rw-r--r--source/or/filter/source/flash.po2
-rw-r--r--source/or/filter/source/graphicfilter/eps.po2
-rw-r--r--source/or/filter/source/pdf.po2
-rw-r--r--source/or/filter/source/t602.po2
-rw-r--r--source/or/filter/source/xsltdialog.po2
-rw-r--r--source/or/filter/uiconfig/ui.po2
-rw-r--r--source/or/forms/source/resource.po2
-rw-r--r--source/or/formula/source/core/resource.po38
-rw-r--r--source/or/formula/source/ui/dlg.po2
-rw-r--r--source/or/fpicker/source/office.po2
-rw-r--r--source/or/framework/source/classes.po2
-rw-r--r--source/or/framework/source/services.po2
-rw-r--r--source/or/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/or/librelogo/source/pythonpath.po2
-rw-r--r--source/or/mysqlc/source.po2
-rw-r--r--source/or/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/or/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/or/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/or/nlpsolver/src/locale.po2
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/or/padmin/source.po2
-rw-r--r--source/or/readlicense_oo/docs.po2
-rw-r--r--source/or/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/or/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/or/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/or/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/or/reportbuilder/util.po2
-rw-r--r--source/or/reportdesign/source/core/resource.po2
-rw-r--r--source/or/reportdesign/source/ui/dlg.po2
-rw-r--r--source/or/reportdesign/source/ui/inspection.po2
-rw-r--r--source/or/reportdesign/source/ui/report.po2
-rw-r--r--source/or/sc/source/core/src.po2
-rw-r--r--source/or/sc/source/ui/cctrl.po2
-rw-r--r--source/or/sc/source/ui/dbgui.po2
-rw-r--r--source/or/sc/source/ui/docshell.po2
-rw-r--r--source/or/sc/source/ui/drawfunc.po2
-rw-r--r--source/or/sc/source/ui/formdlg.po2
-rw-r--r--source/or/sc/source/ui/miscdlgs.po2
-rw-r--r--source/or/sc/source/ui/navipi.po2
-rw-r--r--source/or/sc/source/ui/optdlg.po2
-rw-r--r--source/or/sc/source/ui/pagedlg.po2
-rw-r--r--source/or/sc/source/ui/src.po383
-rw-r--r--source/or/sc/source/ui/styleui.po2
-rw-r--r--source/or/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/or/scaddins/source/analysis.po2
-rw-r--r--source/or/scaddins/source/datefunc.po2
-rw-r--r--source/or/scaddins/source/pricing.po2
-rw-r--r--source/or/sccomp/source/solver.po2
-rw-r--r--source/or/scp2/source/accessories.po2
-rw-r--r--source/or/scp2/source/activex.po2
-rw-r--r--source/or/scp2/source/base.po2
-rw-r--r--source/or/scp2/source/calc.po2
-rw-r--r--source/or/scp2/source/draw.po2
-rw-r--r--source/or/scp2/source/extensions.po2
-rw-r--r--source/or/scp2/source/gnome.po2
-rw-r--r--source/or/scp2/source/graphicfilter.po2
-rw-r--r--source/or/scp2/source/impress.po2
-rw-r--r--source/or/scp2/source/javafilter.po2
-rw-r--r--source/or/scp2/source/kde.po2
-rw-r--r--source/or/scp2/source/math.po2
-rw-r--r--source/or/scp2/source/onlineupdate.po2
-rw-r--r--source/or/scp2/source/ooo.po2
-rw-r--r--source/or/scp2/source/python.po18
-rw-r--r--source/or/scp2/source/quickstart.po2
-rw-r--r--source/or/scp2/source/sdkoo.po2
-rw-r--r--source/or/scp2/source/smoketest.po2
-rw-r--r--source/or/scp2/source/stdlibs.po2
-rw-r--r--source/or/scp2/source/tde.po2
-rw-r--r--source/or/scp2/source/winexplorerext.po2
-rw-r--r--source/or/scp2/source/writer.po2
-rw-r--r--source/or/scp2/source/xsltfilter.po2
-rw-r--r--source/or/sd/source/core.po2
-rw-r--r--source/or/sd/source/filter/html.po2
-rw-r--r--source/or/sd/source/ui/accessibility.po2
-rw-r--r--source/or/sd/source/ui/animations.po2
-rw-r--r--source/or/sd/source/ui/annotations.po2
-rw-r--r--source/or/sd/source/ui/app.po2
-rw-r--r--source/or/sd/source/ui/dlg.po2
-rw-r--r--source/or/sd/source/ui/slideshow.po2
-rw-r--r--source/or/sd/source/ui/table.po2
-rw-r--r--source/or/sd/source/ui/view.po2
-rw-r--r--source/or/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/or/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/or/sdext/source/minimizer.po2
-rw-r--r--source/or/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/or/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/or/setup_native/source/mac.po2
-rw-r--r--source/or/sfx2/source/appl.po2
-rw-r--r--source/or/sfx2/source/bastyp.po2
-rw-r--r--source/or/sfx2/source/control.po23
-rw-r--r--source/or/sfx2/source/dialog.po46
-rw-r--r--source/or/sfx2/source/doc.po126
-rw-r--r--source/or/sfx2/source/menu.po2
-rw-r--r--source/or/sfx2/source/view.po2
-rw-r--r--source/or/sfx2/uiconfig/ui.po2
-rw-r--r--source/or/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/or/starmath/source.po2
-rw-r--r--source/or/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/or/svl/source/items.po2
-rw-r--r--source/or/svl/source/misc.po2
-rw-r--r--source/or/svtools/source/contnr.po2
-rw-r--r--source/or/svtools/source/control.po2
-rw-r--r--source/or/svtools/source/dialogs.po2
-rw-r--r--source/or/svtools/source/java.po2
-rw-r--r--source/or/svtools/source/misc.po2
-rw-r--r--source/or/svtools/source/toolpanel.po2
-rw-r--r--source/or/svtools/uiconfig/ui.po53
-rw-r--r--source/or/svx/inc.po2
-rw-r--r--source/or/svx/source/accessibility.po2
-rw-r--r--source/or/svx/source/core.po2
-rw-r--r--source/or/svx/source/dialog.po224
-rw-r--r--source/or/svx/source/engine3d.po2
-rw-r--r--source/or/svx/source/fmcomp.po2
-rw-r--r--source/or/svx/source/form.po2
-rw-r--r--source/or/svx/source/gallery2.po2
-rw-r--r--source/or/svx/source/items.po2
-rw-r--r--source/or/svx/source/src.po2
-rw-r--r--source/or/svx/source/stbctrls.po2
-rw-r--r--source/or/svx/source/svdraw.po2
-rw-r--r--source/or/svx/source/table.po2
-rw-r--r--source/or/svx/source/tbxctrls.po2
-rw-r--r--source/or/svx/source/toolbars.po2
-rw-r--r--source/or/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/or/svx/uiconfig/ui.po204
-rw-r--r--source/or/sw/source/core/layout.po2
-rw-r--r--source/or/sw/source/core/undo.po2
-rw-r--r--source/or/sw/source/core/unocore.po2
-rw-r--r--source/or/sw/source/ui/app.po2
-rw-r--r--source/or/sw/source/ui/chrdlg.po2
-rw-r--r--source/or/sw/source/ui/config.po2
-rw-r--r--source/or/sw/source/ui/dbui.po2
-rw-r--r--source/or/sw/source/ui/dialog.po2
-rw-r--r--source/or/sw/source/ui/dochdl.po2
-rw-r--r--source/or/sw/source/ui/docvw.po2
-rw-r--r--source/or/sw/source/ui/envelp.po2
-rw-r--r--source/or/sw/source/ui/fldui.po2
-rw-r--r--source/or/sw/source/ui/fmtui.po2
-rw-r--r--source/or/sw/source/ui/frmdlg.po2
-rw-r--r--source/or/sw/source/ui/globdoc.po2
-rw-r--r--source/or/sw/source/ui/index.po2
-rw-r--r--source/or/sw/source/ui/lingu.po2
-rw-r--r--source/or/sw/source/ui/misc.po2
-rw-r--r--source/or/sw/source/ui/ribbar.po2
-rw-r--r--source/or/sw/source/ui/shells.po2
-rw-r--r--source/or/sw/source/ui/smartmenu.po2
-rw-r--r--source/or/sw/source/ui/table.po2
-rw-r--r--source/or/sw/source/ui/uiview.po2
-rw-r--r--source/or/sw/source/ui/utlui.po2
-rw-r--r--source/or/sw/source/ui/web.po2
-rw-r--r--source/or/sw/source/ui/wrtsh.po2
-rw-r--r--source/or/sw/uiconfig/sw/ui.po282
-rw-r--r--source/or/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/or/swext/mediawiki/help.po2
-rw-r--r--source/or/swext/mediawiki/src.po2
-rw-r--r--source/or/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/or/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/or/sysui/desktop/share.po2
-rw-r--r--source/or/tubes/uiconfig/ui.po2
-rw-r--r--source/or/uui/source.po2
-rw-r--r--source/or/vcl/qa/cppunit/builder.po2
-rw-r--r--source/or/vcl/source/edit.po2
-rw-r--r--source/or/vcl/source/src.po2
-rw-r--r--source/or/vcl/uiconfig/ui.po2
-rw-r--r--source/or/wizards/source/euro.po2
-rw-r--r--source/or/wizards/source/formwizard.po2
-rw-r--r--source/or/wizards/source/importwizard.po2
-rw-r--r--source/or/wizards/source/template.po2
-rw-r--r--source/or/xmlsecurity/source/component.po2
-rw-r--r--source/or/xmlsecurity/source/dialogs.po2
-rw-r--r--source/pa-IN/accessibility/source/helper.po2
-rw-r--r--source/pa-IN/android/sdremote/res/values.po2
-rw-r--r--source/pa-IN/avmedia/source/framework.po2
-rw-r--r--source/pa-IN/avmedia/source/viewer.po2
-rw-r--r--source/pa-IN/basctl/source/basicide.po2
-rw-r--r--source/pa-IN/basctl/source/dlged.po2
-rw-r--r--source/pa-IN/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/pa-IN/basic/source/classes.po2
-rw-r--r--source/pa-IN/basic/source/sbx.po2
-rw-r--r--source/pa-IN/chart2/source/controller/dialogs.po2
-rw-r--r--source/pa-IN/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/connectivity/source/resource.po2
-rw-r--r--source/pa-IN/cui/source/customize.po2
-rw-r--r--source/pa-IN/cui/source/dialogs.po2
-rw-r--r--source/pa-IN/cui/source/options.po2
-rw-r--r--source/pa-IN/cui/source/tabpages.po2
-rw-r--r--source/pa-IN/cui/uiconfig/ui.po2
-rw-r--r--source/pa-IN/dbaccess/source/core/resource.po2
-rw-r--r--source/pa-IN/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/pa-IN/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/pa-IN/dbaccess/source/ui/app.po2
-rw-r--r--source/pa-IN/dbaccess/source/ui/browser.po2
-rw-r--r--source/pa-IN/dbaccess/source/ui/control.po2
-rw-r--r--source/pa-IN/dbaccess/source/ui/dlg.po2
-rw-r--r--source/pa-IN/dbaccess/source/ui/inc.po2
-rw-r--r--source/pa-IN/dbaccess/source/ui/misc.po2
-rw-r--r--source/pa-IN/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/pa-IN/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/pa-IN/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/pa-IN/dbaccess/source/ui/uno.po2
-rw-r--r--source/pa-IN/desktop/source/app.po2
-rw-r--r--source/pa-IN/desktop/source/deployment/gui.po2
-rw-r--r--source/pa-IN/desktop/source/deployment/manager.po2
-rw-r--r--source/pa-IN/desktop/source/deployment/misc.po2
-rw-r--r--source/pa-IN/desktop/source/deployment/registry.po2
-rw-r--r--source/pa-IN/desktop/source/deployment/registry/component.po2
-rw-r--r--source/pa-IN/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/pa-IN/desktop/source/deployment/registry/help.po2
-rw-r--r--source/pa-IN/desktop/source/deployment/registry/package.po2
-rw-r--r--source/pa-IN/desktop/source/deployment/registry/script.po2
-rw-r--r--source/pa-IN/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/pa-IN/desktop/source/deployment/unopkg.po2
-rw-r--r--source/pa-IN/desktop/uiconfig/ui.po2
-rw-r--r--source/pa-IN/dictionaries/af_ZA.po2
-rw-r--r--source/pa-IN/dictionaries/an_ES.po2
-rw-r--r--source/pa-IN/dictionaries/ar.po2
-rw-r--r--source/pa-IN/dictionaries/be_BY.po2
-rw-r--r--source/pa-IN/dictionaries/bg_BG.po2
-rw-r--r--source/pa-IN/dictionaries/bn_BD.po2
-rw-r--r--source/pa-IN/dictionaries/br_FR.po2
-rw-r--r--source/pa-IN/dictionaries/ca.po2
-rw-r--r--source/pa-IN/dictionaries/cs_CZ.po2
-rw-r--r--source/pa-IN/dictionaries/da_DK.po2
-rw-r--r--source/pa-IN/dictionaries/de.po2
-rw-r--r--source/pa-IN/dictionaries/el_GR.po2
-rw-r--r--source/pa-IN/dictionaries/en.po2
-rw-r--r--source/pa-IN/dictionaries/en/dialog.po2
-rw-r--r--source/pa-IN/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pa-IN/dictionaries/es.po2
-rw-r--r--source/pa-IN/dictionaries/et_EE.po2
-rw-r--r--source/pa-IN/dictionaries/fr_FR.po2
-rw-r--r--source/pa-IN/dictionaries/gd_GB.po2
-rw-r--r--source/pa-IN/dictionaries/gl.po2
-rw-r--r--source/pa-IN/dictionaries/gu_IN.po2
-rw-r--r--source/pa-IN/dictionaries/he_IL.po2
-rw-r--r--source/pa-IN/dictionaries/hi_IN.po2
-rw-r--r--source/pa-IN/dictionaries/hr_HR.po2
-rw-r--r--source/pa-IN/dictionaries/hu_HU.po2
-rw-r--r--source/pa-IN/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/pa-IN/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pa-IN/dictionaries/it_IT.po2
-rw-r--r--source/pa-IN/dictionaries/ku_TR.po2
-rw-r--r--source/pa-IN/dictionaries/lt_LT.po2
-rw-r--r--source/pa-IN/dictionaries/lv_LV.po2
-rw-r--r--source/pa-IN/dictionaries/ne_NP.po2
-rw-r--r--source/pa-IN/dictionaries/nl_NL.po2
-rw-r--r--source/pa-IN/dictionaries/no.po2
-rw-r--r--source/pa-IN/dictionaries/oc_FR.po2
-rw-r--r--source/pa-IN/dictionaries/pl_PL.po2
-rw-r--r--source/pa-IN/dictionaries/pt_BR.po2
-rw-r--r--source/pa-IN/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/pa-IN/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pa-IN/dictionaries/pt_PT.po2
-rw-r--r--source/pa-IN/dictionaries/ro.po2
-rw-r--r--source/pa-IN/dictionaries/ru_RU.po2
-rw-r--r--source/pa-IN/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/pa-IN/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pa-IN/dictionaries/si_LK.po2
-rw-r--r--source/pa-IN/dictionaries/sk_SK.po2
-rw-r--r--source/pa-IN/dictionaries/sl_SI.po2
-rw-r--r--source/pa-IN/dictionaries/sr.po2
-rw-r--r--source/pa-IN/dictionaries/sv_SE.po2
-rw-r--r--source/pa-IN/dictionaries/sw_TZ.po2
-rw-r--r--source/pa-IN/dictionaries/te_IN.po2
-rw-r--r--source/pa-IN/dictionaries/th_TH.po2
-rw-r--r--source/pa-IN/dictionaries/uk_UA.po2
-rw-r--r--source/pa-IN/dictionaries/vi.po2
-rw-r--r--source/pa-IN/dictionaries/zu_ZA.po2
-rw-r--r--source/pa-IN/editeng/source/accessibility.po2
-rw-r--r--source/pa-IN/editeng/source/editeng.po2
-rw-r--r--source/pa-IN/editeng/source/items.po2
-rw-r--r--source/pa-IN/editeng/source/misc.po2
-rw-r--r--source/pa-IN/editeng/source/outliner.po2
-rw-r--r--source/pa-IN/extensions/source/abpilot.po2
-rw-r--r--source/pa-IN/extensions/source/bibliography.po2
-rw-r--r--source/pa-IN/extensions/source/dbpilots.po2
-rw-r--r--source/pa-IN/extensions/source/propctrlr.po2
-rw-r--r--source/pa-IN/extensions/source/scanner.po2
-rw-r--r--source/pa-IN/extensions/source/update/check.po2
-rw-r--r--source/pa-IN/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/pa-IN/filter/source/config/fragments/filters.po2
-rw-r--r--source/pa-IN/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/pa-IN/filter/source/config/fragments/types.po2
-rw-r--r--source/pa-IN/filter/source/flash.po2
-rw-r--r--source/pa-IN/filter/source/graphicfilter/eps.po2
-rw-r--r--source/pa-IN/filter/source/pdf.po2
-rw-r--r--source/pa-IN/filter/source/t602.po2
-rw-r--r--source/pa-IN/filter/source/xsltdialog.po2
-rw-r--r--source/pa-IN/filter/uiconfig/ui.po2
-rw-r--r--source/pa-IN/forms/source/resource.po2
-rw-r--r--source/pa-IN/formula/source/core/resource.po38
-rw-r--r--source/pa-IN/formula/source/ui/dlg.po2
-rw-r--r--source/pa-IN/fpicker/source/office.po2
-rw-r--r--source/pa-IN/framework/source/classes.po2
-rw-r--r--source/pa-IN/framework/source/services.po2
-rw-r--r--source/pa-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/pa-IN/librelogo/source/pythonpath.po2
-rw-r--r--source/pa-IN/mysqlc/source.po2
-rw-r--r--source/pa-IN/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pa-IN/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/pa-IN/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/pa-IN/nlpsolver/src/locale.po2
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/pa-IN/padmin/source.po2
-rw-r--r--source/pa-IN/readlicense_oo/docs.po2
-rw-r--r--source/pa-IN/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/pa-IN/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pa-IN/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/pa-IN/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/pa-IN/reportbuilder/util.po2
-rw-r--r--source/pa-IN/reportdesign/source/core/resource.po2
-rw-r--r--source/pa-IN/reportdesign/source/ui/dlg.po2
-rw-r--r--source/pa-IN/reportdesign/source/ui/inspection.po2
-rw-r--r--source/pa-IN/reportdesign/source/ui/report.po2
-rw-r--r--source/pa-IN/sc/source/core/src.po2
-rw-r--r--source/pa-IN/sc/source/ui/cctrl.po2
-rw-r--r--source/pa-IN/sc/source/ui/dbgui.po2
-rw-r--r--source/pa-IN/sc/source/ui/docshell.po2
-rw-r--r--source/pa-IN/sc/source/ui/drawfunc.po2
-rw-r--r--source/pa-IN/sc/source/ui/formdlg.po2
-rw-r--r--source/pa-IN/sc/source/ui/miscdlgs.po2
-rw-r--r--source/pa-IN/sc/source/ui/navipi.po2
-rw-r--r--source/pa-IN/sc/source/ui/optdlg.po2
-rw-r--r--source/pa-IN/sc/source/ui/pagedlg.po2
-rw-r--r--source/pa-IN/sc/source/ui/src.po383
-rw-r--r--source/pa-IN/sc/source/ui/styleui.po2
-rw-r--r--source/pa-IN/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/pa-IN/scaddins/source/analysis.po2
-rw-r--r--source/pa-IN/scaddins/source/datefunc.po2
-rw-r--r--source/pa-IN/scaddins/source/pricing.po2
-rw-r--r--source/pa-IN/sccomp/source/solver.po2
-rw-r--r--source/pa-IN/scp2/source/accessories.po2
-rw-r--r--source/pa-IN/scp2/source/activex.po2
-rw-r--r--source/pa-IN/scp2/source/base.po2
-rw-r--r--source/pa-IN/scp2/source/calc.po2
-rw-r--r--source/pa-IN/scp2/source/draw.po2
-rw-r--r--source/pa-IN/scp2/source/extensions.po2
-rw-r--r--source/pa-IN/scp2/source/gnome.po2
-rw-r--r--source/pa-IN/scp2/source/graphicfilter.po2
-rw-r--r--source/pa-IN/scp2/source/impress.po2
-rw-r--r--source/pa-IN/scp2/source/javafilter.po2
-rw-r--r--source/pa-IN/scp2/source/kde.po2
-rw-r--r--source/pa-IN/scp2/source/math.po2
-rw-r--r--source/pa-IN/scp2/source/onlineupdate.po2
-rw-r--r--source/pa-IN/scp2/source/ooo.po2
-rw-r--r--source/pa-IN/scp2/source/python.po18
-rw-r--r--source/pa-IN/scp2/source/quickstart.po2
-rw-r--r--source/pa-IN/scp2/source/sdkoo.po2
-rw-r--r--source/pa-IN/scp2/source/smoketest.po2
-rw-r--r--source/pa-IN/scp2/source/stdlibs.po2
-rw-r--r--source/pa-IN/scp2/source/tde.po2
-rw-r--r--source/pa-IN/scp2/source/winexplorerext.po2
-rw-r--r--source/pa-IN/scp2/source/writer.po2
-rw-r--r--source/pa-IN/scp2/source/xsltfilter.po2
-rw-r--r--source/pa-IN/sd/source/core.po2
-rw-r--r--source/pa-IN/sd/source/filter/html.po2
-rw-r--r--source/pa-IN/sd/source/ui/accessibility.po2
-rw-r--r--source/pa-IN/sd/source/ui/animations.po2
-rw-r--r--source/pa-IN/sd/source/ui/annotations.po2
-rw-r--r--source/pa-IN/sd/source/ui/app.po2
-rw-r--r--source/pa-IN/sd/source/ui/dlg.po2
-rw-r--r--source/pa-IN/sd/source/ui/slideshow.po2
-rw-r--r--source/pa-IN/sd/source/ui/table.po2
-rw-r--r--source/pa-IN/sd/source/ui/view.po2
-rw-r--r--source/pa-IN/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/pa-IN/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/pa-IN/sdext/source/minimizer.po2
-rw-r--r--source/pa-IN/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pa-IN/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/pa-IN/setup_native/source/mac.po2
-rw-r--r--source/pa-IN/sfx2/source/appl.po2
-rw-r--r--source/pa-IN/sfx2/source/bastyp.po2
-rw-r--r--source/pa-IN/sfx2/source/control.po23
-rw-r--r--source/pa-IN/sfx2/source/dialog.po46
-rw-r--r--source/pa-IN/sfx2/source/doc.po126
-rw-r--r--source/pa-IN/sfx2/source/menu.po2
-rw-r--r--source/pa-IN/sfx2/source/view.po2
-rw-r--r--source/pa-IN/sfx2/uiconfig/ui.po2
-rw-r--r--source/pa-IN/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/pa-IN/starmath/source.po2
-rw-r--r--source/pa-IN/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/pa-IN/svl/source/items.po2
-rw-r--r--source/pa-IN/svl/source/misc.po2
-rw-r--r--source/pa-IN/svtools/source/contnr.po2
-rw-r--r--source/pa-IN/svtools/source/control.po2
-rw-r--r--source/pa-IN/svtools/source/dialogs.po2
-rw-r--r--source/pa-IN/svtools/source/java.po2
-rw-r--r--source/pa-IN/svtools/source/misc.po2
-rw-r--r--source/pa-IN/svtools/source/toolpanel.po2
-rw-r--r--source/pa-IN/svtools/uiconfig/ui.po53
-rw-r--r--source/pa-IN/svx/inc.po2
-rw-r--r--source/pa-IN/svx/source/accessibility.po2
-rw-r--r--source/pa-IN/svx/source/core.po2
-rw-r--r--source/pa-IN/svx/source/dialog.po224
-rw-r--r--source/pa-IN/svx/source/engine3d.po2
-rw-r--r--source/pa-IN/svx/source/fmcomp.po2
-rw-r--r--source/pa-IN/svx/source/form.po2
-rw-r--r--source/pa-IN/svx/source/gallery2.po2
-rw-r--r--source/pa-IN/svx/source/items.po2
-rw-r--r--source/pa-IN/svx/source/src.po2
-rw-r--r--source/pa-IN/svx/source/stbctrls.po2
-rw-r--r--source/pa-IN/svx/source/svdraw.po2
-rw-r--r--source/pa-IN/svx/source/table.po2
-rw-r--r--source/pa-IN/svx/source/tbxctrls.po2
-rw-r--r--source/pa-IN/svx/source/toolbars.po2
-rw-r--r--source/pa-IN/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/pa-IN/svx/uiconfig/ui.po204
-rw-r--r--source/pa-IN/sw/source/core/layout.po2
-rw-r--r--source/pa-IN/sw/source/core/undo.po2
-rw-r--r--source/pa-IN/sw/source/core/unocore.po2
-rw-r--r--source/pa-IN/sw/source/ui/app.po2
-rw-r--r--source/pa-IN/sw/source/ui/chrdlg.po2
-rw-r--r--source/pa-IN/sw/source/ui/config.po2
-rw-r--r--source/pa-IN/sw/source/ui/dbui.po2
-rw-r--r--source/pa-IN/sw/source/ui/dialog.po2
-rw-r--r--source/pa-IN/sw/source/ui/dochdl.po2
-rw-r--r--source/pa-IN/sw/source/ui/docvw.po2
-rw-r--r--source/pa-IN/sw/source/ui/envelp.po2
-rw-r--r--source/pa-IN/sw/source/ui/fldui.po2
-rw-r--r--source/pa-IN/sw/source/ui/fmtui.po2
-rw-r--r--source/pa-IN/sw/source/ui/frmdlg.po2
-rw-r--r--source/pa-IN/sw/source/ui/globdoc.po2
-rw-r--r--source/pa-IN/sw/source/ui/index.po2
-rw-r--r--source/pa-IN/sw/source/ui/lingu.po2
-rw-r--r--source/pa-IN/sw/source/ui/misc.po2
-rw-r--r--source/pa-IN/sw/source/ui/ribbar.po2
-rw-r--r--source/pa-IN/sw/source/ui/shells.po2
-rw-r--r--source/pa-IN/sw/source/ui/smartmenu.po2
-rw-r--r--source/pa-IN/sw/source/ui/table.po2
-rw-r--r--source/pa-IN/sw/source/ui/uiview.po2
-rw-r--r--source/pa-IN/sw/source/ui/utlui.po2
-rw-r--r--source/pa-IN/sw/source/ui/web.po2
-rw-r--r--source/pa-IN/sw/source/ui/wrtsh.po2
-rw-r--r--source/pa-IN/sw/uiconfig/sw/ui.po285
-rw-r--r--source/pa-IN/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/pa-IN/swext/mediawiki/help.po2
-rw-r--r--source/pa-IN/swext/mediawiki/src.po2
-rw-r--r--source/pa-IN/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pa-IN/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/pa-IN/sysui/desktop/share.po2
-rw-r--r--source/pa-IN/tubes/uiconfig/ui.po2
-rw-r--r--source/pa-IN/uui/source.po2
-rw-r--r--source/pa-IN/vcl/qa/cppunit/builder.po2
-rw-r--r--source/pa-IN/vcl/source/edit.po2
-rw-r--r--source/pa-IN/vcl/source/src.po2
-rw-r--r--source/pa-IN/vcl/uiconfig/ui.po2
-rw-r--r--source/pa-IN/wizards/source/euro.po2
-rw-r--r--source/pa-IN/wizards/source/formwizard.po2
-rw-r--r--source/pa-IN/wizards/source/importwizard.po2
-rw-r--r--source/pa-IN/wizards/source/template.po2
-rw-r--r--source/pa-IN/xmlsecurity/source/component.po2
-rw-r--r--source/pa-IN/xmlsecurity/source/dialogs.po2
-rw-r--r--source/pl/accessibility/source/helper.po2
-rw-r--r--source/pl/android/sdremote/res/values.po20
-rw-r--r--source/pl/avmedia/source/framework.po2
-rw-r--r--source/pl/avmedia/source/viewer.po2
-rw-r--r--source/pl/basctl/source/basicide.po2
-rw-r--r--source/pl/basctl/source/dlged.po2
-rw-r--r--source/pl/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/pl/basic/source/classes.po2
-rw-r--r--source/pl/basic/source/sbx.po2
-rw-r--r--source/pl/chart2/source/controller/dialogs.po9
-rw-r--r--source/pl/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/connectivity/source/resource.po2
-rw-r--r--source/pl/cui/source/customize.po2
-rw-r--r--source/pl/cui/source/dialogs.po2
-rw-r--r--source/pl/cui/source/options.po12
-rw-r--r--source/pl/cui/source/tabpages.po12
-rw-r--r--source/pl/cui/uiconfig/ui.po4
-rw-r--r--source/pl/dbaccess/source/core/resource.po2
-rw-r--r--source/pl/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/pl/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/pl/dbaccess/source/ui/app.po2
-rw-r--r--source/pl/dbaccess/source/ui/browser.po2
-rw-r--r--source/pl/dbaccess/source/ui/control.po2
-rw-r--r--source/pl/dbaccess/source/ui/dlg.po2
-rw-r--r--source/pl/dbaccess/source/ui/inc.po2
-rw-r--r--source/pl/dbaccess/source/ui/misc.po2
-rw-r--r--source/pl/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/pl/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/pl/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/pl/dbaccess/source/ui/uno.po2
-rw-r--r--source/pl/desktop/source/app.po2
-rw-r--r--source/pl/desktop/source/deployment/gui.po2
-rw-r--r--source/pl/desktop/source/deployment/manager.po2
-rw-r--r--source/pl/desktop/source/deployment/misc.po2
-rw-r--r--source/pl/desktop/source/deployment/registry.po2
-rw-r--r--source/pl/desktop/source/deployment/registry/component.po2
-rw-r--r--source/pl/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/pl/desktop/source/deployment/registry/help.po2
-rw-r--r--source/pl/desktop/source/deployment/registry/package.po2
-rw-r--r--source/pl/desktop/source/deployment/registry/script.po2
-rw-r--r--source/pl/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/pl/desktop/source/deployment/unopkg.po2
-rw-r--r--source/pl/desktop/uiconfig/ui.po2
-rw-r--r--source/pl/dictionaries/af_ZA.po2
-rw-r--r--source/pl/dictionaries/an_ES.po2
-rw-r--r--source/pl/dictionaries/ar.po2
-rw-r--r--source/pl/dictionaries/be_BY.po2
-rw-r--r--source/pl/dictionaries/bg_BG.po2
-rw-r--r--source/pl/dictionaries/bn_BD.po2
-rw-r--r--source/pl/dictionaries/br_FR.po2
-rw-r--r--source/pl/dictionaries/ca.po2
-rw-r--r--source/pl/dictionaries/cs_CZ.po2
-rw-r--r--source/pl/dictionaries/da_DK.po2
-rw-r--r--source/pl/dictionaries/de.po2
-rw-r--r--source/pl/dictionaries/el_GR.po2
-rw-r--r--source/pl/dictionaries/en.po2
-rw-r--r--source/pl/dictionaries/en/dialog.po2
-rw-r--r--source/pl/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pl/dictionaries/es.po2
-rw-r--r--source/pl/dictionaries/et_EE.po2
-rw-r--r--source/pl/dictionaries/fr_FR.po2
-rw-r--r--source/pl/dictionaries/gd_GB.po2
-rw-r--r--source/pl/dictionaries/gl.po2
-rw-r--r--source/pl/dictionaries/gu_IN.po2
-rw-r--r--source/pl/dictionaries/he_IL.po2
-rw-r--r--source/pl/dictionaries/hi_IN.po2
-rw-r--r--source/pl/dictionaries/hr_HR.po2
-rw-r--r--source/pl/dictionaries/hu_HU.po2
-rw-r--r--source/pl/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/pl/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pl/dictionaries/it_IT.po2
-rw-r--r--source/pl/dictionaries/ku_TR.po2
-rw-r--r--source/pl/dictionaries/lt_LT.po2
-rw-r--r--source/pl/dictionaries/lv_LV.po2
-rw-r--r--source/pl/dictionaries/ne_NP.po2
-rw-r--r--source/pl/dictionaries/nl_NL.po2
-rw-r--r--source/pl/dictionaries/no.po2
-rw-r--r--source/pl/dictionaries/oc_FR.po2
-rw-r--r--source/pl/dictionaries/pl_PL.po2
-rw-r--r--source/pl/dictionaries/pt_BR.po2
-rw-r--r--source/pl/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/pl/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pl/dictionaries/pt_PT.po2
-rw-r--r--source/pl/dictionaries/ro.po2
-rw-r--r--source/pl/dictionaries/ru_RU.po2
-rw-r--r--source/pl/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/pl/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pl/dictionaries/si_LK.po2
-rw-r--r--source/pl/dictionaries/sk_SK.po2
-rw-r--r--source/pl/dictionaries/sl_SI.po2
-rw-r--r--source/pl/dictionaries/sr.po2
-rw-r--r--source/pl/dictionaries/sv_SE.po2
-rw-r--r--source/pl/dictionaries/sw_TZ.po2
-rw-r--r--source/pl/dictionaries/te_IN.po2
-rw-r--r--source/pl/dictionaries/th_TH.po2
-rw-r--r--source/pl/dictionaries/uk_UA.po2
-rw-r--r--source/pl/dictionaries/vi.po2
-rw-r--r--source/pl/dictionaries/zu_ZA.po2
-rw-r--r--source/pl/editeng/source/accessibility.po2
-rw-r--r--source/pl/editeng/source/editeng.po2
-rw-r--r--source/pl/editeng/source/items.po2
-rw-r--r--source/pl/editeng/source/misc.po2
-rw-r--r--source/pl/editeng/source/outliner.po2
-rw-r--r--source/pl/extensions/source/abpilot.po2
-rw-r--r--source/pl/extensions/source/bibliography.po2
-rw-r--r--source/pl/extensions/source/dbpilots.po2
-rw-r--r--source/pl/extensions/source/propctrlr.po2
-rw-r--r--source/pl/extensions/source/scanner.po2
-rw-r--r--source/pl/extensions/source/update/check.po2
-rw-r--r--source/pl/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/pl/filter/source/config/fragments/filters.po2
-rw-r--r--source/pl/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/pl/filter/source/config/fragments/types.po2
-rw-r--r--source/pl/filter/source/flash.po2
-rw-r--r--source/pl/filter/source/graphicfilter/eps.po2
-rw-r--r--source/pl/filter/source/pdf.po2
-rw-r--r--source/pl/filter/source/t602.po2
-rw-r--r--source/pl/filter/source/xsltdialog.po2
-rw-r--r--source/pl/filter/uiconfig/ui.po2
-rw-r--r--source/pl/forms/source/resource.po2
-rw-r--r--source/pl/formula/source/core/resource.po46
-rw-r--r--source/pl/formula/source/ui/dlg.po2
-rw-r--r--source/pl/fpicker/source/office.po2
-rw-r--r--source/pl/framework/source/classes.po2
-rw-r--r--source/pl/framework/source/services.po2
-rw-r--r--source/pl/helpcontent2/source/auxiliary.po210
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po14
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/pl/helpcontent2/source/text/scalc/05.po9
-rw-r--r--source/pl/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/pl/helpcontent2/source/text/sdraw/guide.po9
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po44
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/pl/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po24
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/pl/helpcontent2/source/text/simpress.po8
-rw-r--r--source/pl/helpcontent2/source/text/simpress/01.po10
-rw-r--r--source/pl/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/pl/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/pl/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po279
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/pl/helpcontent2/source/text/swriter/librelogo.po101
-rw-r--r--source/pl/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/pl/librelogo/source/pythonpath.po2
-rw-r--r--source/pl/mysqlc/source.po2
-rw-r--r--source/pl/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/pl/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/pl/nlpsolver/src/locale.po2
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office.po44
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po63
-rw-r--r--source/pl/padmin/source.po4
-rw-r--r--source/pl/readlicense_oo/docs.po2
-rw-r--r--source/pl/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/pl/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pl/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/pl/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/pl/reportbuilder/util.po2
-rw-r--r--source/pl/reportdesign/source/core/resource.po2
-rw-r--r--source/pl/reportdesign/source/ui/dlg.po2
-rw-r--r--source/pl/reportdesign/source/ui/inspection.po2
-rw-r--r--source/pl/reportdesign/source/ui/report.po2
-rw-r--r--source/pl/sc/source/core/src.po2
-rw-r--r--source/pl/sc/source/ui/cctrl.po2
-rw-r--r--source/pl/sc/source/ui/dbgui.po12
-rw-r--r--source/pl/sc/source/ui/docshell.po2
-rw-r--r--source/pl/sc/source/ui/drawfunc.po2
-rw-r--r--source/pl/sc/source/ui/formdlg.po2
-rw-r--r--source/pl/sc/source/ui/miscdlgs.po9
-rw-r--r--source/pl/sc/source/ui/navipi.po2
-rw-r--r--source/pl/sc/source/ui/optdlg.po2
-rw-r--r--source/pl/sc/source/ui/pagedlg.po2
-rw-r--r--source/pl/sc/source/ui/src.po397
-rw-r--r--source/pl/sc/source/ui/styleui.po4
-rw-r--r--source/pl/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/pl/scaddins/source/analysis.po2
-rw-r--r--source/pl/scaddins/source/datefunc.po2
-rw-r--r--source/pl/scaddins/source/pricing.po164
-rw-r--r--source/pl/sccomp/source/solver.po2
-rw-r--r--source/pl/scp2/source/accessories.po2
-rw-r--r--source/pl/scp2/source/activex.po2
-rw-r--r--source/pl/scp2/source/base.po2
-rw-r--r--source/pl/scp2/source/calc.po2
-rw-r--r--source/pl/scp2/source/draw.po2
-rw-r--r--source/pl/scp2/source/extensions.po2
-rw-r--r--source/pl/scp2/source/gnome.po2
-rw-r--r--source/pl/scp2/source/graphicfilter.po2
-rw-r--r--source/pl/scp2/source/impress.po2
-rw-r--r--source/pl/scp2/source/javafilter.po2
-rw-r--r--source/pl/scp2/source/kde.po2
-rw-r--r--source/pl/scp2/source/math.po2
-rw-r--r--source/pl/scp2/source/onlineupdate.po2
-rw-r--r--source/pl/scp2/source/ooo.po4
-rw-r--r--source/pl/scp2/source/python.po22
-rw-r--r--source/pl/scp2/source/quickstart.po2
-rw-r--r--source/pl/scp2/source/sdkoo.po2
-rw-r--r--source/pl/scp2/source/smoketest.po2
-rw-r--r--source/pl/scp2/source/stdlibs.po2
-rw-r--r--source/pl/scp2/source/tde.po2
-rw-r--r--source/pl/scp2/source/winexplorerext.po2
-rw-r--r--source/pl/scp2/source/writer.po2
-rw-r--r--source/pl/scp2/source/xsltfilter.po2
-rw-r--r--source/pl/sd/source/core.po2
-rw-r--r--source/pl/sd/source/filter/html.po2
-rw-r--r--source/pl/sd/source/ui/accessibility.po2
-rw-r--r--source/pl/sd/source/ui/animations.po2
-rw-r--r--source/pl/sd/source/ui/annotations.po2
-rw-r--r--source/pl/sd/source/ui/app.po4
-rw-r--r--source/pl/sd/source/ui/dlg.po14
-rw-r--r--source/pl/sd/source/ui/slideshow.po2
-rw-r--r--source/pl/sd/source/ui/table.po2
-rw-r--r--source/pl/sd/source/ui/view.po2
-rw-r--r--source/pl/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/pl/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/pl/sdext/source/minimizer.po2
-rw-r--r--source/pl/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pl/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po13
-rw-r--r--source/pl/setup_native/source/mac.po2
-rw-r--r--source/pl/sfx2/source/appl.po2
-rw-r--r--source/pl/sfx2/source/bastyp.po2
-rw-r--r--source/pl/sfx2/source/control.po25
-rw-r--r--source/pl/sfx2/source/dialog.po48
-rw-r--r--source/pl/sfx2/source/doc.po134
-rw-r--r--source/pl/sfx2/source/menu.po2
-rw-r--r--source/pl/sfx2/source/view.po2
-rw-r--r--source/pl/sfx2/uiconfig/ui.po4
-rw-r--r--source/pl/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/pl/starmath/source.po2
-rw-r--r--source/pl/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/pl/svl/source/items.po2
-rw-r--r--source/pl/svl/source/misc.po2
-rw-r--r--source/pl/svtools/source/contnr.po2
-rw-r--r--source/pl/svtools/source/control.po2
-rw-r--r--source/pl/svtools/source/dialogs.po2
-rw-r--r--source/pl/svtools/source/java.po2
-rw-r--r--source/pl/svtools/source/misc.po4
-rw-r--r--source/pl/svtools/source/toolpanel.po2
-rw-r--r--source/pl/svtools/uiconfig/ui.po53
-rw-r--r--source/pl/svx/inc.po4
-rw-r--r--source/pl/svx/source/accessibility.po2
-rw-r--r--source/pl/svx/source/core.po2
-rw-r--r--source/pl/svx/source/dialog.po225
-rw-r--r--source/pl/svx/source/engine3d.po2
-rw-r--r--source/pl/svx/source/fmcomp.po2
-rw-r--r--source/pl/svx/source/form.po9
-rw-r--r--source/pl/svx/source/gallery2.po2
-rw-r--r--source/pl/svx/source/items.po2
-rw-r--r--source/pl/svx/source/src.po2
-rw-r--r--source/pl/svx/source/stbctrls.po2
-rw-r--r--source/pl/svx/source/svdraw.po2
-rw-r--r--source/pl/svx/source/table.po2
-rw-r--r--source/pl/svx/source/tbxctrls.po2
-rw-r--r--source/pl/svx/source/toolbars.po2
-rw-r--r--source/pl/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/pl/svx/uiconfig/ui.po206
-rw-r--r--source/pl/sw/source/core/layout.po2
-rw-r--r--source/pl/sw/source/core/undo.po16
-rw-r--r--source/pl/sw/source/core/unocore.po2
-rw-r--r--source/pl/sw/source/ui/app.po14
-rw-r--r--source/pl/sw/source/ui/chrdlg.po2
-rw-r--r--source/pl/sw/source/ui/config.po14
-rw-r--r--source/pl/sw/source/ui/dbui.po2
-rw-r--r--source/pl/sw/source/ui/dialog.po2
-rw-r--r--source/pl/sw/source/ui/dochdl.po2
-rw-r--r--source/pl/sw/source/ui/docvw.po4
-rw-r--r--source/pl/sw/source/ui/envelp.po2
-rw-r--r--source/pl/sw/source/ui/fldui.po10
-rw-r--r--source/pl/sw/source/ui/fmtui.po2
-rw-r--r--source/pl/sw/source/ui/frmdlg.po10
-rw-r--r--source/pl/sw/source/ui/globdoc.po2
-rw-r--r--source/pl/sw/source/ui/index.po2
-rw-r--r--source/pl/sw/source/ui/lingu.po2
-rw-r--r--source/pl/sw/source/ui/misc.po12
-rw-r--r--source/pl/sw/source/ui/ribbar.po2
-rw-r--r--source/pl/sw/source/ui/shells.po11
-rw-r--r--source/pl/sw/source/ui/smartmenu.po2
-rw-r--r--source/pl/sw/source/ui/table.po2
-rw-r--r--source/pl/sw/source/ui/uiview.po9
-rw-r--r--source/pl/sw/source/ui/utlui.po12
-rw-r--r--source/pl/sw/source/ui/web.po2
-rw-r--r--source/pl/sw/source/ui/wrtsh.po2
-rw-r--r--source/pl/sw/uiconfig/sw/ui.po278
-rw-r--r--source/pl/sw/uiconfig/swriter/ui.po10
-rw-r--r--source/pl/swext/mediawiki/help.po2
-rw-r--r--source/pl/swext/mediawiki/src.po2
-rw-r--r--source/pl/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/pl/sysui/desktop/share.po2
-rw-r--r--source/pl/tubes/uiconfig/ui.po2
-rw-r--r--source/pl/uui/source.po12
-rw-r--r--source/pl/vcl/qa/cppunit/builder.po2
-rw-r--r--source/pl/vcl/source/edit.po2
-rw-r--r--source/pl/vcl/source/src.po2
-rw-r--r--source/pl/vcl/uiconfig/ui.po10
-rw-r--r--source/pl/wizards/source/euro.po2
-rw-r--r--source/pl/wizards/source/formwizard.po12
-rw-r--r--source/pl/wizards/source/importwizard.po2
-rw-r--r--source/pl/wizards/source/template.po2
-rw-r--r--source/pl/xmlsecurity/source/component.po2
-rw-r--r--source/pl/xmlsecurity/source/dialogs.po2
-rw-r--r--source/pt-BR/accessibility/source/helper.po2
-rw-r--r--source/pt-BR/android/sdremote/res/values.po2
-rw-r--r--source/pt-BR/avmedia/source/framework.po2
-rw-r--r--source/pt-BR/avmedia/source/viewer.po2
-rw-r--r--source/pt-BR/basctl/source/basicide.po2
-rw-r--r--source/pt-BR/basctl/source/dlged.po2
-rw-r--r--source/pt-BR/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/pt-BR/basic/source/classes.po2
-rw-r--r--source/pt-BR/basic/source/sbx.po2
-rw-r--r--source/pt-BR/chart2/source/controller/dialogs.po2
-rw-r--r--source/pt-BR/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/connectivity/source/resource.po2
-rw-r--r--source/pt-BR/cui/source/customize.po2
-rw-r--r--source/pt-BR/cui/source/dialogs.po2
-rw-r--r--source/pt-BR/cui/source/options.po4
-rw-r--r--source/pt-BR/cui/source/tabpages.po10
-rw-r--r--source/pt-BR/cui/uiconfig/ui.po4
-rw-r--r--source/pt-BR/dbaccess/source/core/resource.po2
-rw-r--r--source/pt-BR/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/pt-BR/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/pt-BR/dbaccess/source/ui/app.po2
-rw-r--r--source/pt-BR/dbaccess/source/ui/browser.po2
-rw-r--r--source/pt-BR/dbaccess/source/ui/control.po2
-rw-r--r--source/pt-BR/dbaccess/source/ui/dlg.po2
-rw-r--r--source/pt-BR/dbaccess/source/ui/inc.po2
-rw-r--r--source/pt-BR/dbaccess/source/ui/misc.po2
-rw-r--r--source/pt-BR/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/pt-BR/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/pt-BR/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/pt-BR/dbaccess/source/ui/uno.po2
-rw-r--r--source/pt-BR/desktop/source/app.po2
-rw-r--r--source/pt-BR/desktop/source/deployment/gui.po2
-rw-r--r--source/pt-BR/desktop/source/deployment/manager.po2
-rw-r--r--source/pt-BR/desktop/source/deployment/misc.po2
-rw-r--r--source/pt-BR/desktop/source/deployment/registry.po2
-rw-r--r--source/pt-BR/desktop/source/deployment/registry/component.po2
-rw-r--r--source/pt-BR/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/pt-BR/desktop/source/deployment/registry/help.po2
-rw-r--r--source/pt-BR/desktop/source/deployment/registry/package.po2
-rw-r--r--source/pt-BR/desktop/source/deployment/registry/script.po2
-rw-r--r--source/pt-BR/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/pt-BR/desktop/source/deployment/unopkg.po2
-rw-r--r--source/pt-BR/desktop/uiconfig/ui.po2
-rw-r--r--source/pt-BR/dictionaries/af_ZA.po2
-rw-r--r--source/pt-BR/dictionaries/an_ES.po2
-rw-r--r--source/pt-BR/dictionaries/ar.po2
-rw-r--r--source/pt-BR/dictionaries/be_BY.po2
-rw-r--r--source/pt-BR/dictionaries/bg_BG.po2
-rw-r--r--source/pt-BR/dictionaries/bn_BD.po2
-rw-r--r--source/pt-BR/dictionaries/br_FR.po2
-rw-r--r--source/pt-BR/dictionaries/ca.po2
-rw-r--r--source/pt-BR/dictionaries/cs_CZ.po2
-rw-r--r--source/pt-BR/dictionaries/da_DK.po2
-rw-r--r--source/pt-BR/dictionaries/de.po2
-rw-r--r--source/pt-BR/dictionaries/el_GR.po2
-rw-r--r--source/pt-BR/dictionaries/en.po2
-rw-r--r--source/pt-BR/dictionaries/en/dialog.po2
-rw-r--r--source/pt-BR/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt-BR/dictionaries/es.po2
-rw-r--r--source/pt-BR/dictionaries/et_EE.po2
-rw-r--r--source/pt-BR/dictionaries/fr_FR.po2
-rw-r--r--source/pt-BR/dictionaries/gd_GB.po2
-rw-r--r--source/pt-BR/dictionaries/gl.po2
-rw-r--r--source/pt-BR/dictionaries/gu_IN.po2
-rw-r--r--source/pt-BR/dictionaries/he_IL.po2
-rw-r--r--source/pt-BR/dictionaries/hi_IN.po2
-rw-r--r--source/pt-BR/dictionaries/hr_HR.po2
-rw-r--r--source/pt-BR/dictionaries/hu_HU.po2
-rw-r--r--source/pt-BR/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/pt-BR/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt-BR/dictionaries/it_IT.po2
-rw-r--r--source/pt-BR/dictionaries/ku_TR.po2
-rw-r--r--source/pt-BR/dictionaries/lt_LT.po2
-rw-r--r--source/pt-BR/dictionaries/lv_LV.po2
-rw-r--r--source/pt-BR/dictionaries/ne_NP.po2
-rw-r--r--source/pt-BR/dictionaries/nl_NL.po2
-rw-r--r--source/pt-BR/dictionaries/no.po2
-rw-r--r--source/pt-BR/dictionaries/oc_FR.po2
-rw-r--r--source/pt-BR/dictionaries/pl_PL.po2
-rw-r--r--source/pt-BR/dictionaries/pt_BR.po2
-rw-r--r--source/pt-BR/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/pt-BR/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt-BR/dictionaries/pt_PT.po2
-rw-r--r--source/pt-BR/dictionaries/ro.po2
-rw-r--r--source/pt-BR/dictionaries/ru_RU.po2
-rw-r--r--source/pt-BR/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/pt-BR/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt-BR/dictionaries/si_LK.po2
-rw-r--r--source/pt-BR/dictionaries/sk_SK.po2
-rw-r--r--source/pt-BR/dictionaries/sl_SI.po2
-rw-r--r--source/pt-BR/dictionaries/sr.po2
-rw-r--r--source/pt-BR/dictionaries/sv_SE.po2
-rw-r--r--source/pt-BR/dictionaries/sw_TZ.po2
-rw-r--r--source/pt-BR/dictionaries/te_IN.po2
-rw-r--r--source/pt-BR/dictionaries/th_TH.po2
-rw-r--r--source/pt-BR/dictionaries/uk_UA.po2
-rw-r--r--source/pt-BR/dictionaries/vi.po2
-rw-r--r--source/pt-BR/dictionaries/zu_ZA.po2
-rw-r--r--source/pt-BR/editeng/source/accessibility.po2
-rw-r--r--source/pt-BR/editeng/source/editeng.po2
-rw-r--r--source/pt-BR/editeng/source/items.po2
-rw-r--r--source/pt-BR/editeng/source/misc.po2
-rw-r--r--source/pt-BR/editeng/source/outliner.po2
-rw-r--r--source/pt-BR/extensions/source/abpilot.po2
-rw-r--r--source/pt-BR/extensions/source/bibliography.po2
-rw-r--r--source/pt-BR/extensions/source/dbpilots.po2
-rw-r--r--source/pt-BR/extensions/source/propctrlr.po2
-rw-r--r--source/pt-BR/extensions/source/scanner.po2
-rw-r--r--source/pt-BR/extensions/source/update/check.po2
-rw-r--r--source/pt-BR/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/pt-BR/filter/source/config/fragments/filters.po2
-rw-r--r--source/pt-BR/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/pt-BR/filter/source/config/fragments/types.po2
-rw-r--r--source/pt-BR/filter/source/flash.po2
-rw-r--r--source/pt-BR/filter/source/graphicfilter/eps.po2
-rw-r--r--source/pt-BR/filter/source/pdf.po2
-rw-r--r--source/pt-BR/filter/source/t602.po2
-rw-r--r--source/pt-BR/filter/source/xsltdialog.po2
-rw-r--r--source/pt-BR/filter/uiconfig/ui.po2
-rw-r--r--source/pt-BR/forms/source/resource.po2
-rw-r--r--source/pt-BR/formula/source/core/resource.po44
-rw-r--r--source/pt-BR/formula/source/ui/dlg.po2
-rw-r--r--source/pt-BR/fpicker/source/office.po2
-rw-r--r--source/pt-BR/framework/source/classes.po2
-rw-r--r--source/pt-BR/framework/source/services.po2
-rw-r--r--source/pt-BR/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--source/pt-BR/librelogo/source/pythonpath.po262
-rw-r--r--source/pt-BR/mysqlc/source.po2
-rw-r--r--source/pt-BR/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt-BR/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/pt-BR/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/pt-BR/nlpsolver/src/locale.po2
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/pt-BR/padmin/source.po4
-rw-r--r--source/pt-BR/readlicense_oo/docs.po2
-rw-r--r--source/pt-BR/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/pt-BR/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt-BR/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/pt-BR/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/pt-BR/reportbuilder/util.po2
-rw-r--r--source/pt-BR/reportdesign/source/core/resource.po2
-rw-r--r--source/pt-BR/reportdesign/source/ui/dlg.po2
-rw-r--r--source/pt-BR/reportdesign/source/ui/inspection.po2
-rw-r--r--source/pt-BR/reportdesign/source/ui/report.po2
-rw-r--r--source/pt-BR/sc/source/core/src.po2
-rw-r--r--source/pt-BR/sc/source/ui/cctrl.po2
-rw-r--r--source/pt-BR/sc/source/ui/dbgui.po2
-rw-r--r--source/pt-BR/sc/source/ui/docshell.po2
-rw-r--r--source/pt-BR/sc/source/ui/drawfunc.po2
-rw-r--r--source/pt-BR/sc/source/ui/formdlg.po2
-rw-r--r--source/pt-BR/sc/source/ui/miscdlgs.po2
-rw-r--r--source/pt-BR/sc/source/ui/navipi.po2
-rw-r--r--source/pt-BR/sc/source/ui/optdlg.po2
-rw-r--r--source/pt-BR/sc/source/ui/pagedlg.po2
-rw-r--r--source/pt-BR/sc/source/ui/src.po407
-rw-r--r--source/pt-BR/sc/source/ui/styleui.po4
-rw-r--r--source/pt-BR/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/pt-BR/scaddins/source/analysis.po9
-rw-r--r--source/pt-BR/scaddins/source/datefunc.po2
-rw-r--r--source/pt-BR/scaddins/source/pricing.po88
-rw-r--r--source/pt-BR/sccomp/source/solver.po2
-rw-r--r--source/pt-BR/scp2/source/accessories.po2
-rw-r--r--source/pt-BR/scp2/source/activex.po2
-rw-r--r--source/pt-BR/scp2/source/base.po2
-rw-r--r--source/pt-BR/scp2/source/calc.po2
-rw-r--r--source/pt-BR/scp2/source/draw.po2
-rw-r--r--source/pt-BR/scp2/source/extensions.po2
-rw-r--r--source/pt-BR/scp2/source/gnome.po2
-rw-r--r--source/pt-BR/scp2/source/graphicfilter.po2
-rw-r--r--source/pt-BR/scp2/source/impress.po2
-rw-r--r--source/pt-BR/scp2/source/javafilter.po2
-rw-r--r--source/pt-BR/scp2/source/kde.po2
-rw-r--r--source/pt-BR/scp2/source/math.po2
-rw-r--r--source/pt-BR/scp2/source/onlineupdate.po2
-rw-r--r--source/pt-BR/scp2/source/ooo.po4
-rw-r--r--source/pt-BR/scp2/source/python.po22
-rw-r--r--source/pt-BR/scp2/source/quickstart.po2
-rw-r--r--source/pt-BR/scp2/source/sdkoo.po2
-rw-r--r--source/pt-BR/scp2/source/smoketest.po2
-rw-r--r--source/pt-BR/scp2/source/stdlibs.po2
-rw-r--r--source/pt-BR/scp2/source/tde.po2
-rw-r--r--source/pt-BR/scp2/source/winexplorerext.po2
-rw-r--r--source/pt-BR/scp2/source/writer.po2
-rw-r--r--source/pt-BR/scp2/source/xsltfilter.po2
-rw-r--r--source/pt-BR/sd/source/core.po2
-rw-r--r--source/pt-BR/sd/source/filter/html.po2
-rw-r--r--source/pt-BR/sd/source/ui/accessibility.po2
-rw-r--r--source/pt-BR/sd/source/ui/animations.po2
-rw-r--r--source/pt-BR/sd/source/ui/annotations.po2
-rw-r--r--source/pt-BR/sd/source/ui/app.po10
-rw-r--r--source/pt-BR/sd/source/ui/dlg.po2
-rw-r--r--source/pt-BR/sd/source/ui/slideshow.po2
-rw-r--r--source/pt-BR/sd/source/ui/table.po2
-rw-r--r--source/pt-BR/sd/source/ui/view.po2
-rw-r--r--source/pt-BR/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/pt-BR/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/pt-BR/sdext/source/minimizer.po2
-rw-r--r--source/pt-BR/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt-BR/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/pt-BR/setup_native/source/mac.po2
-rw-r--r--source/pt-BR/sfx2/source/appl.po2
-rw-r--r--source/pt-BR/sfx2/source/bastyp.po2
-rw-r--r--source/pt-BR/sfx2/source/control.po25
-rw-r--r--source/pt-BR/sfx2/source/dialog.po48
-rw-r--r--source/pt-BR/sfx2/source/doc.po126
-rw-r--r--source/pt-BR/sfx2/source/menu.po2
-rw-r--r--source/pt-BR/sfx2/source/view.po2
-rw-r--r--source/pt-BR/sfx2/uiconfig/ui.po4
-rw-r--r--source/pt-BR/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/pt-BR/starmath/source.po2
-rw-r--r--source/pt-BR/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/pt-BR/svl/source/items.po2
-rw-r--r--source/pt-BR/svl/source/misc.po2
-rw-r--r--source/pt-BR/svtools/source/contnr.po2
-rw-r--r--source/pt-BR/svtools/source/control.po2
-rw-r--r--source/pt-BR/svtools/source/dialogs.po2
-rw-r--r--source/pt-BR/svtools/source/java.po2
-rw-r--r--source/pt-BR/svtools/source/misc.po4
-rw-r--r--source/pt-BR/svtools/source/toolpanel.po2
-rw-r--r--source/pt-BR/svtools/uiconfig/ui.po51
-rw-r--r--source/pt-BR/svx/inc.po4
-rw-r--r--source/pt-BR/svx/source/accessibility.po2
-rw-r--r--source/pt-BR/svx/source/core.po2
-rw-r--r--source/pt-BR/svx/source/dialog.po217
-rw-r--r--source/pt-BR/svx/source/engine3d.po2
-rw-r--r--source/pt-BR/svx/source/fmcomp.po2
-rw-r--r--source/pt-BR/svx/source/form.po2
-rw-r--r--source/pt-BR/svx/source/gallery2.po2
-rw-r--r--source/pt-BR/svx/source/items.po2
-rw-r--r--source/pt-BR/svx/source/src.po2
-rw-r--r--source/pt-BR/svx/source/stbctrls.po2
-rw-r--r--source/pt-BR/svx/source/svdraw.po2
-rw-r--r--source/pt-BR/svx/source/table.po2
-rw-r--r--source/pt-BR/svx/source/tbxctrls.po2
-rw-r--r--source/pt-BR/svx/source/toolbars.po2
-rw-r--r--source/pt-BR/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/pt-BR/svx/uiconfig/ui.po206
-rw-r--r--source/pt-BR/sw/source/core/layout.po2
-rw-r--r--source/pt-BR/sw/source/core/undo.po2
-rw-r--r--source/pt-BR/sw/source/core/unocore.po2
-rw-r--r--source/pt-BR/sw/source/ui/app.po4
-rw-r--r--source/pt-BR/sw/source/ui/chrdlg.po2
-rw-r--r--source/pt-BR/sw/source/ui/config.po2
-rw-r--r--source/pt-BR/sw/source/ui/dbui.po2
-rw-r--r--source/pt-BR/sw/source/ui/dialog.po2
-rw-r--r--source/pt-BR/sw/source/ui/dochdl.po2
-rw-r--r--source/pt-BR/sw/source/ui/docvw.po2
-rw-r--r--source/pt-BR/sw/source/ui/envelp.po2
-rw-r--r--source/pt-BR/sw/source/ui/fldui.po2
-rw-r--r--source/pt-BR/sw/source/ui/fmtui.po2
-rw-r--r--source/pt-BR/sw/source/ui/frmdlg.po2
-rw-r--r--source/pt-BR/sw/source/ui/globdoc.po2
-rw-r--r--source/pt-BR/sw/source/ui/index.po2
-rw-r--r--source/pt-BR/sw/source/ui/lingu.po2
-rw-r--r--source/pt-BR/sw/source/ui/misc.po2
-rw-r--r--source/pt-BR/sw/source/ui/ribbar.po2
-rw-r--r--source/pt-BR/sw/source/ui/shells.po2
-rw-r--r--source/pt-BR/sw/source/ui/smartmenu.po2
-rw-r--r--source/pt-BR/sw/source/ui/table.po2
-rw-r--r--source/pt-BR/sw/source/ui/uiview.po2
-rw-r--r--source/pt-BR/sw/source/ui/utlui.po2
-rw-r--r--source/pt-BR/sw/source/ui/web.po2
-rw-r--r--source/pt-BR/sw/source/ui/wrtsh.po2
-rw-r--r--source/pt-BR/sw/uiconfig/sw/ui.po278
-rw-r--r--source/pt-BR/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/pt-BR/swext/mediawiki/help.po2
-rw-r--r--source/pt-BR/swext/mediawiki/src.po2
-rw-r--r--source/pt-BR/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt-BR/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/pt-BR/sysui/desktop/share.po2
-rw-r--r--source/pt-BR/tubes/uiconfig/ui.po2
-rw-r--r--source/pt-BR/uui/source.po2
-rw-r--r--source/pt-BR/vcl/qa/cppunit/builder.po2
-rw-r--r--source/pt-BR/vcl/source/edit.po2
-rw-r--r--source/pt-BR/vcl/source/src.po2
-rw-r--r--source/pt-BR/vcl/uiconfig/ui.po2
-rw-r--r--source/pt-BR/wizards/source/euro.po2
-rw-r--r--source/pt-BR/wizards/source/formwizard.po2
-rw-r--r--source/pt-BR/wizards/source/importwizard.po2
-rw-r--r--source/pt-BR/wizards/source/template.po2
-rw-r--r--source/pt-BR/xmlsecurity/source/component.po2
-rw-r--r--source/pt-BR/xmlsecurity/source/dialogs.po2
-rw-r--r--source/pt/accessibility/source/helper.po2
-rw-r--r--source/pt/android/sdremote/res/values.po2
-rw-r--r--source/pt/avmedia/source/framework.po2
-rw-r--r--source/pt/avmedia/source/viewer.po2
-rw-r--r--source/pt/basctl/source/basicide.po10
-rw-r--r--source/pt/basctl/source/dlged.po2
-rw-r--r--source/pt/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/pt/basic/source/classes.po2
-rw-r--r--source/pt/basic/source/sbx.po2
-rw-r--r--source/pt/chart2/source/controller/dialogs.po2
-rw-r--r--source/pt/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/connectivity/source/resource.po4
-rw-r--r--source/pt/cui/source/customize.po2
-rw-r--r--source/pt/cui/source/dialogs.po10
-rw-r--r--source/pt/cui/source/options.po10
-rw-r--r--source/pt/cui/source/tabpages.po12
-rw-r--r--source/pt/cui/uiconfig/ui.po4
-rw-r--r--source/pt/dbaccess/source/core/resource.po2
-rw-r--r--source/pt/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/pt/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/pt/dbaccess/source/ui/app.po8
-rw-r--r--source/pt/dbaccess/source/ui/browser.po10
-rw-r--r--source/pt/dbaccess/source/ui/control.po2
-rw-r--r--source/pt/dbaccess/source/ui/dlg.po4
-rw-r--r--source/pt/dbaccess/source/ui/inc.po2
-rw-r--r--source/pt/dbaccess/source/ui/misc.po2
-rw-r--r--source/pt/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/pt/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/pt/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/pt/dbaccess/source/ui/uno.po2
-rw-r--r--source/pt/desktop/source/app.po2
-rw-r--r--source/pt/desktop/source/deployment/gui.po2
-rw-r--r--source/pt/desktop/source/deployment/manager.po2
-rw-r--r--source/pt/desktop/source/deployment/misc.po2
-rw-r--r--source/pt/desktop/source/deployment/registry.po2
-rw-r--r--source/pt/desktop/source/deployment/registry/component.po2
-rw-r--r--source/pt/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/pt/desktop/source/deployment/registry/help.po2
-rw-r--r--source/pt/desktop/source/deployment/registry/package.po2
-rw-r--r--source/pt/desktop/source/deployment/registry/script.po2
-rw-r--r--source/pt/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/pt/desktop/source/deployment/unopkg.po2
-rw-r--r--source/pt/desktop/uiconfig/ui.po2
-rw-r--r--source/pt/dictionaries/af_ZA.po2
-rw-r--r--source/pt/dictionaries/an_ES.po2
-rw-r--r--source/pt/dictionaries/ar.po2
-rw-r--r--source/pt/dictionaries/be_BY.po2
-rw-r--r--source/pt/dictionaries/bg_BG.po2
-rw-r--r--source/pt/dictionaries/bn_BD.po2
-rw-r--r--source/pt/dictionaries/br_FR.po2
-rw-r--r--source/pt/dictionaries/ca.po2
-rw-r--r--source/pt/dictionaries/cs_CZ.po2
-rw-r--r--source/pt/dictionaries/da_DK.po2
-rw-r--r--source/pt/dictionaries/de.po2
-rw-r--r--source/pt/dictionaries/el_GR.po2
-rw-r--r--source/pt/dictionaries/en.po2
-rw-r--r--source/pt/dictionaries/en/dialog.po2
-rw-r--r--source/pt/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt/dictionaries/es.po2
-rw-r--r--source/pt/dictionaries/et_EE.po2
-rw-r--r--source/pt/dictionaries/fr_FR.po2
-rw-r--r--source/pt/dictionaries/gd_GB.po2
-rw-r--r--source/pt/dictionaries/gl.po2
-rw-r--r--source/pt/dictionaries/gu_IN.po2
-rw-r--r--source/pt/dictionaries/he_IL.po2
-rw-r--r--source/pt/dictionaries/hi_IN.po2
-rw-r--r--source/pt/dictionaries/hr_HR.po2
-rw-r--r--source/pt/dictionaries/hu_HU.po2
-rw-r--r--source/pt/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/pt/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt/dictionaries/it_IT.po2
-rw-r--r--source/pt/dictionaries/ku_TR.po2
-rw-r--r--source/pt/dictionaries/lt_LT.po2
-rw-r--r--source/pt/dictionaries/lv_LV.po2
-rw-r--r--source/pt/dictionaries/ne_NP.po2
-rw-r--r--source/pt/dictionaries/nl_NL.po2
-rw-r--r--source/pt/dictionaries/no.po2
-rw-r--r--source/pt/dictionaries/oc_FR.po2
-rw-r--r--source/pt/dictionaries/pl_PL.po2
-rw-r--r--source/pt/dictionaries/pt_BR.po2
-rw-r--r--source/pt/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/pt/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt/dictionaries/pt_PT.po2
-rw-r--r--source/pt/dictionaries/ro.po2
-rw-r--r--source/pt/dictionaries/ru_RU.po2
-rw-r--r--source/pt/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/pt/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt/dictionaries/si_LK.po2
-rw-r--r--source/pt/dictionaries/sk_SK.po2
-rw-r--r--source/pt/dictionaries/sl_SI.po2
-rw-r--r--source/pt/dictionaries/sr.po2
-rw-r--r--source/pt/dictionaries/sv_SE.po2
-rw-r--r--source/pt/dictionaries/sw_TZ.po2
-rw-r--r--source/pt/dictionaries/te_IN.po2
-rw-r--r--source/pt/dictionaries/th_TH.po2
-rw-r--r--source/pt/dictionaries/uk_UA.po2
-rw-r--r--source/pt/dictionaries/vi.po2
-rw-r--r--source/pt/dictionaries/zu_ZA.po2
-rw-r--r--source/pt/editeng/source/accessibility.po2
-rw-r--r--source/pt/editeng/source/editeng.po2
-rw-r--r--source/pt/editeng/source/items.po4
-rw-r--r--source/pt/editeng/source/misc.po2
-rw-r--r--source/pt/editeng/source/outliner.po2
-rw-r--r--source/pt/extensions/source/abpilot.po2
-rw-r--r--source/pt/extensions/source/bibliography.po2
-rw-r--r--source/pt/extensions/source/dbpilots.po9
-rw-r--r--source/pt/extensions/source/propctrlr.po12
-rw-r--r--source/pt/extensions/source/scanner.po2
-rw-r--r--source/pt/extensions/source/update/check.po7
-rw-r--r--source/pt/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/pt/filter/source/config/fragments/filters.po2
-rw-r--r--source/pt/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/pt/filter/source/config/fragments/types.po2
-rw-r--r--source/pt/filter/source/flash.po2
-rw-r--r--source/pt/filter/source/graphicfilter/eps.po2
-rw-r--r--source/pt/filter/source/pdf.po4
-rw-r--r--source/pt/filter/source/t602.po2
-rw-r--r--source/pt/filter/source/xsltdialog.po2
-rw-r--r--source/pt/filter/uiconfig/ui.po2
-rw-r--r--source/pt/forms/source/resource.po2
-rw-r--r--source/pt/formula/source/core/resource.po46
-rw-r--r--source/pt/formula/source/ui/dlg.po2
-rw-r--r--source/pt/fpicker/source/office.po2
-rw-r--r--source/pt/framework/source/classes.po2
-rw-r--r--source/pt/framework/source/services.po2
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po84
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared/02.po8
-rw-r--r--source/pt/helpcontent2/source/text/scalc.po8
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po105
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/pt/helpcontent2/source/text/schart/01.po14
-rw-r--r--source/pt/helpcontent2/source/text/shared.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po20
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po20
-rw-r--r--source/pt/helpcontent2/source/text/shared/05.po12
-rw-r--r--source/pt/helpcontent2/source/text/shared/explorer/database.po32
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po24
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/pt/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/pt/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/pt/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/pt/helpcontent2/source/text/swriter/02.po16
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po66
-rw-r--r--source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po14
-rw-r--r--source/pt/librelogo/source/pythonpath.po4
-rw-r--r--source/pt/mysqlc/source.po2
-rw-r--r--source/pt/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/pt/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/pt/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/pt/nlpsolver/src/locale.po2
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office.po36
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po39
-rw-r--r--source/pt/padmin/source.po14
-rw-r--r--source/pt/readlicense_oo/docs.po10
-rw-r--r--source/pt/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/pt/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/pt/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/pt/reportbuilder/util.po11
-rw-r--r--source/pt/reportdesign/source/core/resource.po2
-rw-r--r--source/pt/reportdesign/source/ui/dlg.po4
-rw-r--r--source/pt/reportdesign/source/ui/inspection.po2
-rw-r--r--source/pt/reportdesign/source/ui/report.po2
-rw-r--r--source/pt/sc/source/core/src.po2
-rw-r--r--source/pt/sc/source/ui/cctrl.po2
-rw-r--r--source/pt/sc/source/ui/dbgui.po10
-rw-r--r--source/pt/sc/source/ui/docshell.po2
-rw-r--r--source/pt/sc/source/ui/drawfunc.po2
-rw-r--r--source/pt/sc/source/ui/formdlg.po2
-rw-r--r--source/pt/sc/source/ui/miscdlgs.po2
-rw-r--r--source/pt/sc/source/ui/navipi.po2
-rw-r--r--source/pt/sc/source/ui/optdlg.po2
-rw-r--r--source/pt/sc/source/ui/pagedlg.po2
-rw-r--r--source/pt/sc/source/ui/src.po409
-rw-r--r--source/pt/sc/source/ui/styleui.po4
-rw-r--r--source/pt/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/pt/scaddins/source/analysis.po2
-rw-r--r--source/pt/scaddins/source/datefunc.po2
-rw-r--r--source/pt/scaddins/source/pricing.po4
-rw-r--r--source/pt/sccomp/source/solver.po2
-rw-r--r--source/pt/scp2/source/accessories.po2
-rw-r--r--source/pt/scp2/source/activex.po2
-rw-r--r--source/pt/scp2/source/base.po2
-rw-r--r--source/pt/scp2/source/calc.po2
-rw-r--r--source/pt/scp2/source/draw.po2
-rw-r--r--source/pt/scp2/source/extensions.po2
-rw-r--r--source/pt/scp2/source/gnome.po2
-rw-r--r--source/pt/scp2/source/graphicfilter.po2
-rw-r--r--source/pt/scp2/source/impress.po2
-rw-r--r--source/pt/scp2/source/javafilter.po2
-rw-r--r--source/pt/scp2/source/kde.po2
-rw-r--r--source/pt/scp2/source/math.po2
-rw-r--r--source/pt/scp2/source/onlineupdate.po2
-rw-r--r--source/pt/scp2/source/ooo.po4
-rw-r--r--source/pt/scp2/source/python.po22
-rw-r--r--source/pt/scp2/source/quickstart.po2
-rw-r--r--source/pt/scp2/source/sdkoo.po2
-rw-r--r--source/pt/scp2/source/smoketest.po2
-rw-r--r--source/pt/scp2/source/stdlibs.po2
-rw-r--r--source/pt/scp2/source/tde.po2
-rw-r--r--source/pt/scp2/source/winexplorerext.po2
-rw-r--r--source/pt/scp2/source/writer.po2
-rw-r--r--source/pt/scp2/source/xsltfilter.po2
-rw-r--r--source/pt/sd/source/core.po2
-rw-r--r--source/pt/sd/source/filter/html.po2
-rw-r--r--source/pt/sd/source/ui/accessibility.po2
-rw-r--r--source/pt/sd/source/ui/animations.po2
-rw-r--r--source/pt/sd/source/ui/annotations.po2
-rw-r--r--source/pt/sd/source/ui/app.po4
-rw-r--r--source/pt/sd/source/ui/dlg.po2
-rw-r--r--source/pt/sd/source/ui/slideshow.po2
-rw-r--r--source/pt/sd/source/ui/table.po2
-rw-r--r--source/pt/sd/source/ui/view.po2
-rw-r--r--source/pt/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/pt/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/pt/sdext/source/minimizer.po2
-rw-r--r--source/pt/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po4
-rw-r--r--source/pt/setup_native/source/mac.po2
-rw-r--r--source/pt/sfx2/source/appl.po2
-rw-r--r--source/pt/sfx2/source/bastyp.po2
-rw-r--r--source/pt/sfx2/source/control.po25
-rw-r--r--source/pt/sfx2/source/dialog.po48
-rw-r--r--source/pt/sfx2/source/doc.po126
-rw-r--r--source/pt/sfx2/source/menu.po2
-rw-r--r--source/pt/sfx2/source/view.po2
-rw-r--r--source/pt/sfx2/uiconfig/ui.po4
-rw-r--r--source/pt/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/pt/starmath/source.po14
-rw-r--r--source/pt/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/pt/svl/source/items.po2
-rw-r--r--source/pt/svl/source/misc.po2
-rw-r--r--source/pt/svtools/source/contnr.po2
-rw-r--r--source/pt/svtools/source/control.po2
-rw-r--r--source/pt/svtools/source/dialogs.po2
-rw-r--r--source/pt/svtools/source/java.po2
-rw-r--r--source/pt/svtools/source/misc.po4
-rw-r--r--source/pt/svtools/source/toolpanel.po2
-rw-r--r--source/pt/svtools/uiconfig/ui.po51
-rw-r--r--source/pt/svx/inc.po4
-rw-r--r--source/pt/svx/source/accessibility.po4
-rw-r--r--source/pt/svx/source/core.po2
-rw-r--r--source/pt/svx/source/dialog.po219
-rw-r--r--source/pt/svx/source/engine3d.po2
-rw-r--r--source/pt/svx/source/fmcomp.po2
-rw-r--r--source/pt/svx/source/form.po2
-rw-r--r--source/pt/svx/source/gallery2.po2
-rw-r--r--source/pt/svx/source/items.po2
-rw-r--r--source/pt/svx/source/src.po2
-rw-r--r--source/pt/svx/source/stbctrls.po4
-rw-r--r--source/pt/svx/source/svdraw.po2
-rw-r--r--source/pt/svx/source/table.po2
-rw-r--r--source/pt/svx/source/tbxctrls.po2
-rw-r--r--source/pt/svx/source/toolbars.po2
-rw-r--r--source/pt/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/pt/svx/uiconfig/ui.po206
-rw-r--r--source/pt/sw/source/core/layout.po2
-rw-r--r--source/pt/sw/source/core/undo.po2
-rw-r--r--source/pt/sw/source/core/unocore.po2
-rw-r--r--source/pt/sw/source/ui/app.po4
-rw-r--r--source/pt/sw/source/ui/chrdlg.po2
-rw-r--r--source/pt/sw/source/ui/config.po4
-rw-r--r--source/pt/sw/source/ui/dbui.po4
-rw-r--r--source/pt/sw/source/ui/dialog.po2
-rw-r--r--source/pt/sw/source/ui/dochdl.po2
-rw-r--r--source/pt/sw/source/ui/docvw.po2
-rw-r--r--source/pt/sw/source/ui/envelp.po2
-rw-r--r--source/pt/sw/source/ui/fldui.po2
-rw-r--r--source/pt/sw/source/ui/fmtui.po2
-rw-r--r--source/pt/sw/source/ui/frmdlg.po4
-rw-r--r--source/pt/sw/source/ui/globdoc.po2
-rw-r--r--source/pt/sw/source/ui/index.po4
-rw-r--r--source/pt/sw/source/ui/lingu.po2
-rw-r--r--source/pt/sw/source/ui/misc.po2
-rw-r--r--source/pt/sw/source/ui/ribbar.po12
-rw-r--r--source/pt/sw/source/ui/shells.po2
-rw-r--r--source/pt/sw/source/ui/smartmenu.po2
-rw-r--r--source/pt/sw/source/ui/table.po2
-rw-r--r--source/pt/sw/source/ui/uiview.po2
-rw-r--r--source/pt/sw/source/ui/utlui.po2
-rw-r--r--source/pt/sw/source/ui/web.po2
-rw-r--r--source/pt/sw/source/ui/wrtsh.po2
-rw-r--r--source/pt/sw/uiconfig/sw/ui.po278
-rw-r--r--source/pt/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/pt/swext/mediawiki/help.po2
-rw-r--r--source/pt/swext/mediawiki/src.po2
-rw-r--r--source/pt/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/pt/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/pt/sysui/desktop/share.po2
-rw-r--r--source/pt/tubes/uiconfig/ui.po2
-rw-r--r--source/pt/uui/source.po2
-rw-r--r--source/pt/vcl/qa/cppunit/builder.po2
-rw-r--r--source/pt/vcl/source/edit.po2
-rw-r--r--source/pt/vcl/source/src.po2
-rw-r--r--source/pt/vcl/uiconfig/ui.po2
-rw-r--r--source/pt/wizards/source/euro.po2
-rw-r--r--source/pt/wizards/source/formwizard.po2
-rw-r--r--source/pt/wizards/source/importwizard.po2
-rw-r--r--source/pt/wizards/source/template.po2
-rw-r--r--source/pt/xmlsecurity/source/component.po2
-rw-r--r--source/pt/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ro/accessibility/source/helper.po2
-rw-r--r--source/ro/android/sdremote/res/values.po4
-rw-r--r--source/ro/avmedia/source/framework.po2
-rw-r--r--source/ro/avmedia/source/viewer.po2
-rw-r--r--source/ro/basctl/source/basicide.po2
-rw-r--r--source/ro/basctl/source/dlged.po2
-rw-r--r--source/ro/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ro/basic/source/classes.po2
-rw-r--r--source/ro/basic/source/sbx.po2
-rw-r--r--source/ro/chart2/source/controller/dialogs.po2
-rw-r--r--source/ro/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/connectivity/source/resource.po2
-rw-r--r--source/ro/cui/source/customize.po2
-rw-r--r--source/ro/cui/source/dialogs.po10
-rw-r--r--source/ro/cui/source/options.po18
-rw-r--r--source/ro/cui/source/tabpages.po10
-rw-r--r--source/ro/cui/uiconfig/ui.po4
-rw-r--r--source/ro/dbaccess/source/core/resource.po2
-rw-r--r--source/ro/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ro/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ro/dbaccess/source/ui/app.po2
-rw-r--r--source/ro/dbaccess/source/ui/browser.po2
-rw-r--r--source/ro/dbaccess/source/ui/control.po2
-rw-r--r--source/ro/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ro/dbaccess/source/ui/inc.po2
-rw-r--r--source/ro/dbaccess/source/ui/misc.po2
-rw-r--r--source/ro/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ro/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ro/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ro/dbaccess/source/ui/uno.po2
-rw-r--r--source/ro/desktop/source/app.po2
-rw-r--r--source/ro/desktop/source/deployment/gui.po9
-rw-r--r--source/ro/desktop/source/deployment/manager.po2
-rw-r--r--source/ro/desktop/source/deployment/misc.po2
-rw-r--r--source/ro/desktop/source/deployment/registry.po2
-rw-r--r--source/ro/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ro/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ro/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ro/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ro/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ro/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ro/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ro/desktop/uiconfig/ui.po2
-rw-r--r--source/ro/dictionaries/af_ZA.po2
-rw-r--r--source/ro/dictionaries/an_ES.po2
-rw-r--r--source/ro/dictionaries/ar.po2
-rw-r--r--source/ro/dictionaries/be_BY.po2
-rw-r--r--source/ro/dictionaries/bg_BG.po2
-rw-r--r--source/ro/dictionaries/bn_BD.po2
-rw-r--r--source/ro/dictionaries/br_FR.po2
-rw-r--r--source/ro/dictionaries/ca.po2
-rw-r--r--source/ro/dictionaries/cs_CZ.po2
-rw-r--r--source/ro/dictionaries/da_DK.po2
-rw-r--r--source/ro/dictionaries/de.po2
-rw-r--r--source/ro/dictionaries/el_GR.po2
-rw-r--r--source/ro/dictionaries/en.po2
-rw-r--r--source/ro/dictionaries/en/dialog.po2
-rw-r--r--source/ro/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ro/dictionaries/es.po2
-rw-r--r--source/ro/dictionaries/et_EE.po2
-rw-r--r--source/ro/dictionaries/fr_FR.po2
-rw-r--r--source/ro/dictionaries/gd_GB.po2
-rw-r--r--source/ro/dictionaries/gl.po2
-rw-r--r--source/ro/dictionaries/gu_IN.po2
-rw-r--r--source/ro/dictionaries/he_IL.po2
-rw-r--r--source/ro/dictionaries/hi_IN.po2
-rw-r--r--source/ro/dictionaries/hr_HR.po2
-rw-r--r--source/ro/dictionaries/hu_HU.po2
-rw-r--r--source/ro/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ro/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ro/dictionaries/it_IT.po2
-rw-r--r--source/ro/dictionaries/ku_TR.po2
-rw-r--r--source/ro/dictionaries/lt_LT.po2
-rw-r--r--source/ro/dictionaries/lv_LV.po2
-rw-r--r--source/ro/dictionaries/ne_NP.po2
-rw-r--r--source/ro/dictionaries/nl_NL.po2
-rw-r--r--source/ro/dictionaries/no.po2
-rw-r--r--source/ro/dictionaries/oc_FR.po2
-rw-r--r--source/ro/dictionaries/pl_PL.po2
-rw-r--r--source/ro/dictionaries/pt_BR.po2
-rw-r--r--source/ro/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ro/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ro/dictionaries/pt_PT.po2
-rw-r--r--source/ro/dictionaries/ro.po2
-rw-r--r--source/ro/dictionaries/ru_RU.po2
-rw-r--r--source/ro/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ro/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ro/dictionaries/si_LK.po2
-rw-r--r--source/ro/dictionaries/sk_SK.po2
-rw-r--r--source/ro/dictionaries/sl_SI.po2
-rw-r--r--source/ro/dictionaries/sr.po2
-rw-r--r--source/ro/dictionaries/sv_SE.po2
-rw-r--r--source/ro/dictionaries/sw_TZ.po2
-rw-r--r--source/ro/dictionaries/te_IN.po2
-rw-r--r--source/ro/dictionaries/th_TH.po2
-rw-r--r--source/ro/dictionaries/uk_UA.po2
-rw-r--r--source/ro/dictionaries/vi.po2
-rw-r--r--source/ro/dictionaries/zu_ZA.po2
-rw-r--r--source/ro/editeng/source/accessibility.po2
-rw-r--r--source/ro/editeng/source/editeng.po2
-rw-r--r--source/ro/editeng/source/items.po2
-rw-r--r--source/ro/editeng/source/misc.po2
-rw-r--r--source/ro/editeng/source/outliner.po2
-rw-r--r--source/ro/extensions/source/abpilot.po2
-rw-r--r--source/ro/extensions/source/bibliography.po2
-rw-r--r--source/ro/extensions/source/dbpilots.po2
-rw-r--r--source/ro/extensions/source/propctrlr.po2
-rw-r--r--source/ro/extensions/source/scanner.po2
-rw-r--r--source/ro/extensions/source/update/check.po2
-rw-r--r--source/ro/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ro/filter/source/config/fragments/filters.po22
-rw-r--r--source/ro/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ro/filter/source/config/fragments/types.po2
-rw-r--r--source/ro/filter/source/flash.po2
-rw-r--r--source/ro/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ro/filter/source/pdf.po2
-rw-r--r--source/ro/filter/source/t602.po2
-rw-r--r--source/ro/filter/source/xsltdialog.po2
-rw-r--r--source/ro/filter/uiconfig/ui.po2
-rw-r--r--source/ro/forms/source/resource.po2
-rw-r--r--source/ro/formula/source/core/resource.po46
-rw-r--r--source/ro/formula/source/ui/dlg.po2
-rw-r--r--source/ro/fpicker/source/office.po13
-rw-r--r--source/ro/framework/source/classes.po2
-rw-r--r--source/ro/framework/source/services.po12
-rw-r--r--source/ro/helpcontent2/source/auxiliary.po212
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/guide.po14
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po308
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared/02.po180
-rw-r--r--source/ro/helpcontent2/source/text/scalc.po158
-rw-r--r--source/ro/helpcontent2/source/text/scalc/00.po164
-rw-r--r--source/ro/helpcontent2/source/text/sdraw.po211
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po4601
-rw-r--r--source/ro/helpcontent2/source/text/shared/explorer/database.po1422
-rw-r--r--source/ro/helpcontent2/source/text/swriter.po319
-rw-r--r--source/ro/helpcontent2/source/text/swriter/01.po3224
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po1078
-rw-r--r--source/ro/instsetoo_native/inc_openoffice/windows/msi_languages.po16
-rw-r--r--source/ro/librelogo/source/pythonpath.po4
-rw-r--r--source/ro/mysqlc/source.po2
-rw-r--r--source/ro/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ro/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ro/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ro/nlpsolver/src/locale.po2
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po41
-rw-r--r--source/ro/padmin/source.po4
-rw-r--r--source/ro/readlicense_oo/docs.po8
-rw-r--r--source/ro/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ro/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ro/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ro/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ro/reportbuilder/util.po2
-rw-r--r--source/ro/reportdesign/source/core/resource.po2
-rw-r--r--source/ro/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ro/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ro/reportdesign/source/ui/report.po2
-rw-r--r--source/ro/sc/source/core/src.po2
-rw-r--r--source/ro/sc/source/ui/cctrl.po2
-rw-r--r--source/ro/sc/source/ui/dbgui.po2
-rw-r--r--source/ro/sc/source/ui/docshell.po2
-rw-r--r--source/ro/sc/source/ui/drawfunc.po2
-rw-r--r--source/ro/sc/source/ui/formdlg.po2
-rw-r--r--source/ro/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ro/sc/source/ui/navipi.po2
-rw-r--r--source/ro/sc/source/ui/optdlg.po2
-rw-r--r--source/ro/sc/source/ui/pagedlg.po2
-rw-r--r--source/ro/sc/source/ui/src.po409
-rw-r--r--source/ro/sc/source/ui/styleui.po4
-rw-r--r--source/ro/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/ro/scaddins/source/analysis.po2
-rw-r--r--source/ro/scaddins/source/datefunc.po2
-rw-r--r--source/ro/scaddins/source/pricing.po40
-rw-r--r--source/ro/sccomp/source/solver.po2
-rw-r--r--source/ro/scp2/source/accessories.po2
-rw-r--r--source/ro/scp2/source/activex.po2
-rw-r--r--source/ro/scp2/source/base.po2
-rw-r--r--source/ro/scp2/source/calc.po12
-rw-r--r--source/ro/scp2/source/draw.po10
-rw-r--r--source/ro/scp2/source/extensions.po2
-rw-r--r--source/ro/scp2/source/gnome.po2
-rw-r--r--source/ro/scp2/source/graphicfilter.po2
-rw-r--r--source/ro/scp2/source/impress.po10
-rw-r--r--source/ro/scp2/source/javafilter.po2
-rw-r--r--source/ro/scp2/source/kde.po2
-rw-r--r--source/ro/scp2/source/math.po2
-rw-r--r--source/ro/scp2/source/onlineupdate.po2
-rw-r--r--source/ro/scp2/source/ooo.po4
-rw-r--r--source/ro/scp2/source/python.po24
-rw-r--r--source/ro/scp2/source/quickstart.po2
-rw-r--r--source/ro/scp2/source/sdkoo.po2
-rw-r--r--source/ro/scp2/source/smoketest.po2
-rw-r--r--source/ro/scp2/source/stdlibs.po2
-rw-r--r--source/ro/scp2/source/tde.po2
-rw-r--r--source/ro/scp2/source/winexplorerext.po2
-rw-r--r--source/ro/scp2/source/writer.po2
-rw-r--r--source/ro/scp2/source/xsltfilter.po2
-rw-r--r--source/ro/sd/source/core.po2
-rw-r--r--source/ro/sd/source/filter/html.po2
-rw-r--r--source/ro/sd/source/ui/accessibility.po2
-rw-r--r--source/ro/sd/source/ui/animations.po2
-rw-r--r--source/ro/sd/source/ui/annotations.po2
-rw-r--r--source/ro/sd/source/ui/app.po4
-rw-r--r--source/ro/sd/source/ui/dlg.po2
-rw-r--r--source/ro/sd/source/ui/slideshow.po2
-rw-r--r--source/ro/sd/source/ui/table.po2
-rw-r--r--source/ro/sd/source/ui/view.po2
-rw-r--r--source/ro/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ro/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ro/sdext/source/minimizer.po2
-rw-r--r--source/ro/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ro/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ro/setup_native/source/mac.po2
-rw-r--r--source/ro/sfx2/source/appl.po19
-rw-r--r--source/ro/sfx2/source/bastyp.po2
-rw-r--r--source/ro/sfx2/source/control.po25
-rw-r--r--source/ro/sfx2/source/dialog.po55
-rw-r--r--source/ro/sfx2/source/doc.po126
-rw-r--r--source/ro/sfx2/source/menu.po2
-rw-r--r--source/ro/sfx2/source/view.po4
-rw-r--r--source/ro/sfx2/uiconfig/ui.po4
-rw-r--r--source/ro/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ro/starmath/source.po2
-rw-r--r--source/ro/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ro/svl/source/items.po2
-rw-r--r--source/ro/svl/source/misc.po2
-rw-r--r--source/ro/svtools/source/contnr.po2
-rw-r--r--source/ro/svtools/source/control.po2
-rw-r--r--source/ro/svtools/source/dialogs.po2
-rw-r--r--source/ro/svtools/source/java.po2
-rw-r--r--source/ro/svtools/source/misc.po14
-rw-r--r--source/ro/svtools/source/toolpanel.po2
-rw-r--r--source/ro/svtools/uiconfig/ui.po51
-rw-r--r--source/ro/svx/inc.po4
-rw-r--r--source/ro/svx/source/accessibility.po2
-rw-r--r--source/ro/svx/source/core.po2
-rw-r--r--source/ro/svx/source/dialog.po223
-rw-r--r--source/ro/svx/source/engine3d.po2
-rw-r--r--source/ro/svx/source/fmcomp.po2
-rw-r--r--source/ro/svx/source/form.po2
-rw-r--r--source/ro/svx/source/gallery2.po2
-rw-r--r--source/ro/svx/source/items.po2
-rw-r--r--source/ro/svx/source/src.po24
-rw-r--r--source/ro/svx/source/stbctrls.po2
-rw-r--r--source/ro/svx/source/svdraw.po2
-rw-r--r--source/ro/svx/source/table.po2
-rw-r--r--source/ro/svx/source/tbxctrls.po2
-rw-r--r--source/ro/svx/source/toolbars.po2
-rw-r--r--source/ro/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ro/svx/uiconfig/ui.po206
-rw-r--r--source/ro/sw/source/core/layout.po2
-rw-r--r--source/ro/sw/source/core/undo.po2
-rw-r--r--source/ro/sw/source/core/unocore.po2
-rw-r--r--source/ro/sw/source/ui/app.po10
-rw-r--r--source/ro/sw/source/ui/chrdlg.po2
-rw-r--r--source/ro/sw/source/ui/config.po2
-rw-r--r--source/ro/sw/source/ui/dbui.po16
-rw-r--r--source/ro/sw/source/ui/dialog.po2
-rw-r--r--source/ro/sw/source/ui/dochdl.po2
-rw-r--r--source/ro/sw/source/ui/docvw.po2
-rw-r--r--source/ro/sw/source/ui/envelp.po9
-rw-r--r--source/ro/sw/source/ui/fldui.po2
-rw-r--r--source/ro/sw/source/ui/fmtui.po2
-rw-r--r--source/ro/sw/source/ui/frmdlg.po10
-rw-r--r--source/ro/sw/source/ui/globdoc.po2
-rw-r--r--source/ro/sw/source/ui/index.po2
-rw-r--r--source/ro/sw/source/ui/lingu.po2
-rw-r--r--source/ro/sw/source/ui/misc.po8
-rw-r--r--source/ro/sw/source/ui/ribbar.po2
-rw-r--r--source/ro/sw/source/ui/shells.po2
-rw-r--r--source/ro/sw/source/ui/smartmenu.po2
-rw-r--r--source/ro/sw/source/ui/table.po2
-rw-r--r--source/ro/sw/source/ui/uiview.po2
-rw-r--r--source/ro/sw/source/ui/utlui.po10
-rw-r--r--source/ro/sw/source/ui/web.po2
-rw-r--r--source/ro/sw/source/ui/wrtsh.po2
-rw-r--r--source/ro/sw/uiconfig/sw/ui.po278
-rw-r--r--source/ro/sw/uiconfig/swriter/ui.po4
-rw-r--r--source/ro/swext/mediawiki/help.po12
-rw-r--r--source/ro/swext/mediawiki/src.po2
-rw-r--r--source/ro/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ro/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ro/sysui/desktop/share.po2
-rw-r--r--source/ro/tubes/uiconfig/ui.po2
-rw-r--r--source/ro/uui/source.po20
-rw-r--r--source/ro/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ro/vcl/source/edit.po2
-rw-r--r--source/ro/vcl/source/src.po8
-rw-r--r--source/ro/vcl/uiconfig/ui.po2
-rw-r--r--source/ro/wizards/source/euro.po2
-rw-r--r--source/ro/wizards/source/formwizard.po16
-rw-r--r--source/ro/wizards/source/importwizard.po2
-rw-r--r--source/ro/wizards/source/template.po2
-rw-r--r--source/ro/xmlsecurity/source/component.po2
-rw-r--r--source/ro/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ru/accessibility/source/helper.po2
-rw-r--r--source/ru/android/sdremote/res/values.po18
-rw-r--r--source/ru/avmedia/source/framework.po2
-rw-r--r--source/ru/avmedia/source/viewer.po2
-rw-r--r--source/ru/basctl/source/basicide.po2
-rw-r--r--source/ru/basctl/source/dlged.po2
-rw-r--r--source/ru/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ru/basic/source/classes.po2
-rw-r--r--source/ru/basic/source/sbx.po2
-rw-r--r--source/ru/chart2/source/controller/dialogs.po2
-rw-r--r--source/ru/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/connectivity/source/resource.po2
-rw-r--r--source/ru/cui/source/customize.po2
-rw-r--r--source/ru/cui/source/dialogs.po2
-rw-r--r--source/ru/cui/source/options.po12
-rw-r--r--source/ru/cui/source/tabpages.po22
-rw-r--r--source/ru/cui/uiconfig/ui.po34
-rw-r--r--source/ru/dbaccess/source/core/resource.po2
-rw-r--r--source/ru/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ru/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ru/dbaccess/source/ui/app.po2
-rw-r--r--source/ru/dbaccess/source/ui/browser.po2
-rw-r--r--source/ru/dbaccess/source/ui/control.po2
-rw-r--r--source/ru/dbaccess/source/ui/dlg.po6
-rw-r--r--source/ru/dbaccess/source/ui/inc.po2
-rw-r--r--source/ru/dbaccess/source/ui/misc.po2
-rw-r--r--source/ru/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ru/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ru/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ru/dbaccess/source/ui/uno.po2
-rw-r--r--source/ru/desktop/source/app.po2
-rw-r--r--source/ru/desktop/source/deployment/gui.po2
-rw-r--r--source/ru/desktop/source/deployment/manager.po2
-rw-r--r--source/ru/desktop/source/deployment/misc.po2
-rw-r--r--source/ru/desktop/source/deployment/registry.po2
-rw-r--r--source/ru/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ru/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ru/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ru/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ru/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ru/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ru/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ru/desktop/uiconfig/ui.po2
-rw-r--r--source/ru/dictionaries/af_ZA.po2
-rw-r--r--source/ru/dictionaries/an_ES.po2
-rw-r--r--source/ru/dictionaries/ar.po2
-rw-r--r--source/ru/dictionaries/be_BY.po2
-rw-r--r--source/ru/dictionaries/bg_BG.po2
-rw-r--r--source/ru/dictionaries/bn_BD.po2
-rw-r--r--source/ru/dictionaries/br_FR.po2
-rw-r--r--source/ru/dictionaries/ca.po2
-rw-r--r--source/ru/dictionaries/cs_CZ.po2
-rw-r--r--source/ru/dictionaries/da_DK.po2
-rw-r--r--source/ru/dictionaries/de.po2
-rw-r--r--source/ru/dictionaries/el_GR.po2
-rw-r--r--source/ru/dictionaries/en.po2
-rw-r--r--source/ru/dictionaries/en/dialog.po2
-rw-r--r--source/ru/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ru/dictionaries/es.po2
-rw-r--r--source/ru/dictionaries/et_EE.po2
-rw-r--r--source/ru/dictionaries/fr_FR.po2
-rw-r--r--source/ru/dictionaries/gd_GB.po2
-rw-r--r--source/ru/dictionaries/gl.po2
-rw-r--r--source/ru/dictionaries/gu_IN.po2
-rw-r--r--source/ru/dictionaries/he_IL.po2
-rw-r--r--source/ru/dictionaries/hi_IN.po2
-rw-r--r--source/ru/dictionaries/hr_HR.po2
-rw-r--r--source/ru/dictionaries/hu_HU.po2
-rw-r--r--source/ru/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ru/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ru/dictionaries/it_IT.po2
-rw-r--r--source/ru/dictionaries/ku_TR.po2
-rw-r--r--source/ru/dictionaries/lt_LT.po2
-rw-r--r--source/ru/dictionaries/lv_LV.po2
-rw-r--r--source/ru/dictionaries/ne_NP.po2
-rw-r--r--source/ru/dictionaries/nl_NL.po2
-rw-r--r--source/ru/dictionaries/no.po2
-rw-r--r--source/ru/dictionaries/oc_FR.po2
-rw-r--r--source/ru/dictionaries/pl_PL.po2
-rw-r--r--source/ru/dictionaries/pt_BR.po4
-rw-r--r--source/ru/dictionaries/pt_BR/dialog.po4
-rw-r--r--source/ru/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/ru/dictionaries/pt_PT.po2
-rw-r--r--source/ru/dictionaries/ro.po2
-rw-r--r--source/ru/dictionaries/ru_RU.po2
-rw-r--r--source/ru/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ru/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ru/dictionaries/si_LK.po2
-rw-r--r--source/ru/dictionaries/sk_SK.po2
-rw-r--r--source/ru/dictionaries/sl_SI.po2
-rw-r--r--source/ru/dictionaries/sr.po2
-rw-r--r--source/ru/dictionaries/sv_SE.po2
-rw-r--r--source/ru/dictionaries/sw_TZ.po2
-rw-r--r--source/ru/dictionaries/te_IN.po2
-rw-r--r--source/ru/dictionaries/th_TH.po2
-rw-r--r--source/ru/dictionaries/uk_UA.po2
-rw-r--r--source/ru/dictionaries/vi.po2
-rw-r--r--source/ru/dictionaries/zu_ZA.po2
-rw-r--r--source/ru/editeng/source/accessibility.po2
-rw-r--r--source/ru/editeng/source/editeng.po2
-rw-r--r--source/ru/editeng/source/items.po2
-rw-r--r--source/ru/editeng/source/misc.po2
-rw-r--r--source/ru/editeng/source/outliner.po2
-rw-r--r--source/ru/extensions/source/abpilot.po2
-rw-r--r--source/ru/extensions/source/bibliography.po2
-rw-r--r--source/ru/extensions/source/dbpilots.po2
-rw-r--r--source/ru/extensions/source/propctrlr.po2
-rw-r--r--source/ru/extensions/source/scanner.po2
-rw-r--r--source/ru/extensions/source/update/check.po2
-rw-r--r--source/ru/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ru/filter/source/config/fragments/filters.po2
-rw-r--r--source/ru/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ru/filter/source/config/fragments/types.po2
-rw-r--r--source/ru/filter/source/flash.po2
-rw-r--r--source/ru/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ru/filter/source/pdf.po2
-rw-r--r--source/ru/filter/source/t602.po2
-rw-r--r--source/ru/filter/source/xsltdialog.po4
-rw-r--r--source/ru/filter/uiconfig/ui.po4
-rw-r--r--source/ru/forms/source/resource.po2
-rw-r--r--source/ru/formula/source/core/resource.po38
-rw-r--r--source/ru/formula/source/ui/dlg.po2
-rw-r--r--source/ru/fpicker/source/office.po2
-rw-r--r--source/ru/framework/source/classes.po2
-rw-r--r--source/ru/framework/source/services.po2
-rw-r--r--source/ru/helpcontent2/source/auxiliary.po214
-rw-r--r--source/ru/helpcontent2/source/text/scalc.po20
-rw-r--r--source/ru/helpcontent2/source/text/scalc/00.po25
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po146
-rw-r--r--source/ru/helpcontent2/source/text/scalc/02.po14
-rw-r--r--source/ru/helpcontent2/source/text/scalc/04.po29
-rw-r--r--source/ru/helpcontent2/source/text/scalc/guide.po117
-rw-r--r--source/ru/helpcontent2/source/text/shared.po16
-rw-r--r--source/ru/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/ru/librelogo/source/pythonpath.po293
-rw-r--r--source/ru/mysqlc/source.po2
-rw-r--r--source/ru/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ru/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ru/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ru/nlpsolver/src/locale.po2
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office.po175
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po45
-rw-r--r--source/ru/padmin/source.po4
-rw-r--r--source/ru/readlicense_oo/docs.po2
-rw-r--r--source/ru/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ru/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ru/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ru/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ru/reportbuilder/util.po2
-rw-r--r--source/ru/reportdesign/source/core/resource.po2
-rw-r--r--source/ru/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ru/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ru/reportdesign/source/ui/report.po2
-rw-r--r--source/ru/sc/source/core/src.po2
-rw-r--r--source/ru/sc/source/ui/cctrl.po2
-rw-r--r--source/ru/sc/source/ui/dbgui.po2
-rw-r--r--source/ru/sc/source/ui/docshell.po2
-rw-r--r--source/ru/sc/source/ui/drawfunc.po2
-rw-r--r--source/ru/sc/source/ui/formdlg.po2
-rw-r--r--source/ru/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ru/sc/source/ui/navipi.po2
-rw-r--r--source/ru/sc/source/ui/optdlg.po2
-rw-r--r--source/ru/sc/source/ui/pagedlg.po2
-rw-r--r--source/ru/sc/source/ui/src.po564
-rw-r--r--source/ru/sc/source/ui/styleui.po4
-rw-r--r--source/ru/sc/uiconfig/scalc/ui.po46
-rw-r--r--source/ru/scaddins/source/analysis.po2
-rw-r--r--source/ru/scaddins/source/datefunc.po2
-rw-r--r--source/ru/scaddins/source/pricing.po181
-rw-r--r--source/ru/sccomp/source/solver.po2
-rw-r--r--source/ru/scp2/source/accessories.po2
-rw-r--r--source/ru/scp2/source/activex.po2
-rw-r--r--source/ru/scp2/source/base.po2
-rw-r--r--source/ru/scp2/source/calc.po2
-rw-r--r--source/ru/scp2/source/draw.po2
-rw-r--r--source/ru/scp2/source/extensions.po2
-rw-r--r--source/ru/scp2/source/gnome.po2
-rw-r--r--source/ru/scp2/source/graphicfilter.po2
-rw-r--r--source/ru/scp2/source/impress.po2
-rw-r--r--source/ru/scp2/source/javafilter.po2
-rw-r--r--source/ru/scp2/source/kde.po2
-rw-r--r--source/ru/scp2/source/math.po2
-rw-r--r--source/ru/scp2/source/onlineupdate.po2
-rw-r--r--source/ru/scp2/source/ooo.po4
-rw-r--r--source/ru/scp2/source/python.po22
-rw-r--r--source/ru/scp2/source/quickstart.po2
-rw-r--r--source/ru/scp2/source/sdkoo.po2
-rw-r--r--source/ru/scp2/source/smoketest.po2
-rw-r--r--source/ru/scp2/source/stdlibs.po2
-rw-r--r--source/ru/scp2/source/tde.po2
-rw-r--r--source/ru/scp2/source/winexplorerext.po2
-rw-r--r--source/ru/scp2/source/writer.po2
-rw-r--r--source/ru/scp2/source/xsltfilter.po2
-rw-r--r--source/ru/sd/source/core.po2
-rw-r--r--source/ru/sd/source/filter/html.po2
-rw-r--r--source/ru/sd/source/ui/accessibility.po2
-rw-r--r--source/ru/sd/source/ui/animations.po2
-rw-r--r--source/ru/sd/source/ui/annotations.po2
-rw-r--r--source/ru/sd/source/ui/app.po4
-rw-r--r--source/ru/sd/source/ui/dlg.po4
-rw-r--r--source/ru/sd/source/ui/slideshow.po2
-rw-r--r--source/ru/sd/source/ui/table.po2
-rw-r--r--source/ru/sd/source/ui/view.po2
-rw-r--r--source/ru/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ru/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ru/sdext/source/minimizer.po2
-rw-r--r--source/ru/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ru/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ru/setup_native/source/mac.po2
-rw-r--r--source/ru/sfx2/source/appl.po18
-rw-r--r--source/ru/sfx2/source/bastyp.po2
-rw-r--r--source/ru/sfx2/source/control.po23
-rw-r--r--source/ru/sfx2/source/dialog.po60
-rw-r--r--source/ru/sfx2/source/doc.po136
-rw-r--r--source/ru/sfx2/source/menu.po2
-rw-r--r--source/ru/sfx2/source/view.po16
-rw-r--r--source/ru/sfx2/uiconfig/ui.po12
-rw-r--r--source/ru/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ru/starmath/source.po2
-rw-r--r--source/ru/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ru/svl/source/items.po2
-rw-r--r--source/ru/svl/source/misc.po2
-rw-r--r--source/ru/svtools/source/contnr.po2
-rw-r--r--source/ru/svtools/source/control.po2
-rw-r--r--source/ru/svtools/source/dialogs.po2
-rw-r--r--source/ru/svtools/source/java.po2
-rw-r--r--source/ru/svtools/source/misc.po28
-rw-r--r--source/ru/svtools/source/toolpanel.po2
-rw-r--r--source/ru/svtools/uiconfig/ui.po53
-rw-r--r--source/ru/svx/inc.po4
-rw-r--r--source/ru/svx/source/accessibility.po2
-rw-r--r--source/ru/svx/source/core.po2
-rw-r--r--source/ru/svx/source/dialog.po219
-rw-r--r--source/ru/svx/source/engine3d.po2
-rw-r--r--source/ru/svx/source/fmcomp.po2
-rw-r--r--source/ru/svx/source/form.po2
-rw-r--r--source/ru/svx/source/gallery2.po2
-rw-r--r--source/ru/svx/source/items.po2
-rw-r--r--source/ru/svx/source/src.po2
-rw-r--r--source/ru/svx/source/stbctrls.po2
-rw-r--r--source/ru/svx/source/svdraw.po2
-rw-r--r--source/ru/svx/source/table.po2
-rw-r--r--source/ru/svx/source/tbxctrls.po2
-rw-r--r--source/ru/svx/source/toolbars.po2
-rw-r--r--source/ru/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ru/svx/uiconfig/ui.po204
-rw-r--r--source/ru/sw/source/core/layout.po2
-rw-r--r--source/ru/sw/source/core/undo.po4
-rw-r--r--source/ru/sw/source/core/unocore.po2
-rw-r--r--source/ru/sw/source/ui/app.po4
-rw-r--r--source/ru/sw/source/ui/chrdlg.po2
-rw-r--r--source/ru/sw/source/ui/config.po2
-rw-r--r--source/ru/sw/source/ui/dbui.po2
-rw-r--r--source/ru/sw/source/ui/dialog.po2
-rw-r--r--source/ru/sw/source/ui/dochdl.po2
-rw-r--r--source/ru/sw/source/ui/docvw.po2
-rw-r--r--source/ru/sw/source/ui/envelp.po2
-rw-r--r--source/ru/sw/source/ui/fldui.po2
-rw-r--r--source/ru/sw/source/ui/fmtui.po2
-rw-r--r--source/ru/sw/source/ui/frmdlg.po4
-rw-r--r--source/ru/sw/source/ui/globdoc.po2
-rw-r--r--source/ru/sw/source/ui/index.po4
-rw-r--r--source/ru/sw/source/ui/lingu.po2
-rw-r--r--source/ru/sw/source/ui/misc.po2
-rw-r--r--source/ru/sw/source/ui/ribbar.po2
-rw-r--r--source/ru/sw/source/ui/shells.po2
-rw-r--r--source/ru/sw/source/ui/smartmenu.po2
-rw-r--r--source/ru/sw/source/ui/table.po2
-rw-r--r--source/ru/sw/source/ui/uiview.po2
-rw-r--r--source/ru/sw/source/ui/utlui.po2
-rw-r--r--source/ru/sw/source/ui/web.po2
-rw-r--r--source/ru/sw/source/ui/wrtsh.po2
-rw-r--r--source/ru/sw/uiconfig/sw/ui.po277
-rw-r--r--source/ru/sw/uiconfig/swriter/ui.po118
-rw-r--r--source/ru/swext/mediawiki/help.po2
-rw-r--r--source/ru/swext/mediawiki/src.po2
-rw-r--r--source/ru/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ru/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ru/sysui/desktop/share.po2
-rw-r--r--source/ru/tubes/uiconfig/ui.po24
-rw-r--r--source/ru/uui/source.po2
-rw-r--r--source/ru/vcl/qa/cppunit/builder.po94
-rw-r--r--source/ru/vcl/source/edit.po2
-rw-r--r--source/ru/vcl/source/src.po2
-rw-r--r--source/ru/vcl/uiconfig/ui.po2
-rw-r--r--source/ru/wizards/source/euro.po2
-rw-r--r--source/ru/wizards/source/formwizard.po2
-rw-r--r--source/ru/wizards/source/importwizard.po2
-rw-r--r--source/ru/wizards/source/template.po2
-rw-r--r--source/ru/xmlsecurity/source/component.po2
-rw-r--r--source/ru/xmlsecurity/source/dialogs.po2
-rw-r--r--source/rw/accessibility/source/helper.po2
-rw-r--r--source/rw/android/sdremote/res/values.po2
-rw-r--r--source/rw/avmedia/source/framework.po2
-rw-r--r--source/rw/avmedia/source/viewer.po2
-rw-r--r--source/rw/basctl/source/basicide.po2
-rw-r--r--source/rw/basctl/source/dlged.po2
-rw-r--r--source/rw/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/rw/basic/source/classes.po2
-rw-r--r--source/rw/basic/source/sbx.po2
-rw-r--r--source/rw/chart2/source/controller/dialogs.po2
-rw-r--r--source/rw/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/connectivity/source/resource.po2
-rw-r--r--source/rw/cui/source/customize.po2
-rw-r--r--source/rw/cui/source/dialogs.po2
-rw-r--r--source/rw/cui/source/options.po2
-rw-r--r--source/rw/cui/source/tabpages.po2
-rw-r--r--source/rw/cui/uiconfig/ui.po2
-rw-r--r--source/rw/dbaccess/source/core/resource.po2
-rw-r--r--source/rw/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/rw/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/rw/dbaccess/source/ui/app.po2
-rw-r--r--source/rw/dbaccess/source/ui/browser.po2
-rw-r--r--source/rw/dbaccess/source/ui/control.po2
-rw-r--r--source/rw/dbaccess/source/ui/dlg.po2
-rw-r--r--source/rw/dbaccess/source/ui/inc.po2
-rw-r--r--source/rw/dbaccess/source/ui/misc.po2
-rw-r--r--source/rw/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/rw/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/rw/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/rw/dbaccess/source/ui/uno.po2
-rw-r--r--source/rw/desktop/source/app.po2
-rw-r--r--source/rw/desktop/source/deployment/gui.po2
-rw-r--r--source/rw/desktop/source/deployment/manager.po2
-rw-r--r--source/rw/desktop/source/deployment/misc.po2
-rw-r--r--source/rw/desktop/source/deployment/registry.po2
-rw-r--r--source/rw/desktop/source/deployment/registry/component.po2
-rw-r--r--source/rw/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/rw/desktop/source/deployment/registry/help.po2
-rw-r--r--source/rw/desktop/source/deployment/registry/package.po2
-rw-r--r--source/rw/desktop/source/deployment/registry/script.po2
-rw-r--r--source/rw/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/rw/desktop/source/deployment/unopkg.po2
-rw-r--r--source/rw/desktop/uiconfig/ui.po2
-rw-r--r--source/rw/dictionaries/af_ZA.po2
-rw-r--r--source/rw/dictionaries/an_ES.po2
-rw-r--r--source/rw/dictionaries/ar.po2
-rw-r--r--source/rw/dictionaries/be_BY.po2
-rw-r--r--source/rw/dictionaries/bg_BG.po2
-rw-r--r--source/rw/dictionaries/bn_BD.po2
-rw-r--r--source/rw/dictionaries/br_FR.po2
-rw-r--r--source/rw/dictionaries/ca.po2
-rw-r--r--source/rw/dictionaries/cs_CZ.po2
-rw-r--r--source/rw/dictionaries/da_DK.po2
-rw-r--r--source/rw/dictionaries/de.po2
-rw-r--r--source/rw/dictionaries/el_GR.po2
-rw-r--r--source/rw/dictionaries/en.po2
-rw-r--r--source/rw/dictionaries/en/dialog.po2
-rw-r--r--source/rw/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/rw/dictionaries/es.po2
-rw-r--r--source/rw/dictionaries/et_EE.po2
-rw-r--r--source/rw/dictionaries/fr_FR.po2
-rw-r--r--source/rw/dictionaries/gd_GB.po2
-rw-r--r--source/rw/dictionaries/gl.po2
-rw-r--r--source/rw/dictionaries/gu_IN.po2
-rw-r--r--source/rw/dictionaries/he_IL.po2
-rw-r--r--source/rw/dictionaries/hi_IN.po2
-rw-r--r--source/rw/dictionaries/hr_HR.po2
-rw-r--r--source/rw/dictionaries/hu_HU.po2
-rw-r--r--source/rw/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/rw/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/rw/dictionaries/it_IT.po2
-rw-r--r--source/rw/dictionaries/ku_TR.po2
-rw-r--r--source/rw/dictionaries/lt_LT.po2
-rw-r--r--source/rw/dictionaries/lv_LV.po2
-rw-r--r--source/rw/dictionaries/ne_NP.po2
-rw-r--r--source/rw/dictionaries/nl_NL.po2
-rw-r--r--source/rw/dictionaries/no.po2
-rw-r--r--source/rw/dictionaries/oc_FR.po2
-rw-r--r--source/rw/dictionaries/pl_PL.po2
-rw-r--r--source/rw/dictionaries/pt_BR.po2
-rw-r--r--source/rw/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/rw/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/rw/dictionaries/pt_PT.po2
-rw-r--r--source/rw/dictionaries/ro.po2
-rw-r--r--source/rw/dictionaries/ru_RU.po2
-rw-r--r--source/rw/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/rw/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/rw/dictionaries/si_LK.po2
-rw-r--r--source/rw/dictionaries/sk_SK.po2
-rw-r--r--source/rw/dictionaries/sl_SI.po2
-rw-r--r--source/rw/dictionaries/sr.po2
-rw-r--r--source/rw/dictionaries/sv_SE.po2
-rw-r--r--source/rw/dictionaries/sw_TZ.po2
-rw-r--r--source/rw/dictionaries/te_IN.po2
-rw-r--r--source/rw/dictionaries/th_TH.po2
-rw-r--r--source/rw/dictionaries/uk_UA.po2
-rw-r--r--source/rw/dictionaries/vi.po2
-rw-r--r--source/rw/dictionaries/zu_ZA.po2
-rw-r--r--source/rw/editeng/source/accessibility.po2
-rw-r--r--source/rw/editeng/source/editeng.po2
-rw-r--r--source/rw/editeng/source/items.po2
-rw-r--r--source/rw/editeng/source/misc.po2
-rw-r--r--source/rw/editeng/source/outliner.po2
-rw-r--r--source/rw/extensions/source/abpilot.po2
-rw-r--r--source/rw/extensions/source/bibliography.po2
-rw-r--r--source/rw/extensions/source/dbpilots.po2
-rw-r--r--source/rw/extensions/source/propctrlr.po2
-rw-r--r--source/rw/extensions/source/scanner.po2
-rw-r--r--source/rw/extensions/source/update/check.po2
-rw-r--r--source/rw/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/rw/filter/source/config/fragments/filters.po2
-rw-r--r--source/rw/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/rw/filter/source/config/fragments/types.po2
-rw-r--r--source/rw/filter/source/flash.po2
-rw-r--r--source/rw/filter/source/graphicfilter/eps.po2
-rw-r--r--source/rw/filter/source/pdf.po2
-rw-r--r--source/rw/filter/source/t602.po2
-rw-r--r--source/rw/filter/source/xsltdialog.po2
-rw-r--r--source/rw/filter/uiconfig/ui.po2
-rw-r--r--source/rw/forms/source/resource.po2
-rw-r--r--source/rw/formula/source/core/resource.po38
-rw-r--r--source/rw/formula/source/ui/dlg.po2
-rw-r--r--source/rw/fpicker/source/office.po2
-rw-r--r--source/rw/framework/source/classes.po2
-rw-r--r--source/rw/framework/source/services.po2
-rw-r--r--source/rw/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/rw/librelogo/source/pythonpath.po2
-rw-r--r--source/rw/mysqlc/source.po2
-rw-r--r--source/rw/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/rw/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/rw/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/rw/nlpsolver/src/locale.po2
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/rw/padmin/source.po2
-rw-r--r--source/rw/readlicense_oo/docs.po2
-rw-r--r--source/rw/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/rw/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/rw/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/rw/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/rw/reportbuilder/util.po2
-rw-r--r--source/rw/reportdesign/source/core/resource.po2
-rw-r--r--source/rw/reportdesign/source/ui/dlg.po2
-rw-r--r--source/rw/reportdesign/source/ui/inspection.po2
-rw-r--r--source/rw/reportdesign/source/ui/report.po2
-rw-r--r--source/rw/sc/source/core/src.po2
-rw-r--r--source/rw/sc/source/ui/cctrl.po2
-rw-r--r--source/rw/sc/source/ui/dbgui.po2
-rw-r--r--source/rw/sc/source/ui/docshell.po2
-rw-r--r--source/rw/sc/source/ui/drawfunc.po2
-rw-r--r--source/rw/sc/source/ui/formdlg.po2
-rw-r--r--source/rw/sc/source/ui/miscdlgs.po2
-rw-r--r--source/rw/sc/source/ui/navipi.po2
-rw-r--r--source/rw/sc/source/ui/optdlg.po2
-rw-r--r--source/rw/sc/source/ui/pagedlg.po2
-rw-r--r--source/rw/sc/source/ui/src.po399
-rw-r--r--source/rw/sc/source/ui/styleui.po2
-rw-r--r--source/rw/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/rw/scaddins/source/analysis.po2
-rw-r--r--source/rw/scaddins/source/datefunc.po2
-rw-r--r--source/rw/scaddins/source/pricing.po2
-rw-r--r--source/rw/sccomp/source/solver.po2
-rw-r--r--source/rw/scp2/source/accessories.po2
-rw-r--r--source/rw/scp2/source/activex.po2
-rw-r--r--source/rw/scp2/source/base.po2
-rw-r--r--source/rw/scp2/source/calc.po2
-rw-r--r--source/rw/scp2/source/draw.po2
-rw-r--r--source/rw/scp2/source/extensions.po2
-rw-r--r--source/rw/scp2/source/gnome.po2
-rw-r--r--source/rw/scp2/source/graphicfilter.po2
-rw-r--r--source/rw/scp2/source/impress.po2
-rw-r--r--source/rw/scp2/source/javafilter.po2
-rw-r--r--source/rw/scp2/source/kde.po2
-rw-r--r--source/rw/scp2/source/math.po2
-rw-r--r--source/rw/scp2/source/onlineupdate.po2
-rw-r--r--source/rw/scp2/source/ooo.po2
-rw-r--r--source/rw/scp2/source/python.po18
-rw-r--r--source/rw/scp2/source/quickstart.po2
-rw-r--r--source/rw/scp2/source/sdkoo.po2
-rw-r--r--source/rw/scp2/source/smoketest.po2
-rw-r--r--source/rw/scp2/source/stdlibs.po2
-rw-r--r--source/rw/scp2/source/tde.po2
-rw-r--r--source/rw/scp2/source/winexplorerext.po2
-rw-r--r--source/rw/scp2/source/writer.po2
-rw-r--r--source/rw/scp2/source/xsltfilter.po2
-rw-r--r--source/rw/sd/source/core.po2
-rw-r--r--source/rw/sd/source/filter/html.po2
-rw-r--r--source/rw/sd/source/ui/accessibility.po2
-rw-r--r--source/rw/sd/source/ui/animations.po2
-rw-r--r--source/rw/sd/source/ui/annotations.po2
-rw-r--r--source/rw/sd/source/ui/app.po2
-rw-r--r--source/rw/sd/source/ui/dlg.po2
-rw-r--r--source/rw/sd/source/ui/slideshow.po2
-rw-r--r--source/rw/sd/source/ui/table.po2
-rw-r--r--source/rw/sd/source/ui/view.po2
-rw-r--r--source/rw/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/rw/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/rw/sdext/source/minimizer.po2
-rw-r--r--source/rw/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/rw/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/rw/setup_native/source/mac.po2
-rw-r--r--source/rw/sfx2/source/appl.po2
-rw-r--r--source/rw/sfx2/source/bastyp.po2
-rw-r--r--source/rw/sfx2/source/control.po23
-rw-r--r--source/rw/sfx2/source/dialog.po46
-rw-r--r--source/rw/sfx2/source/doc.po126
-rw-r--r--source/rw/sfx2/source/menu.po2
-rw-r--r--source/rw/sfx2/source/view.po2
-rw-r--r--source/rw/sfx2/uiconfig/ui.po2
-rw-r--r--source/rw/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/rw/starmath/source.po2
-rw-r--r--source/rw/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/rw/svl/source/items.po2
-rw-r--r--source/rw/svl/source/misc.po2
-rw-r--r--source/rw/svtools/source/contnr.po2
-rw-r--r--source/rw/svtools/source/control.po2
-rw-r--r--source/rw/svtools/source/dialogs.po2
-rw-r--r--source/rw/svtools/source/java.po2
-rw-r--r--source/rw/svtools/source/misc.po2
-rw-r--r--source/rw/svtools/source/toolpanel.po2
-rw-r--r--source/rw/svtools/uiconfig/ui.po49
-rw-r--r--source/rw/svx/inc.po2
-rw-r--r--source/rw/svx/source/accessibility.po2
-rw-r--r--source/rw/svx/source/core.po2
-rw-r--r--source/rw/svx/source/dialog.po224
-rw-r--r--source/rw/svx/source/engine3d.po2
-rw-r--r--source/rw/svx/source/fmcomp.po2
-rw-r--r--source/rw/svx/source/form.po2
-rw-r--r--source/rw/svx/source/gallery2.po2
-rw-r--r--source/rw/svx/source/items.po2
-rw-r--r--source/rw/svx/source/src.po2
-rw-r--r--source/rw/svx/source/stbctrls.po2
-rw-r--r--source/rw/svx/source/svdraw.po2
-rw-r--r--source/rw/svx/source/table.po2
-rw-r--r--source/rw/svx/source/tbxctrls.po2
-rw-r--r--source/rw/svx/source/toolbars.po2
-rw-r--r--source/rw/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/rw/svx/uiconfig/ui.po204
-rw-r--r--source/rw/sw/source/core/layout.po2
-rw-r--r--source/rw/sw/source/core/undo.po2
-rw-r--r--source/rw/sw/source/core/unocore.po2
-rw-r--r--source/rw/sw/source/ui/app.po2
-rw-r--r--source/rw/sw/source/ui/chrdlg.po2
-rw-r--r--source/rw/sw/source/ui/config.po2
-rw-r--r--source/rw/sw/source/ui/dbui.po2
-rw-r--r--source/rw/sw/source/ui/dialog.po2
-rw-r--r--source/rw/sw/source/ui/dochdl.po2
-rw-r--r--source/rw/sw/source/ui/docvw.po2
-rw-r--r--source/rw/sw/source/ui/envelp.po2
-rw-r--r--source/rw/sw/source/ui/fldui.po2
-rw-r--r--source/rw/sw/source/ui/fmtui.po2
-rw-r--r--source/rw/sw/source/ui/frmdlg.po2
-rw-r--r--source/rw/sw/source/ui/globdoc.po2
-rw-r--r--source/rw/sw/source/ui/index.po2
-rw-r--r--source/rw/sw/source/ui/lingu.po2
-rw-r--r--source/rw/sw/source/ui/misc.po2
-rw-r--r--source/rw/sw/source/ui/ribbar.po2
-rw-r--r--source/rw/sw/source/ui/shells.po2
-rw-r--r--source/rw/sw/source/ui/smartmenu.po2
-rw-r--r--source/rw/sw/source/ui/table.po2
-rw-r--r--source/rw/sw/source/ui/uiview.po2
-rw-r--r--source/rw/sw/source/ui/utlui.po2
-rw-r--r--source/rw/sw/source/ui/web.po2
-rw-r--r--source/rw/sw/source/ui/wrtsh.po2
-rw-r--r--source/rw/sw/uiconfig/sw/ui.po284
-rw-r--r--source/rw/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/rw/swext/mediawiki/help.po2
-rw-r--r--source/rw/swext/mediawiki/src.po2
-rw-r--r--source/rw/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/rw/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/rw/sysui/desktop/share.po2
-rw-r--r--source/rw/tubes/uiconfig/ui.po2
-rw-r--r--source/rw/uui/source.po2
-rw-r--r--source/rw/vcl/qa/cppunit/builder.po2
-rw-r--r--source/rw/vcl/source/edit.po2
-rw-r--r--source/rw/vcl/source/src.po2
-rw-r--r--source/rw/vcl/uiconfig/ui.po2
-rw-r--r--source/rw/wizards/source/euro.po2
-rw-r--r--source/rw/wizards/source/formwizard.po2
-rw-r--r--source/rw/wizards/source/importwizard.po2
-rw-r--r--source/rw/wizards/source/template.po2
-rw-r--r--source/rw/xmlsecurity/source/component.po2
-rw-r--r--source/rw/xmlsecurity/source/dialogs.po2
-rw-r--r--source/sa-IN/accessibility/source/helper.po2
-rw-r--r--source/sa-IN/android/sdremote/res/values.po2
-rw-r--r--source/sa-IN/avmedia/source/framework.po2
-rw-r--r--source/sa-IN/avmedia/source/viewer.po2
-rw-r--r--source/sa-IN/basctl/source/basicide.po2
-rw-r--r--source/sa-IN/basctl/source/dlged.po2
-rw-r--r--source/sa-IN/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/sa-IN/basic/source/classes.po2
-rw-r--r--source/sa-IN/basic/source/sbx.po2
-rw-r--r--source/sa-IN/chart2/source/controller/dialogs.po2
-rw-r--r--source/sa-IN/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/connectivity/source/resource.po2
-rw-r--r--source/sa-IN/cui/source/customize.po2
-rw-r--r--source/sa-IN/cui/source/dialogs.po2
-rw-r--r--source/sa-IN/cui/source/options.po2
-rw-r--r--source/sa-IN/cui/source/tabpages.po2
-rw-r--r--source/sa-IN/cui/uiconfig/ui.po2
-rw-r--r--source/sa-IN/dbaccess/source/core/resource.po2
-rw-r--r--source/sa-IN/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/sa-IN/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/sa-IN/dbaccess/source/ui/app.po2
-rw-r--r--source/sa-IN/dbaccess/source/ui/browser.po2
-rw-r--r--source/sa-IN/dbaccess/source/ui/control.po2
-rw-r--r--source/sa-IN/dbaccess/source/ui/dlg.po2
-rw-r--r--source/sa-IN/dbaccess/source/ui/inc.po2
-rw-r--r--source/sa-IN/dbaccess/source/ui/misc.po2
-rw-r--r--source/sa-IN/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/sa-IN/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/sa-IN/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/sa-IN/dbaccess/source/ui/uno.po2
-rw-r--r--source/sa-IN/desktop/source/app.po2
-rw-r--r--source/sa-IN/desktop/source/deployment/gui.po2
-rw-r--r--source/sa-IN/desktop/source/deployment/manager.po2
-rw-r--r--source/sa-IN/desktop/source/deployment/misc.po2
-rw-r--r--source/sa-IN/desktop/source/deployment/registry.po2
-rw-r--r--source/sa-IN/desktop/source/deployment/registry/component.po2
-rw-r--r--source/sa-IN/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/sa-IN/desktop/source/deployment/registry/help.po2
-rw-r--r--source/sa-IN/desktop/source/deployment/registry/package.po2
-rw-r--r--source/sa-IN/desktop/source/deployment/registry/script.po2
-rw-r--r--source/sa-IN/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/sa-IN/desktop/source/deployment/unopkg.po2
-rw-r--r--source/sa-IN/desktop/uiconfig/ui.po2
-rw-r--r--source/sa-IN/dictionaries/af_ZA.po2
-rw-r--r--source/sa-IN/dictionaries/an_ES.po2
-rw-r--r--source/sa-IN/dictionaries/ar.po2
-rw-r--r--source/sa-IN/dictionaries/be_BY.po2
-rw-r--r--source/sa-IN/dictionaries/bg_BG.po2
-rw-r--r--source/sa-IN/dictionaries/bn_BD.po2
-rw-r--r--source/sa-IN/dictionaries/br_FR.po2
-rw-r--r--source/sa-IN/dictionaries/ca.po2
-rw-r--r--source/sa-IN/dictionaries/cs_CZ.po2
-rw-r--r--source/sa-IN/dictionaries/da_DK.po2
-rw-r--r--source/sa-IN/dictionaries/de.po2
-rw-r--r--source/sa-IN/dictionaries/el_GR.po2
-rw-r--r--source/sa-IN/dictionaries/en.po2
-rw-r--r--source/sa-IN/dictionaries/en/dialog.po2
-rw-r--r--source/sa-IN/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sa-IN/dictionaries/es.po2
-rw-r--r--source/sa-IN/dictionaries/et_EE.po2
-rw-r--r--source/sa-IN/dictionaries/fr_FR.po2
-rw-r--r--source/sa-IN/dictionaries/gd_GB.po2
-rw-r--r--source/sa-IN/dictionaries/gl.po2
-rw-r--r--source/sa-IN/dictionaries/gu_IN.po2
-rw-r--r--source/sa-IN/dictionaries/he_IL.po2
-rw-r--r--source/sa-IN/dictionaries/hi_IN.po2
-rw-r--r--source/sa-IN/dictionaries/hr_HR.po2
-rw-r--r--source/sa-IN/dictionaries/hu_HU.po2
-rw-r--r--source/sa-IN/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/sa-IN/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sa-IN/dictionaries/it_IT.po2
-rw-r--r--source/sa-IN/dictionaries/ku_TR.po2
-rw-r--r--source/sa-IN/dictionaries/lt_LT.po2
-rw-r--r--source/sa-IN/dictionaries/lv_LV.po2
-rw-r--r--source/sa-IN/dictionaries/ne_NP.po2
-rw-r--r--source/sa-IN/dictionaries/nl_NL.po2
-rw-r--r--source/sa-IN/dictionaries/no.po2
-rw-r--r--source/sa-IN/dictionaries/oc_FR.po2
-rw-r--r--source/sa-IN/dictionaries/pl_PL.po2
-rw-r--r--source/sa-IN/dictionaries/pt_BR.po2
-rw-r--r--source/sa-IN/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/sa-IN/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sa-IN/dictionaries/pt_PT.po2
-rw-r--r--source/sa-IN/dictionaries/ro.po2
-rw-r--r--source/sa-IN/dictionaries/ru_RU.po2
-rw-r--r--source/sa-IN/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/sa-IN/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sa-IN/dictionaries/si_LK.po2
-rw-r--r--source/sa-IN/dictionaries/sk_SK.po2
-rw-r--r--source/sa-IN/dictionaries/sl_SI.po2
-rw-r--r--source/sa-IN/dictionaries/sr.po2
-rw-r--r--source/sa-IN/dictionaries/sv_SE.po2
-rw-r--r--source/sa-IN/dictionaries/sw_TZ.po2
-rw-r--r--source/sa-IN/dictionaries/te_IN.po2
-rw-r--r--source/sa-IN/dictionaries/th_TH.po2
-rw-r--r--source/sa-IN/dictionaries/uk_UA.po2
-rw-r--r--source/sa-IN/dictionaries/vi.po2
-rw-r--r--source/sa-IN/dictionaries/zu_ZA.po2
-rw-r--r--source/sa-IN/editeng/source/accessibility.po2
-rw-r--r--source/sa-IN/editeng/source/editeng.po2
-rw-r--r--source/sa-IN/editeng/source/items.po2
-rw-r--r--source/sa-IN/editeng/source/misc.po2
-rw-r--r--source/sa-IN/editeng/source/outliner.po2
-rw-r--r--source/sa-IN/extensions/source/abpilot.po2
-rw-r--r--source/sa-IN/extensions/source/bibliography.po2
-rw-r--r--source/sa-IN/extensions/source/dbpilots.po2
-rw-r--r--source/sa-IN/extensions/source/propctrlr.po2
-rw-r--r--source/sa-IN/extensions/source/scanner.po2
-rw-r--r--source/sa-IN/extensions/source/update/check.po2
-rw-r--r--source/sa-IN/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/sa-IN/filter/source/config/fragments/filters.po2
-rw-r--r--source/sa-IN/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/sa-IN/filter/source/config/fragments/types.po2
-rw-r--r--source/sa-IN/filter/source/flash.po2
-rw-r--r--source/sa-IN/filter/source/graphicfilter/eps.po2
-rw-r--r--source/sa-IN/filter/source/pdf.po2
-rw-r--r--source/sa-IN/filter/source/t602.po2
-rw-r--r--source/sa-IN/filter/source/xsltdialog.po2
-rw-r--r--source/sa-IN/filter/uiconfig/ui.po2
-rw-r--r--source/sa-IN/forms/source/resource.po2
-rw-r--r--source/sa-IN/formula/source/core/resource.po38
-rw-r--r--source/sa-IN/formula/source/ui/dlg.po2
-rw-r--r--source/sa-IN/fpicker/source/office.po2
-rw-r--r--source/sa-IN/framework/source/classes.po2
-rw-r--r--source/sa-IN/framework/source/services.po2
-rw-r--r--source/sa-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/sa-IN/librelogo/source/pythonpath.po2
-rw-r--r--source/sa-IN/mysqlc/source.po2
-rw-r--r--source/sa-IN/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sa-IN/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/sa-IN/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/sa-IN/nlpsolver/src/locale.po2
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/sa-IN/padmin/source.po2
-rw-r--r--source/sa-IN/readlicense_oo/docs.po2
-rw-r--r--source/sa-IN/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/sa-IN/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sa-IN/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/sa-IN/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/sa-IN/reportbuilder/util.po2
-rw-r--r--source/sa-IN/reportdesign/source/core/resource.po2
-rw-r--r--source/sa-IN/reportdesign/source/ui/dlg.po2
-rw-r--r--source/sa-IN/reportdesign/source/ui/inspection.po2
-rw-r--r--source/sa-IN/reportdesign/source/ui/report.po2
-rw-r--r--source/sa-IN/sc/source/core/src.po2
-rw-r--r--source/sa-IN/sc/source/ui/cctrl.po2
-rw-r--r--source/sa-IN/sc/source/ui/dbgui.po2
-rw-r--r--source/sa-IN/sc/source/ui/docshell.po2
-rw-r--r--source/sa-IN/sc/source/ui/drawfunc.po2
-rw-r--r--source/sa-IN/sc/source/ui/formdlg.po2
-rw-r--r--source/sa-IN/sc/source/ui/miscdlgs.po2
-rw-r--r--source/sa-IN/sc/source/ui/navipi.po2
-rw-r--r--source/sa-IN/sc/source/ui/optdlg.po2
-rw-r--r--source/sa-IN/sc/source/ui/pagedlg.po2
-rw-r--r--source/sa-IN/sc/source/ui/src.po403
-rw-r--r--source/sa-IN/sc/source/ui/styleui.po2
-rw-r--r--source/sa-IN/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/sa-IN/scaddins/source/analysis.po2
-rw-r--r--source/sa-IN/scaddins/source/datefunc.po2
-rw-r--r--source/sa-IN/scaddins/source/pricing.po2
-rw-r--r--source/sa-IN/sccomp/source/solver.po2
-rw-r--r--source/sa-IN/scp2/source/accessories.po2
-rw-r--r--source/sa-IN/scp2/source/activex.po2
-rw-r--r--source/sa-IN/scp2/source/base.po2
-rw-r--r--source/sa-IN/scp2/source/calc.po2
-rw-r--r--source/sa-IN/scp2/source/draw.po2
-rw-r--r--source/sa-IN/scp2/source/extensions.po2
-rw-r--r--source/sa-IN/scp2/source/gnome.po2
-rw-r--r--source/sa-IN/scp2/source/graphicfilter.po2
-rw-r--r--source/sa-IN/scp2/source/impress.po2
-rw-r--r--source/sa-IN/scp2/source/javafilter.po2
-rw-r--r--source/sa-IN/scp2/source/kde.po2
-rw-r--r--source/sa-IN/scp2/source/math.po2
-rw-r--r--source/sa-IN/scp2/source/onlineupdate.po2
-rw-r--r--source/sa-IN/scp2/source/ooo.po2
-rw-r--r--source/sa-IN/scp2/source/python.po18
-rw-r--r--source/sa-IN/scp2/source/quickstart.po2
-rw-r--r--source/sa-IN/scp2/source/sdkoo.po2
-rw-r--r--source/sa-IN/scp2/source/smoketest.po2
-rw-r--r--source/sa-IN/scp2/source/stdlibs.po2
-rw-r--r--source/sa-IN/scp2/source/tde.po2
-rw-r--r--source/sa-IN/scp2/source/winexplorerext.po2
-rw-r--r--source/sa-IN/scp2/source/writer.po2
-rw-r--r--source/sa-IN/scp2/source/xsltfilter.po2
-rw-r--r--source/sa-IN/sd/source/core.po2
-rw-r--r--source/sa-IN/sd/source/filter/html.po2
-rw-r--r--source/sa-IN/sd/source/ui/accessibility.po2
-rw-r--r--source/sa-IN/sd/source/ui/animations.po2
-rw-r--r--source/sa-IN/sd/source/ui/annotations.po2
-rw-r--r--source/sa-IN/sd/source/ui/app.po2
-rw-r--r--source/sa-IN/sd/source/ui/dlg.po2
-rw-r--r--source/sa-IN/sd/source/ui/slideshow.po2
-rw-r--r--source/sa-IN/sd/source/ui/table.po2
-rw-r--r--source/sa-IN/sd/source/ui/view.po2
-rw-r--r--source/sa-IN/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/sa-IN/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/sa-IN/sdext/source/minimizer.po2
-rw-r--r--source/sa-IN/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sa-IN/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/sa-IN/setup_native/source/mac.po2
-rw-r--r--source/sa-IN/sfx2/source/appl.po2
-rw-r--r--source/sa-IN/sfx2/source/bastyp.po2
-rw-r--r--source/sa-IN/sfx2/source/control.po23
-rw-r--r--source/sa-IN/sfx2/source/dialog.po46
-rw-r--r--source/sa-IN/sfx2/source/doc.po126
-rw-r--r--source/sa-IN/sfx2/source/menu.po2
-rw-r--r--source/sa-IN/sfx2/source/view.po2
-rw-r--r--source/sa-IN/sfx2/uiconfig/ui.po2
-rw-r--r--source/sa-IN/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/sa-IN/starmath/source.po2
-rw-r--r--source/sa-IN/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/sa-IN/svl/source/items.po2
-rw-r--r--source/sa-IN/svl/source/misc.po2
-rw-r--r--source/sa-IN/svtools/source/contnr.po2
-rw-r--r--source/sa-IN/svtools/source/control.po2
-rw-r--r--source/sa-IN/svtools/source/dialogs.po2
-rw-r--r--source/sa-IN/svtools/source/java.po2
-rw-r--r--source/sa-IN/svtools/source/misc.po2
-rw-r--r--source/sa-IN/svtools/source/toolpanel.po2
-rw-r--r--source/sa-IN/svtools/uiconfig/ui.po49
-rw-r--r--source/sa-IN/svx/inc.po2
-rw-r--r--source/sa-IN/svx/source/accessibility.po2
-rw-r--r--source/sa-IN/svx/source/core.po2
-rw-r--r--source/sa-IN/svx/source/dialog.po225
-rw-r--r--source/sa-IN/svx/source/engine3d.po2
-rw-r--r--source/sa-IN/svx/source/fmcomp.po2
-rw-r--r--source/sa-IN/svx/source/form.po2
-rw-r--r--source/sa-IN/svx/source/gallery2.po2
-rw-r--r--source/sa-IN/svx/source/items.po2
-rw-r--r--source/sa-IN/svx/source/src.po2
-rw-r--r--source/sa-IN/svx/source/stbctrls.po2
-rw-r--r--source/sa-IN/svx/source/svdraw.po2
-rw-r--r--source/sa-IN/svx/source/table.po2
-rw-r--r--source/sa-IN/svx/source/tbxctrls.po2
-rw-r--r--source/sa-IN/svx/source/toolbars.po2
-rw-r--r--source/sa-IN/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/sa-IN/svx/uiconfig/ui.po204
-rw-r--r--source/sa-IN/sw/source/core/layout.po2
-rw-r--r--source/sa-IN/sw/source/core/undo.po2
-rw-r--r--source/sa-IN/sw/source/core/unocore.po2
-rw-r--r--source/sa-IN/sw/source/ui/app.po2
-rw-r--r--source/sa-IN/sw/source/ui/chrdlg.po2
-rw-r--r--source/sa-IN/sw/source/ui/config.po2
-rw-r--r--source/sa-IN/sw/source/ui/dbui.po2
-rw-r--r--source/sa-IN/sw/source/ui/dialog.po2
-rw-r--r--source/sa-IN/sw/source/ui/dochdl.po2
-rw-r--r--source/sa-IN/sw/source/ui/docvw.po2
-rw-r--r--source/sa-IN/sw/source/ui/envelp.po2
-rw-r--r--source/sa-IN/sw/source/ui/fldui.po2
-rw-r--r--source/sa-IN/sw/source/ui/fmtui.po2
-rw-r--r--source/sa-IN/sw/source/ui/frmdlg.po2
-rw-r--r--source/sa-IN/sw/source/ui/globdoc.po2
-rw-r--r--source/sa-IN/sw/source/ui/index.po2
-rw-r--r--source/sa-IN/sw/source/ui/lingu.po2
-rw-r--r--source/sa-IN/sw/source/ui/misc.po2
-rw-r--r--source/sa-IN/sw/source/ui/ribbar.po2
-rw-r--r--source/sa-IN/sw/source/ui/shells.po2
-rw-r--r--source/sa-IN/sw/source/ui/smartmenu.po2
-rw-r--r--source/sa-IN/sw/source/ui/table.po2
-rw-r--r--source/sa-IN/sw/source/ui/uiview.po2
-rw-r--r--source/sa-IN/sw/source/ui/utlui.po2
-rw-r--r--source/sa-IN/sw/source/ui/web.po2
-rw-r--r--source/sa-IN/sw/source/ui/wrtsh.po2
-rw-r--r--source/sa-IN/sw/uiconfig/sw/ui.po287
-rw-r--r--source/sa-IN/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/sa-IN/swext/mediawiki/help.po2
-rw-r--r--source/sa-IN/swext/mediawiki/src.po2
-rw-r--r--source/sa-IN/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sa-IN/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/sa-IN/sysui/desktop/share.po2
-rw-r--r--source/sa-IN/tubes/uiconfig/ui.po2
-rw-r--r--source/sa-IN/uui/source.po2
-rw-r--r--source/sa-IN/vcl/qa/cppunit/builder.po2
-rw-r--r--source/sa-IN/vcl/source/edit.po2
-rw-r--r--source/sa-IN/vcl/source/src.po2
-rw-r--r--source/sa-IN/vcl/uiconfig/ui.po2
-rw-r--r--source/sa-IN/wizards/source/euro.po2
-rw-r--r--source/sa-IN/wizards/source/formwizard.po2
-rw-r--r--source/sa-IN/wizards/source/importwizard.po2
-rw-r--r--source/sa-IN/wizards/source/template.po2
-rw-r--r--source/sa-IN/xmlsecurity/source/component.po2
-rw-r--r--source/sa-IN/xmlsecurity/source/dialogs.po2
-rw-r--r--source/sat/accessibility/source/helper.po2
-rw-r--r--source/sat/android/sdremote/res/values.po2
-rw-r--r--source/sat/avmedia/source/framework.po2
-rw-r--r--source/sat/avmedia/source/viewer.po2
-rw-r--r--source/sat/basctl/source/basicide.po2
-rw-r--r--source/sat/basctl/source/dlged.po2
-rw-r--r--source/sat/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/sat/basic/source/classes.po2
-rw-r--r--source/sat/basic/source/sbx.po2
-rw-r--r--source/sat/chart2/source/controller/dialogs.po2
-rw-r--r--source/sat/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/connectivity/source/resource.po2
-rw-r--r--source/sat/cui/source/customize.po2
-rw-r--r--source/sat/cui/source/dialogs.po2
-rw-r--r--source/sat/cui/source/options.po2
-rw-r--r--source/sat/cui/source/tabpages.po2
-rw-r--r--source/sat/cui/uiconfig/ui.po2
-rw-r--r--source/sat/dbaccess/source/core/resource.po2
-rw-r--r--source/sat/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/sat/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/sat/dbaccess/source/ui/app.po2
-rw-r--r--source/sat/dbaccess/source/ui/browser.po2
-rw-r--r--source/sat/dbaccess/source/ui/control.po2
-rw-r--r--source/sat/dbaccess/source/ui/dlg.po2
-rw-r--r--source/sat/dbaccess/source/ui/inc.po2
-rw-r--r--source/sat/dbaccess/source/ui/misc.po2
-rw-r--r--source/sat/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/sat/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/sat/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/sat/dbaccess/source/ui/uno.po2
-rw-r--r--source/sat/desktop/source/app.po2
-rw-r--r--source/sat/desktop/source/deployment/gui.po2
-rw-r--r--source/sat/desktop/source/deployment/manager.po2
-rw-r--r--source/sat/desktop/source/deployment/misc.po2
-rw-r--r--source/sat/desktop/source/deployment/registry.po2
-rw-r--r--source/sat/desktop/source/deployment/registry/component.po2
-rw-r--r--source/sat/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/sat/desktop/source/deployment/registry/help.po2
-rw-r--r--source/sat/desktop/source/deployment/registry/package.po2
-rw-r--r--source/sat/desktop/source/deployment/registry/script.po2
-rw-r--r--source/sat/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/sat/desktop/source/deployment/unopkg.po2
-rw-r--r--source/sat/desktop/uiconfig/ui.po2
-rw-r--r--source/sat/dictionaries/af_ZA.po2
-rw-r--r--source/sat/dictionaries/an_ES.po2
-rw-r--r--source/sat/dictionaries/ar.po2
-rw-r--r--source/sat/dictionaries/be_BY.po2
-rw-r--r--source/sat/dictionaries/bg_BG.po2
-rw-r--r--source/sat/dictionaries/bn_BD.po2
-rw-r--r--source/sat/dictionaries/br_FR.po2
-rw-r--r--source/sat/dictionaries/ca.po2
-rw-r--r--source/sat/dictionaries/cs_CZ.po2
-rw-r--r--source/sat/dictionaries/da_DK.po2
-rw-r--r--source/sat/dictionaries/de.po2
-rw-r--r--source/sat/dictionaries/el_GR.po2
-rw-r--r--source/sat/dictionaries/en.po2
-rw-r--r--source/sat/dictionaries/en/dialog.po2
-rw-r--r--source/sat/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sat/dictionaries/es.po2
-rw-r--r--source/sat/dictionaries/et_EE.po2
-rw-r--r--source/sat/dictionaries/fr_FR.po2
-rw-r--r--source/sat/dictionaries/gd_GB.po2
-rw-r--r--source/sat/dictionaries/gl.po2
-rw-r--r--source/sat/dictionaries/gu_IN.po2
-rw-r--r--source/sat/dictionaries/he_IL.po2
-rw-r--r--source/sat/dictionaries/hi_IN.po2
-rw-r--r--source/sat/dictionaries/hr_HR.po2
-rw-r--r--source/sat/dictionaries/hu_HU.po2
-rw-r--r--source/sat/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/sat/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sat/dictionaries/it_IT.po2
-rw-r--r--source/sat/dictionaries/ku_TR.po2
-rw-r--r--source/sat/dictionaries/lt_LT.po2
-rw-r--r--source/sat/dictionaries/lv_LV.po2
-rw-r--r--source/sat/dictionaries/ne_NP.po2
-rw-r--r--source/sat/dictionaries/nl_NL.po2
-rw-r--r--source/sat/dictionaries/no.po2
-rw-r--r--source/sat/dictionaries/oc_FR.po2
-rw-r--r--source/sat/dictionaries/pl_PL.po2
-rw-r--r--source/sat/dictionaries/pt_BR.po2
-rw-r--r--source/sat/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/sat/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sat/dictionaries/pt_PT.po2
-rw-r--r--source/sat/dictionaries/ro.po2
-rw-r--r--source/sat/dictionaries/ru_RU.po2
-rw-r--r--source/sat/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/sat/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sat/dictionaries/si_LK.po2
-rw-r--r--source/sat/dictionaries/sk_SK.po2
-rw-r--r--source/sat/dictionaries/sl_SI.po2
-rw-r--r--source/sat/dictionaries/sr.po2
-rw-r--r--source/sat/dictionaries/sv_SE.po2
-rw-r--r--source/sat/dictionaries/sw_TZ.po2
-rw-r--r--source/sat/dictionaries/te_IN.po2
-rw-r--r--source/sat/dictionaries/th_TH.po2
-rw-r--r--source/sat/dictionaries/uk_UA.po2
-rw-r--r--source/sat/dictionaries/vi.po2
-rw-r--r--source/sat/dictionaries/zu_ZA.po2
-rw-r--r--source/sat/editeng/source/accessibility.po2
-rw-r--r--source/sat/editeng/source/editeng.po2
-rw-r--r--source/sat/editeng/source/items.po2
-rw-r--r--source/sat/editeng/source/misc.po2
-rw-r--r--source/sat/editeng/source/outliner.po2
-rw-r--r--source/sat/extensions/source/abpilot.po2
-rw-r--r--source/sat/extensions/source/bibliography.po2
-rw-r--r--source/sat/extensions/source/dbpilots.po2
-rw-r--r--source/sat/extensions/source/propctrlr.po2
-rw-r--r--source/sat/extensions/source/scanner.po2
-rw-r--r--source/sat/extensions/source/update/check.po2
-rw-r--r--source/sat/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/sat/filter/source/config/fragments/filters.po2
-rw-r--r--source/sat/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/sat/filter/source/config/fragments/types.po2
-rw-r--r--source/sat/filter/source/flash.po2
-rw-r--r--source/sat/filter/source/graphicfilter/eps.po2
-rw-r--r--source/sat/filter/source/pdf.po2
-rw-r--r--source/sat/filter/source/t602.po2
-rw-r--r--source/sat/filter/source/xsltdialog.po2
-rw-r--r--source/sat/filter/uiconfig/ui.po2
-rw-r--r--source/sat/forms/source/resource.po2
-rw-r--r--source/sat/formula/source/core/resource.po38
-rw-r--r--source/sat/formula/source/ui/dlg.po2
-rw-r--r--source/sat/fpicker/source/office.po2
-rw-r--r--source/sat/framework/source/classes.po2
-rw-r--r--source/sat/framework/source/services.po2
-rw-r--r--source/sat/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/sat/librelogo/source/pythonpath.po2
-rw-r--r--source/sat/mysqlc/source.po2
-rw-r--r--source/sat/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sat/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/sat/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/sat/nlpsolver/src/locale.po2
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/sat/padmin/source.po2
-rw-r--r--source/sat/readlicense_oo/docs.po2
-rw-r--r--source/sat/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/sat/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sat/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/sat/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/sat/reportbuilder/util.po2
-rw-r--r--source/sat/reportdesign/source/core/resource.po2
-rw-r--r--source/sat/reportdesign/source/ui/dlg.po2
-rw-r--r--source/sat/reportdesign/source/ui/inspection.po2
-rw-r--r--source/sat/reportdesign/source/ui/report.po2
-rw-r--r--source/sat/sc/source/core/src.po2
-rw-r--r--source/sat/sc/source/ui/cctrl.po2
-rw-r--r--source/sat/sc/source/ui/dbgui.po2
-rw-r--r--source/sat/sc/source/ui/docshell.po2
-rw-r--r--source/sat/sc/source/ui/drawfunc.po2
-rw-r--r--source/sat/sc/source/ui/formdlg.po2
-rw-r--r--source/sat/sc/source/ui/miscdlgs.po2
-rw-r--r--source/sat/sc/source/ui/navipi.po2
-rw-r--r--source/sat/sc/source/ui/optdlg.po2
-rw-r--r--source/sat/sc/source/ui/pagedlg.po2
-rw-r--r--source/sat/sc/source/ui/src.po393
-rw-r--r--source/sat/sc/source/ui/styleui.po2
-rw-r--r--source/sat/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/sat/scaddins/source/analysis.po2
-rw-r--r--source/sat/scaddins/source/datefunc.po2
-rw-r--r--source/sat/scaddins/source/pricing.po2
-rw-r--r--source/sat/sccomp/source/solver.po2
-rw-r--r--source/sat/scp2/source/accessories.po2
-rw-r--r--source/sat/scp2/source/activex.po2
-rw-r--r--source/sat/scp2/source/base.po2
-rw-r--r--source/sat/scp2/source/calc.po2
-rw-r--r--source/sat/scp2/source/draw.po2
-rw-r--r--source/sat/scp2/source/extensions.po2
-rw-r--r--source/sat/scp2/source/gnome.po2
-rw-r--r--source/sat/scp2/source/graphicfilter.po2
-rw-r--r--source/sat/scp2/source/impress.po2
-rw-r--r--source/sat/scp2/source/javafilter.po2
-rw-r--r--source/sat/scp2/source/kde.po2
-rw-r--r--source/sat/scp2/source/math.po2
-rw-r--r--source/sat/scp2/source/onlineupdate.po2
-rw-r--r--source/sat/scp2/source/ooo.po2
-rw-r--r--source/sat/scp2/source/python.po18
-rw-r--r--source/sat/scp2/source/quickstart.po2
-rw-r--r--source/sat/scp2/source/sdkoo.po2
-rw-r--r--source/sat/scp2/source/smoketest.po2
-rw-r--r--source/sat/scp2/source/stdlibs.po2
-rw-r--r--source/sat/scp2/source/tde.po2
-rw-r--r--source/sat/scp2/source/winexplorerext.po2
-rw-r--r--source/sat/scp2/source/writer.po2
-rw-r--r--source/sat/scp2/source/xsltfilter.po2
-rw-r--r--source/sat/sd/source/core.po2
-rw-r--r--source/sat/sd/source/filter/html.po2
-rw-r--r--source/sat/sd/source/ui/accessibility.po2
-rw-r--r--source/sat/sd/source/ui/animations.po2
-rw-r--r--source/sat/sd/source/ui/annotations.po2
-rw-r--r--source/sat/sd/source/ui/app.po2
-rw-r--r--source/sat/sd/source/ui/dlg.po2
-rw-r--r--source/sat/sd/source/ui/slideshow.po2
-rw-r--r--source/sat/sd/source/ui/table.po2
-rw-r--r--source/sat/sd/source/ui/view.po2
-rw-r--r--source/sat/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/sat/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/sat/sdext/source/minimizer.po2
-rw-r--r--source/sat/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sat/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/sat/setup_native/source/mac.po2
-rw-r--r--source/sat/sfx2/source/appl.po2
-rw-r--r--source/sat/sfx2/source/bastyp.po2
-rw-r--r--source/sat/sfx2/source/control.po23
-rw-r--r--source/sat/sfx2/source/dialog.po51
-rw-r--r--source/sat/sfx2/source/doc.po150
-rw-r--r--source/sat/sfx2/source/menu.po2
-rw-r--r--source/sat/sfx2/source/view.po2
-rw-r--r--source/sat/sfx2/uiconfig/ui.po2
-rw-r--r--source/sat/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/sat/starmath/source.po2
-rw-r--r--source/sat/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/sat/svl/source/items.po2
-rw-r--r--source/sat/svl/source/misc.po2
-rw-r--r--source/sat/svtools/source/contnr.po2
-rw-r--r--source/sat/svtools/source/control.po2
-rw-r--r--source/sat/svtools/source/dialogs.po2
-rw-r--r--source/sat/svtools/source/java.po2
-rw-r--r--source/sat/svtools/source/misc.po2
-rw-r--r--source/sat/svtools/source/toolpanel.po2
-rw-r--r--source/sat/svtools/uiconfig/ui.po55
-rw-r--r--source/sat/svx/inc.po2
-rw-r--r--source/sat/svx/source/accessibility.po2
-rw-r--r--source/sat/svx/source/core.po2
-rw-r--r--source/sat/svx/source/dialog.po225
-rw-r--r--source/sat/svx/source/engine3d.po2
-rw-r--r--source/sat/svx/source/fmcomp.po2
-rw-r--r--source/sat/svx/source/form.po2
-rw-r--r--source/sat/svx/source/gallery2.po2
-rw-r--r--source/sat/svx/source/items.po2
-rw-r--r--source/sat/svx/source/src.po2
-rw-r--r--source/sat/svx/source/stbctrls.po2
-rw-r--r--source/sat/svx/source/svdraw.po2
-rw-r--r--source/sat/svx/source/table.po2
-rw-r--r--source/sat/svx/source/tbxctrls.po2
-rw-r--r--source/sat/svx/source/toolbars.po2
-rw-r--r--source/sat/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/sat/svx/uiconfig/ui.po204
-rw-r--r--source/sat/sw/source/core/layout.po2
-rw-r--r--source/sat/sw/source/core/undo.po2
-rw-r--r--source/sat/sw/source/core/unocore.po2
-rw-r--r--source/sat/sw/source/ui/app.po2
-rw-r--r--source/sat/sw/source/ui/chrdlg.po2
-rw-r--r--source/sat/sw/source/ui/config.po2
-rw-r--r--source/sat/sw/source/ui/dbui.po2
-rw-r--r--source/sat/sw/source/ui/dialog.po2
-rw-r--r--source/sat/sw/source/ui/dochdl.po2
-rw-r--r--source/sat/sw/source/ui/docvw.po2
-rw-r--r--source/sat/sw/source/ui/envelp.po2
-rw-r--r--source/sat/sw/source/ui/fldui.po2
-rw-r--r--source/sat/sw/source/ui/fmtui.po2
-rw-r--r--source/sat/sw/source/ui/frmdlg.po2
-rw-r--r--source/sat/sw/source/ui/globdoc.po2
-rw-r--r--source/sat/sw/source/ui/index.po2
-rw-r--r--source/sat/sw/source/ui/lingu.po2
-rw-r--r--source/sat/sw/source/ui/misc.po2
-rw-r--r--source/sat/sw/source/ui/ribbar.po2
-rw-r--r--source/sat/sw/source/ui/shells.po2
-rw-r--r--source/sat/sw/source/ui/smartmenu.po2
-rw-r--r--source/sat/sw/source/ui/table.po2
-rw-r--r--source/sat/sw/source/ui/uiview.po2
-rw-r--r--source/sat/sw/source/ui/utlui.po2
-rw-r--r--source/sat/sw/source/ui/web.po2
-rw-r--r--source/sat/sw/source/ui/wrtsh.po2
-rw-r--r--source/sat/sw/uiconfig/sw/ui.po281
-rw-r--r--source/sat/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/sat/swext/mediawiki/help.po2
-rw-r--r--source/sat/swext/mediawiki/src.po2
-rw-r--r--source/sat/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sat/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/sat/sysui/desktop/share.po2
-rw-r--r--source/sat/tubes/uiconfig/ui.po2
-rw-r--r--source/sat/uui/source.po2
-rw-r--r--source/sat/vcl/qa/cppunit/builder.po2
-rw-r--r--source/sat/vcl/source/edit.po2
-rw-r--r--source/sat/vcl/source/src.po2
-rw-r--r--source/sat/vcl/uiconfig/ui.po2
-rw-r--r--source/sat/wizards/source/euro.po2
-rw-r--r--source/sat/wizards/source/formwizard.po2
-rw-r--r--source/sat/wizards/source/importwizard.po2
-rw-r--r--source/sat/wizards/source/template.po2
-rw-r--r--source/sat/xmlsecurity/source/component.po2
-rw-r--r--source/sat/xmlsecurity/source/dialogs.po2
-rw-r--r--source/sd/accessibility/source/helper.po2
-rw-r--r--source/sd/android/sdremote/res/values.po2
-rw-r--r--source/sd/avmedia/source/framework.po2
-rw-r--r--source/sd/avmedia/source/viewer.po2
-rw-r--r--source/sd/basctl/source/basicide.po2
-rw-r--r--source/sd/basctl/source/dlged.po2
-rw-r--r--source/sd/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/sd/basic/source/classes.po2
-rw-r--r--source/sd/basic/source/sbx.po2
-rw-r--r--source/sd/chart2/source/controller/dialogs.po2
-rw-r--r--source/sd/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/connectivity/source/resource.po2
-rw-r--r--source/sd/cui/source/customize.po2
-rw-r--r--source/sd/cui/source/dialogs.po2
-rw-r--r--source/sd/cui/source/options.po2
-rw-r--r--source/sd/cui/source/tabpages.po2
-rw-r--r--source/sd/cui/uiconfig/ui.po2
-rw-r--r--source/sd/dbaccess/source/core/resource.po2
-rw-r--r--source/sd/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/sd/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/sd/dbaccess/source/ui/app.po2
-rw-r--r--source/sd/dbaccess/source/ui/browser.po2
-rw-r--r--source/sd/dbaccess/source/ui/control.po2
-rw-r--r--source/sd/dbaccess/source/ui/dlg.po2
-rw-r--r--source/sd/dbaccess/source/ui/inc.po2
-rw-r--r--source/sd/dbaccess/source/ui/misc.po2
-rw-r--r--source/sd/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/sd/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/sd/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/sd/dbaccess/source/ui/uno.po2
-rw-r--r--source/sd/desktop/source/app.po2
-rw-r--r--source/sd/desktop/source/deployment/gui.po2
-rw-r--r--source/sd/desktop/source/deployment/manager.po2
-rw-r--r--source/sd/desktop/source/deployment/misc.po2
-rw-r--r--source/sd/desktop/source/deployment/registry.po2
-rw-r--r--source/sd/desktop/source/deployment/registry/component.po2
-rw-r--r--source/sd/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/sd/desktop/source/deployment/registry/help.po2
-rw-r--r--source/sd/desktop/source/deployment/registry/package.po2
-rw-r--r--source/sd/desktop/source/deployment/registry/script.po2
-rw-r--r--source/sd/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/sd/desktop/source/deployment/unopkg.po2
-rw-r--r--source/sd/desktop/uiconfig/ui.po2
-rw-r--r--source/sd/dictionaries/af_ZA.po2
-rw-r--r--source/sd/dictionaries/an_ES.po2
-rw-r--r--source/sd/dictionaries/ar.po2
-rw-r--r--source/sd/dictionaries/be_BY.po2
-rw-r--r--source/sd/dictionaries/bg_BG.po2
-rw-r--r--source/sd/dictionaries/bn_BD.po2
-rw-r--r--source/sd/dictionaries/br_FR.po2
-rw-r--r--source/sd/dictionaries/ca.po2
-rw-r--r--source/sd/dictionaries/cs_CZ.po2
-rw-r--r--source/sd/dictionaries/da_DK.po2
-rw-r--r--source/sd/dictionaries/de.po2
-rw-r--r--source/sd/dictionaries/el_GR.po2
-rw-r--r--source/sd/dictionaries/en.po2
-rw-r--r--source/sd/dictionaries/en/dialog.po2
-rw-r--r--source/sd/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sd/dictionaries/es.po2
-rw-r--r--source/sd/dictionaries/et_EE.po2
-rw-r--r--source/sd/dictionaries/fr_FR.po2
-rw-r--r--source/sd/dictionaries/gd_GB.po2
-rw-r--r--source/sd/dictionaries/gl.po2
-rw-r--r--source/sd/dictionaries/gu_IN.po2
-rw-r--r--source/sd/dictionaries/he_IL.po2
-rw-r--r--source/sd/dictionaries/hi_IN.po2
-rw-r--r--source/sd/dictionaries/hr_HR.po2
-rw-r--r--source/sd/dictionaries/hu_HU.po2
-rw-r--r--source/sd/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/sd/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sd/dictionaries/it_IT.po2
-rw-r--r--source/sd/dictionaries/ku_TR.po2
-rw-r--r--source/sd/dictionaries/lt_LT.po2
-rw-r--r--source/sd/dictionaries/lv_LV.po2
-rw-r--r--source/sd/dictionaries/ne_NP.po2
-rw-r--r--source/sd/dictionaries/nl_NL.po2
-rw-r--r--source/sd/dictionaries/no.po2
-rw-r--r--source/sd/dictionaries/oc_FR.po2
-rw-r--r--source/sd/dictionaries/pl_PL.po2
-rw-r--r--source/sd/dictionaries/pt_BR.po2
-rw-r--r--source/sd/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/sd/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sd/dictionaries/pt_PT.po2
-rw-r--r--source/sd/dictionaries/ro.po2
-rw-r--r--source/sd/dictionaries/ru_RU.po2
-rw-r--r--source/sd/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/sd/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sd/dictionaries/si_LK.po2
-rw-r--r--source/sd/dictionaries/sk_SK.po2
-rw-r--r--source/sd/dictionaries/sl_SI.po2
-rw-r--r--source/sd/dictionaries/sr.po2
-rw-r--r--source/sd/dictionaries/sv_SE.po2
-rw-r--r--source/sd/dictionaries/sw_TZ.po2
-rw-r--r--source/sd/dictionaries/te_IN.po2
-rw-r--r--source/sd/dictionaries/th_TH.po2
-rw-r--r--source/sd/dictionaries/uk_UA.po2
-rw-r--r--source/sd/dictionaries/vi.po2
-rw-r--r--source/sd/dictionaries/zu_ZA.po2
-rw-r--r--source/sd/editeng/source/accessibility.po2
-rw-r--r--source/sd/editeng/source/editeng.po2
-rw-r--r--source/sd/editeng/source/items.po2
-rw-r--r--source/sd/editeng/source/misc.po2
-rw-r--r--source/sd/editeng/source/outliner.po2
-rw-r--r--source/sd/extensions/source/abpilot.po2
-rw-r--r--source/sd/extensions/source/bibliography.po2
-rw-r--r--source/sd/extensions/source/dbpilots.po2
-rw-r--r--source/sd/extensions/source/propctrlr.po2
-rw-r--r--source/sd/extensions/source/scanner.po2
-rw-r--r--source/sd/extensions/source/update/check.po2
-rw-r--r--source/sd/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/sd/filter/source/config/fragments/filters.po2
-rw-r--r--source/sd/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/sd/filter/source/config/fragments/types.po2
-rw-r--r--source/sd/filter/source/flash.po2
-rw-r--r--source/sd/filter/source/graphicfilter/eps.po2
-rw-r--r--source/sd/filter/source/pdf.po2
-rw-r--r--source/sd/filter/source/t602.po2
-rw-r--r--source/sd/filter/source/xsltdialog.po2
-rw-r--r--source/sd/filter/uiconfig/ui.po2
-rw-r--r--source/sd/forms/source/resource.po2
-rw-r--r--source/sd/formula/source/core/resource.po38
-rw-r--r--source/sd/formula/source/ui/dlg.po2
-rw-r--r--source/sd/fpicker/source/office.po2
-rw-r--r--source/sd/framework/source/classes.po2
-rw-r--r--source/sd/framework/source/services.po2
-rw-r--r--source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/sd/librelogo/source/pythonpath.po2
-rw-r--r--source/sd/mysqlc/source.po2
-rw-r--r--source/sd/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sd/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/sd/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/sd/nlpsolver/src/locale.po2
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/sd/padmin/source.po2
-rw-r--r--source/sd/readlicense_oo/docs.po2
-rw-r--r--source/sd/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/sd/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sd/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/sd/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/sd/reportbuilder/util.po2
-rw-r--r--source/sd/reportdesign/source/core/resource.po2
-rw-r--r--source/sd/reportdesign/source/ui/dlg.po2
-rw-r--r--source/sd/reportdesign/source/ui/inspection.po2
-rw-r--r--source/sd/reportdesign/source/ui/report.po2
-rw-r--r--source/sd/sc/source/core/src.po2
-rw-r--r--source/sd/sc/source/ui/cctrl.po2
-rw-r--r--source/sd/sc/source/ui/dbgui.po2
-rw-r--r--source/sd/sc/source/ui/docshell.po2
-rw-r--r--source/sd/sc/source/ui/drawfunc.po2
-rw-r--r--source/sd/sc/source/ui/formdlg.po2
-rw-r--r--source/sd/sc/source/ui/miscdlgs.po2
-rw-r--r--source/sd/sc/source/ui/navipi.po2
-rw-r--r--source/sd/sc/source/ui/optdlg.po2
-rw-r--r--source/sd/sc/source/ui/pagedlg.po2
-rw-r--r--source/sd/sc/source/ui/src.po390
-rw-r--r--source/sd/sc/source/ui/styleui.po2
-rw-r--r--source/sd/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/sd/scaddins/source/analysis.po2
-rw-r--r--source/sd/scaddins/source/datefunc.po2
-rw-r--r--source/sd/scaddins/source/pricing.po2
-rw-r--r--source/sd/sccomp/source/solver.po2
-rw-r--r--source/sd/scp2/source/accessories.po2
-rw-r--r--source/sd/scp2/source/activex.po2
-rw-r--r--source/sd/scp2/source/base.po2
-rw-r--r--source/sd/scp2/source/calc.po2
-rw-r--r--source/sd/scp2/source/draw.po2
-rw-r--r--source/sd/scp2/source/extensions.po2
-rw-r--r--source/sd/scp2/source/gnome.po2
-rw-r--r--source/sd/scp2/source/graphicfilter.po2
-rw-r--r--source/sd/scp2/source/impress.po2
-rw-r--r--source/sd/scp2/source/javafilter.po2
-rw-r--r--source/sd/scp2/source/kde.po2
-rw-r--r--source/sd/scp2/source/math.po2
-rw-r--r--source/sd/scp2/source/onlineupdate.po2
-rw-r--r--source/sd/scp2/source/ooo.po2
-rw-r--r--source/sd/scp2/source/python.po18
-rw-r--r--source/sd/scp2/source/quickstart.po2
-rw-r--r--source/sd/scp2/source/sdkoo.po2
-rw-r--r--source/sd/scp2/source/smoketest.po2
-rw-r--r--source/sd/scp2/source/stdlibs.po2
-rw-r--r--source/sd/scp2/source/tde.po2
-rw-r--r--source/sd/scp2/source/winexplorerext.po2
-rw-r--r--source/sd/scp2/source/writer.po2
-rw-r--r--source/sd/scp2/source/xsltfilter.po2
-rw-r--r--source/sd/sd/source/core.po2
-rw-r--r--source/sd/sd/source/filter/html.po2
-rw-r--r--source/sd/sd/source/ui/accessibility.po2
-rw-r--r--source/sd/sd/source/ui/animations.po2
-rw-r--r--source/sd/sd/source/ui/annotations.po2
-rw-r--r--source/sd/sd/source/ui/app.po2
-rw-r--r--source/sd/sd/source/ui/dlg.po2
-rw-r--r--source/sd/sd/source/ui/slideshow.po2
-rw-r--r--source/sd/sd/source/ui/table.po2
-rw-r--r--source/sd/sd/source/ui/view.po2
-rw-r--r--source/sd/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/sd/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/sd/sdext/source/minimizer.po2
-rw-r--r--source/sd/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sd/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/sd/setup_native/source/mac.po2
-rw-r--r--source/sd/sfx2/source/appl.po2
-rw-r--r--source/sd/sfx2/source/bastyp.po2
-rw-r--r--source/sd/sfx2/source/control.po23
-rw-r--r--source/sd/sfx2/source/dialog.po46
-rw-r--r--source/sd/sfx2/source/doc.po126
-rw-r--r--source/sd/sfx2/source/menu.po2
-rw-r--r--source/sd/sfx2/source/view.po2
-rw-r--r--source/sd/sfx2/uiconfig/ui.po2
-rw-r--r--source/sd/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/sd/starmath/source.po2
-rw-r--r--source/sd/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/sd/svl/source/items.po2
-rw-r--r--source/sd/svl/source/misc.po2
-rw-r--r--source/sd/svtools/source/contnr.po2
-rw-r--r--source/sd/svtools/source/control.po2
-rw-r--r--source/sd/svtools/source/dialogs.po2
-rw-r--r--source/sd/svtools/source/java.po2
-rw-r--r--source/sd/svtools/source/misc.po2
-rw-r--r--source/sd/svtools/source/toolpanel.po2
-rw-r--r--source/sd/svtools/uiconfig/ui.po55
-rw-r--r--source/sd/svx/inc.po2
-rw-r--r--source/sd/svx/source/accessibility.po2
-rw-r--r--source/sd/svx/source/core.po2
-rw-r--r--source/sd/svx/source/dialog.po225
-rw-r--r--source/sd/svx/source/engine3d.po2
-rw-r--r--source/sd/svx/source/fmcomp.po2
-rw-r--r--source/sd/svx/source/form.po2
-rw-r--r--source/sd/svx/source/gallery2.po2
-rw-r--r--source/sd/svx/source/items.po2
-rw-r--r--source/sd/svx/source/src.po2
-rw-r--r--source/sd/svx/source/stbctrls.po2
-rw-r--r--source/sd/svx/source/svdraw.po2
-rw-r--r--source/sd/svx/source/table.po2
-rw-r--r--source/sd/svx/source/tbxctrls.po2
-rw-r--r--source/sd/svx/source/toolbars.po2
-rw-r--r--source/sd/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/sd/svx/uiconfig/ui.po204
-rw-r--r--source/sd/sw/source/core/layout.po2
-rw-r--r--source/sd/sw/source/core/undo.po2
-rw-r--r--source/sd/sw/source/core/unocore.po2
-rw-r--r--source/sd/sw/source/ui/app.po2
-rw-r--r--source/sd/sw/source/ui/chrdlg.po2
-rw-r--r--source/sd/sw/source/ui/config.po2
-rw-r--r--source/sd/sw/source/ui/dbui.po2
-rw-r--r--source/sd/sw/source/ui/dialog.po2
-rw-r--r--source/sd/sw/source/ui/dochdl.po2
-rw-r--r--source/sd/sw/source/ui/docvw.po2
-rw-r--r--source/sd/sw/source/ui/envelp.po2
-rw-r--r--source/sd/sw/source/ui/fldui.po2
-rw-r--r--source/sd/sw/source/ui/fmtui.po2
-rw-r--r--source/sd/sw/source/ui/frmdlg.po2
-rw-r--r--source/sd/sw/source/ui/globdoc.po2
-rw-r--r--source/sd/sw/source/ui/index.po2
-rw-r--r--source/sd/sw/source/ui/lingu.po2
-rw-r--r--source/sd/sw/source/ui/misc.po2
-rw-r--r--source/sd/sw/source/ui/ribbar.po2
-rw-r--r--source/sd/sw/source/ui/shells.po2
-rw-r--r--source/sd/sw/source/ui/smartmenu.po2
-rw-r--r--source/sd/sw/source/ui/table.po2
-rw-r--r--source/sd/sw/source/ui/uiview.po2
-rw-r--r--source/sd/sw/source/ui/utlui.po2
-rw-r--r--source/sd/sw/source/ui/web.po2
-rw-r--r--source/sd/sw/source/ui/wrtsh.po2
-rw-r--r--source/sd/sw/uiconfig/sw/ui.po282
-rw-r--r--source/sd/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/sd/swext/mediawiki/help.po2
-rw-r--r--source/sd/swext/mediawiki/src.po2
-rw-r--r--source/sd/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sd/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/sd/sysui/desktop/share.po2
-rw-r--r--source/sd/tubes/uiconfig/ui.po2
-rw-r--r--source/sd/uui/source.po2
-rw-r--r--source/sd/vcl/qa/cppunit/builder.po2
-rw-r--r--source/sd/vcl/source/edit.po2
-rw-r--r--source/sd/vcl/source/src.po2
-rw-r--r--source/sd/vcl/uiconfig/ui.po2
-rw-r--r--source/sd/wizards/source/euro.po2
-rw-r--r--source/sd/wizards/source/formwizard.po2
-rw-r--r--source/sd/wizards/source/importwizard.po2
-rw-r--r--source/sd/wizards/source/template.po2
-rw-r--r--source/sd/xmlsecurity/source/component.po2
-rw-r--r--source/sd/xmlsecurity/source/dialogs.po2
-rw-r--r--source/si/accessibility/source/helper.po2
-rw-r--r--source/si/android/sdremote/res/values.po2
-rw-r--r--source/si/avmedia/source/framework.po2
-rw-r--r--source/si/avmedia/source/viewer.po2
-rw-r--r--source/si/basctl/source/basicide.po2
-rw-r--r--source/si/basctl/source/dlged.po2
-rw-r--r--source/si/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/si/basic/source/classes.po2
-rw-r--r--source/si/basic/source/sbx.po2
-rw-r--r--source/si/chart2/source/controller/dialogs.po2
-rw-r--r--source/si/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/connectivity/source/resource.po2
-rw-r--r--source/si/cui/source/customize.po2
-rw-r--r--source/si/cui/source/dialogs.po2
-rw-r--r--source/si/cui/source/options.po2
-rw-r--r--source/si/cui/source/tabpages.po2
-rw-r--r--source/si/cui/uiconfig/ui.po2
-rw-r--r--source/si/dbaccess/source/core/resource.po2
-rw-r--r--source/si/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/si/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/si/dbaccess/source/ui/app.po2
-rw-r--r--source/si/dbaccess/source/ui/browser.po2
-rw-r--r--source/si/dbaccess/source/ui/control.po2
-rw-r--r--source/si/dbaccess/source/ui/dlg.po2
-rw-r--r--source/si/dbaccess/source/ui/inc.po2
-rw-r--r--source/si/dbaccess/source/ui/misc.po2
-rw-r--r--source/si/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/si/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/si/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/si/dbaccess/source/ui/uno.po2
-rw-r--r--source/si/desktop/source/app.po2
-rw-r--r--source/si/desktop/source/deployment/gui.po2
-rw-r--r--source/si/desktop/source/deployment/manager.po2
-rw-r--r--source/si/desktop/source/deployment/misc.po2
-rw-r--r--source/si/desktop/source/deployment/registry.po2
-rw-r--r--source/si/desktop/source/deployment/registry/component.po2
-rw-r--r--source/si/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/si/desktop/source/deployment/registry/help.po2
-rw-r--r--source/si/desktop/source/deployment/registry/package.po2
-rw-r--r--source/si/desktop/source/deployment/registry/script.po2
-rw-r--r--source/si/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/si/desktop/source/deployment/unopkg.po2
-rw-r--r--source/si/desktop/uiconfig/ui.po2
-rw-r--r--source/si/dictionaries/af_ZA.po2
-rw-r--r--source/si/dictionaries/an_ES.po2
-rw-r--r--source/si/dictionaries/ar.po2
-rw-r--r--source/si/dictionaries/be_BY.po2
-rw-r--r--source/si/dictionaries/bg_BG.po2
-rw-r--r--source/si/dictionaries/bn_BD.po2
-rw-r--r--source/si/dictionaries/br_FR.po2
-rw-r--r--source/si/dictionaries/ca.po2
-rw-r--r--source/si/dictionaries/cs_CZ.po2
-rw-r--r--source/si/dictionaries/da_DK.po2
-rw-r--r--source/si/dictionaries/de.po2
-rw-r--r--source/si/dictionaries/el_GR.po2
-rw-r--r--source/si/dictionaries/en.po2
-rw-r--r--source/si/dictionaries/en/dialog.po2
-rw-r--r--source/si/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/si/dictionaries/es.po2
-rw-r--r--source/si/dictionaries/et_EE.po2
-rw-r--r--source/si/dictionaries/fr_FR.po2
-rw-r--r--source/si/dictionaries/gd_GB.po2
-rw-r--r--source/si/dictionaries/gl.po2
-rw-r--r--source/si/dictionaries/gu_IN.po2
-rw-r--r--source/si/dictionaries/he_IL.po2
-rw-r--r--source/si/dictionaries/hi_IN.po2
-rw-r--r--source/si/dictionaries/hr_HR.po2
-rw-r--r--source/si/dictionaries/hu_HU.po2
-rw-r--r--source/si/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/si/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/si/dictionaries/it_IT.po2
-rw-r--r--source/si/dictionaries/ku_TR.po2
-rw-r--r--source/si/dictionaries/lt_LT.po2
-rw-r--r--source/si/dictionaries/lv_LV.po2
-rw-r--r--source/si/dictionaries/ne_NP.po2
-rw-r--r--source/si/dictionaries/nl_NL.po2
-rw-r--r--source/si/dictionaries/no.po2
-rw-r--r--source/si/dictionaries/oc_FR.po2
-rw-r--r--source/si/dictionaries/pl_PL.po2
-rw-r--r--source/si/dictionaries/pt_BR.po2
-rw-r--r--source/si/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/si/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/si/dictionaries/pt_PT.po2
-rw-r--r--source/si/dictionaries/ro.po2
-rw-r--r--source/si/dictionaries/ru_RU.po2
-rw-r--r--source/si/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/si/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/si/dictionaries/si_LK.po2
-rw-r--r--source/si/dictionaries/sk_SK.po2
-rw-r--r--source/si/dictionaries/sl_SI.po2
-rw-r--r--source/si/dictionaries/sr.po2
-rw-r--r--source/si/dictionaries/sv_SE.po2
-rw-r--r--source/si/dictionaries/sw_TZ.po2
-rw-r--r--source/si/dictionaries/te_IN.po2
-rw-r--r--source/si/dictionaries/th_TH.po2
-rw-r--r--source/si/dictionaries/uk_UA.po2
-rw-r--r--source/si/dictionaries/vi.po2
-rw-r--r--source/si/dictionaries/zu_ZA.po2
-rw-r--r--source/si/editeng/source/accessibility.po2
-rw-r--r--source/si/editeng/source/editeng.po2
-rw-r--r--source/si/editeng/source/items.po2
-rw-r--r--source/si/editeng/source/misc.po2
-rw-r--r--source/si/editeng/source/outliner.po2
-rw-r--r--source/si/extensions/source/abpilot.po2
-rw-r--r--source/si/extensions/source/bibliography.po2
-rw-r--r--source/si/extensions/source/dbpilots.po2
-rw-r--r--source/si/extensions/source/propctrlr.po2
-rw-r--r--source/si/extensions/source/scanner.po2
-rw-r--r--source/si/extensions/source/update/check.po2
-rw-r--r--source/si/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/si/filter/source/config/fragments/filters.po2
-rw-r--r--source/si/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/si/filter/source/config/fragments/types.po2
-rw-r--r--source/si/filter/source/flash.po2
-rw-r--r--source/si/filter/source/graphicfilter/eps.po2
-rw-r--r--source/si/filter/source/pdf.po2
-rw-r--r--source/si/filter/source/t602.po2
-rw-r--r--source/si/filter/source/xsltdialog.po2
-rw-r--r--source/si/filter/uiconfig/ui.po2
-rw-r--r--source/si/forms/source/resource.po2
-rw-r--r--source/si/formula/source/core/resource.po38
-rw-r--r--source/si/formula/source/ui/dlg.po2
-rw-r--r--source/si/fpicker/source/office.po2
-rw-r--r--source/si/framework/source/classes.po2
-rw-r--r--source/si/framework/source/services.po2
-rw-r--r--source/si/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/si/librelogo/source/pythonpath.po2
-rw-r--r--source/si/mysqlc/source.po2
-rw-r--r--source/si/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/si/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/si/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/si/nlpsolver/src/locale.po2
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/si/padmin/source.po2
-rw-r--r--source/si/readlicense_oo/docs.po2
-rw-r--r--source/si/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/si/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/si/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/si/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/si/reportbuilder/util.po2
-rw-r--r--source/si/reportdesign/source/core/resource.po2
-rw-r--r--source/si/reportdesign/source/ui/dlg.po2
-rw-r--r--source/si/reportdesign/source/ui/inspection.po2
-rw-r--r--source/si/reportdesign/source/ui/report.po2
-rw-r--r--source/si/sc/source/core/src.po2
-rw-r--r--source/si/sc/source/ui/cctrl.po2
-rw-r--r--source/si/sc/source/ui/dbgui.po2
-rw-r--r--source/si/sc/source/ui/docshell.po2
-rw-r--r--source/si/sc/source/ui/drawfunc.po2
-rw-r--r--source/si/sc/source/ui/formdlg.po2
-rw-r--r--source/si/sc/source/ui/miscdlgs.po2
-rw-r--r--source/si/sc/source/ui/navipi.po2
-rw-r--r--source/si/sc/source/ui/optdlg.po2
-rw-r--r--source/si/sc/source/ui/pagedlg.po2
-rw-r--r--source/si/sc/source/ui/src.po381
-rw-r--r--source/si/sc/source/ui/styleui.po2
-rw-r--r--source/si/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/si/scaddins/source/analysis.po2
-rw-r--r--source/si/scaddins/source/datefunc.po2
-rw-r--r--source/si/scaddins/source/pricing.po2
-rw-r--r--source/si/sccomp/source/solver.po2
-rw-r--r--source/si/scp2/source/accessories.po2
-rw-r--r--source/si/scp2/source/activex.po2
-rw-r--r--source/si/scp2/source/base.po2
-rw-r--r--source/si/scp2/source/calc.po2
-rw-r--r--source/si/scp2/source/draw.po2
-rw-r--r--source/si/scp2/source/extensions.po2
-rw-r--r--source/si/scp2/source/gnome.po2
-rw-r--r--source/si/scp2/source/graphicfilter.po2
-rw-r--r--source/si/scp2/source/impress.po2
-rw-r--r--source/si/scp2/source/javafilter.po2
-rw-r--r--source/si/scp2/source/kde.po2
-rw-r--r--source/si/scp2/source/math.po2
-rw-r--r--source/si/scp2/source/onlineupdate.po2
-rw-r--r--source/si/scp2/source/ooo.po2
-rw-r--r--source/si/scp2/source/python.po18
-rw-r--r--source/si/scp2/source/quickstart.po2
-rw-r--r--source/si/scp2/source/sdkoo.po2
-rw-r--r--source/si/scp2/source/smoketest.po2
-rw-r--r--source/si/scp2/source/stdlibs.po2
-rw-r--r--source/si/scp2/source/tde.po2
-rw-r--r--source/si/scp2/source/winexplorerext.po2
-rw-r--r--source/si/scp2/source/writer.po2
-rw-r--r--source/si/scp2/source/xsltfilter.po2
-rw-r--r--source/si/sd/source/core.po2
-rw-r--r--source/si/sd/source/filter/html.po2
-rw-r--r--source/si/sd/source/ui/accessibility.po2
-rw-r--r--source/si/sd/source/ui/animations.po2
-rw-r--r--source/si/sd/source/ui/annotations.po2
-rw-r--r--source/si/sd/source/ui/app.po2
-rw-r--r--source/si/sd/source/ui/dlg.po2
-rw-r--r--source/si/sd/source/ui/slideshow.po2
-rw-r--r--source/si/sd/source/ui/table.po2
-rw-r--r--source/si/sd/source/ui/view.po2
-rw-r--r--source/si/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/si/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/si/sdext/source/minimizer.po2
-rw-r--r--source/si/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/si/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/si/setup_native/source/mac.po2
-rw-r--r--source/si/sfx2/source/appl.po2
-rw-r--r--source/si/sfx2/source/bastyp.po2
-rw-r--r--source/si/sfx2/source/control.po23
-rw-r--r--source/si/sfx2/source/dialog.po46
-rw-r--r--source/si/sfx2/source/doc.po126
-rw-r--r--source/si/sfx2/source/menu.po2
-rw-r--r--source/si/sfx2/source/view.po2
-rw-r--r--source/si/sfx2/uiconfig/ui.po2
-rw-r--r--source/si/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/si/starmath/source.po2
-rw-r--r--source/si/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/si/svl/source/items.po2
-rw-r--r--source/si/svl/source/misc.po2
-rw-r--r--source/si/svtools/source/contnr.po2
-rw-r--r--source/si/svtools/source/control.po2
-rw-r--r--source/si/svtools/source/dialogs.po2
-rw-r--r--source/si/svtools/source/java.po2
-rw-r--r--source/si/svtools/source/misc.po2
-rw-r--r--source/si/svtools/source/toolpanel.po2
-rw-r--r--source/si/svtools/uiconfig/ui.po55
-rw-r--r--source/si/svx/inc.po2
-rw-r--r--source/si/svx/source/accessibility.po2
-rw-r--r--source/si/svx/source/core.po2
-rw-r--r--source/si/svx/source/dialog.po224
-rw-r--r--source/si/svx/source/engine3d.po2
-rw-r--r--source/si/svx/source/fmcomp.po2
-rw-r--r--source/si/svx/source/form.po2
-rw-r--r--source/si/svx/source/gallery2.po2
-rw-r--r--source/si/svx/source/items.po2
-rw-r--r--source/si/svx/source/src.po2
-rw-r--r--source/si/svx/source/stbctrls.po2
-rw-r--r--source/si/svx/source/svdraw.po2
-rw-r--r--source/si/svx/source/table.po2
-rw-r--r--source/si/svx/source/tbxctrls.po2
-rw-r--r--source/si/svx/source/toolbars.po2
-rw-r--r--source/si/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/si/svx/uiconfig/ui.po204
-rw-r--r--source/si/sw/source/core/layout.po2
-rw-r--r--source/si/sw/source/core/undo.po2
-rw-r--r--source/si/sw/source/core/unocore.po2
-rw-r--r--source/si/sw/source/ui/app.po2
-rw-r--r--source/si/sw/source/ui/chrdlg.po2
-rw-r--r--source/si/sw/source/ui/config.po2
-rw-r--r--source/si/sw/source/ui/dbui.po2
-rw-r--r--source/si/sw/source/ui/dialog.po2
-rw-r--r--source/si/sw/source/ui/dochdl.po2
-rw-r--r--source/si/sw/source/ui/docvw.po2
-rw-r--r--source/si/sw/source/ui/envelp.po2
-rw-r--r--source/si/sw/source/ui/fldui.po2
-rw-r--r--source/si/sw/source/ui/fmtui.po2
-rw-r--r--source/si/sw/source/ui/frmdlg.po2
-rw-r--r--source/si/sw/source/ui/globdoc.po2
-rw-r--r--source/si/sw/source/ui/index.po2
-rw-r--r--source/si/sw/source/ui/lingu.po2
-rw-r--r--source/si/sw/source/ui/misc.po2
-rw-r--r--source/si/sw/source/ui/ribbar.po2
-rw-r--r--source/si/sw/source/ui/shells.po2
-rw-r--r--source/si/sw/source/ui/smartmenu.po2
-rw-r--r--source/si/sw/source/ui/table.po2
-rw-r--r--source/si/sw/source/ui/uiview.po2
-rw-r--r--source/si/sw/source/ui/utlui.po2
-rw-r--r--source/si/sw/source/ui/web.po2
-rw-r--r--source/si/sw/source/ui/wrtsh.po2
-rw-r--r--source/si/sw/uiconfig/sw/ui.po284
-rw-r--r--source/si/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/si/swext/mediawiki/help.po2
-rw-r--r--source/si/swext/mediawiki/src.po2
-rw-r--r--source/si/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/si/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/si/sysui/desktop/share.po2
-rw-r--r--source/si/tubes/uiconfig/ui.po2
-rw-r--r--source/si/uui/source.po2
-rw-r--r--source/si/vcl/qa/cppunit/builder.po2
-rw-r--r--source/si/vcl/source/edit.po2
-rw-r--r--source/si/vcl/source/src.po2
-rw-r--r--source/si/vcl/uiconfig/ui.po2
-rw-r--r--source/si/wizards/source/euro.po2
-rw-r--r--source/si/wizards/source/formwizard.po2
-rw-r--r--source/si/wizards/source/importwizard.po2
-rw-r--r--source/si/wizards/source/template.po2
-rw-r--r--source/si/xmlsecurity/source/component.po2
-rw-r--r--source/si/xmlsecurity/source/dialogs.po2
-rw-r--r--source/sid/accessibility/source/helper.po2
-rw-r--r--source/sid/android/sdremote/res/values.po2
-rw-r--r--source/sid/avmedia/source/framework.po2
-rw-r--r--source/sid/avmedia/source/viewer.po2
-rw-r--r--source/sid/basctl/source/basicide.po2
-rw-r--r--source/sid/basctl/source/dlged.po2
-rw-r--r--source/sid/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/sid/basic/source/classes.po2
-rw-r--r--source/sid/basic/source/sbx.po2
-rw-r--r--source/sid/chart2/source/controller/dialogs.po2
-rw-r--r--source/sid/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/connectivity/source/resource.po2
-rw-r--r--source/sid/cui/source/customize.po2
-rw-r--r--source/sid/cui/source/dialogs.po2
-rw-r--r--source/sid/cui/source/options.po2
-rw-r--r--source/sid/cui/source/tabpages.po2
-rw-r--r--source/sid/cui/uiconfig/ui.po2
-rw-r--r--source/sid/dbaccess/source/core/resource.po2
-rw-r--r--source/sid/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/sid/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/sid/dbaccess/source/ui/app.po2
-rw-r--r--source/sid/dbaccess/source/ui/browser.po2
-rw-r--r--source/sid/dbaccess/source/ui/control.po2
-rw-r--r--source/sid/dbaccess/source/ui/dlg.po2
-rw-r--r--source/sid/dbaccess/source/ui/inc.po2
-rw-r--r--source/sid/dbaccess/source/ui/misc.po2
-rw-r--r--source/sid/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/sid/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/sid/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/sid/dbaccess/source/ui/uno.po2
-rw-r--r--source/sid/desktop/source/app.po2
-rw-r--r--source/sid/desktop/source/deployment/gui.po2
-rw-r--r--source/sid/desktop/source/deployment/manager.po2
-rw-r--r--source/sid/desktop/source/deployment/misc.po2
-rw-r--r--source/sid/desktop/source/deployment/registry.po2
-rw-r--r--source/sid/desktop/source/deployment/registry/component.po2
-rw-r--r--source/sid/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/sid/desktop/source/deployment/registry/help.po2
-rw-r--r--source/sid/desktop/source/deployment/registry/package.po2
-rw-r--r--source/sid/desktop/source/deployment/registry/script.po2
-rw-r--r--source/sid/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/sid/desktop/source/deployment/unopkg.po2
-rw-r--r--source/sid/desktop/uiconfig/ui.po2
-rw-r--r--source/sid/dictionaries/af_ZA.po2
-rw-r--r--source/sid/dictionaries/an_ES.po2
-rw-r--r--source/sid/dictionaries/ar.po2
-rw-r--r--source/sid/dictionaries/be_BY.po2
-rw-r--r--source/sid/dictionaries/bg_BG.po2
-rw-r--r--source/sid/dictionaries/bn_BD.po2
-rw-r--r--source/sid/dictionaries/br_FR.po2
-rw-r--r--source/sid/dictionaries/ca.po2
-rw-r--r--source/sid/dictionaries/cs_CZ.po2
-rw-r--r--source/sid/dictionaries/da_DK.po2
-rw-r--r--source/sid/dictionaries/de.po2
-rw-r--r--source/sid/dictionaries/el_GR.po2
-rw-r--r--source/sid/dictionaries/en.po2
-rw-r--r--source/sid/dictionaries/en/dialog.po2
-rw-r--r--source/sid/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sid/dictionaries/es.po2
-rw-r--r--source/sid/dictionaries/et_EE.po2
-rw-r--r--source/sid/dictionaries/fr_FR.po2
-rw-r--r--source/sid/dictionaries/gd_GB.po2
-rw-r--r--source/sid/dictionaries/gl.po2
-rw-r--r--source/sid/dictionaries/gu_IN.po2
-rw-r--r--source/sid/dictionaries/he_IL.po2
-rw-r--r--source/sid/dictionaries/hi_IN.po2
-rw-r--r--source/sid/dictionaries/hr_HR.po2
-rw-r--r--source/sid/dictionaries/hu_HU.po2
-rw-r--r--source/sid/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/sid/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sid/dictionaries/it_IT.po2
-rw-r--r--source/sid/dictionaries/ku_TR.po2
-rw-r--r--source/sid/dictionaries/lt_LT.po2
-rw-r--r--source/sid/dictionaries/lv_LV.po2
-rw-r--r--source/sid/dictionaries/ne_NP.po2
-rw-r--r--source/sid/dictionaries/nl_NL.po2
-rw-r--r--source/sid/dictionaries/no.po2
-rw-r--r--source/sid/dictionaries/oc_FR.po2
-rw-r--r--source/sid/dictionaries/pl_PL.po2
-rw-r--r--source/sid/dictionaries/pt_BR.po2
-rw-r--r--source/sid/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/sid/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sid/dictionaries/pt_PT.po2
-rw-r--r--source/sid/dictionaries/ro.po2
-rw-r--r--source/sid/dictionaries/ru_RU.po2
-rw-r--r--source/sid/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/sid/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sid/dictionaries/si_LK.po2
-rw-r--r--source/sid/dictionaries/sk_SK.po2
-rw-r--r--source/sid/dictionaries/sl_SI.po2
-rw-r--r--source/sid/dictionaries/sr.po2
-rw-r--r--source/sid/dictionaries/sv_SE.po2
-rw-r--r--source/sid/dictionaries/sw_TZ.po2
-rw-r--r--source/sid/dictionaries/te_IN.po2
-rw-r--r--source/sid/dictionaries/th_TH.po2
-rw-r--r--source/sid/dictionaries/uk_UA.po2
-rw-r--r--source/sid/dictionaries/vi.po2
-rw-r--r--source/sid/dictionaries/zu_ZA.po2
-rw-r--r--source/sid/editeng/source/accessibility.po2
-rw-r--r--source/sid/editeng/source/editeng.po2
-rw-r--r--source/sid/editeng/source/items.po2
-rw-r--r--source/sid/editeng/source/misc.po2
-rw-r--r--source/sid/editeng/source/outliner.po2
-rw-r--r--source/sid/extensions/source/abpilot.po2
-rw-r--r--source/sid/extensions/source/bibliography.po2
-rw-r--r--source/sid/extensions/source/dbpilots.po2
-rw-r--r--source/sid/extensions/source/propctrlr.po2
-rw-r--r--source/sid/extensions/source/scanner.po2
-rw-r--r--source/sid/extensions/source/update/check.po2
-rw-r--r--source/sid/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/sid/filter/source/config/fragments/filters.po2
-rw-r--r--source/sid/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/sid/filter/source/config/fragments/types.po2
-rw-r--r--source/sid/filter/source/flash.po2
-rw-r--r--source/sid/filter/source/graphicfilter/eps.po2
-rw-r--r--source/sid/filter/source/pdf.po2
-rw-r--r--source/sid/filter/source/t602.po2
-rw-r--r--source/sid/filter/source/xsltdialog.po2
-rw-r--r--source/sid/filter/uiconfig/ui.po2
-rw-r--r--source/sid/forms/source/resource.po2
-rw-r--r--source/sid/formula/source/core/resource.po38
-rw-r--r--source/sid/formula/source/ui/dlg.po2
-rw-r--r--source/sid/fpicker/source/office.po2
-rw-r--r--source/sid/framework/source/classes.po2
-rw-r--r--source/sid/framework/source/services.po2
-rw-r--r--source/sid/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/sid/librelogo/source/pythonpath.po2
-rw-r--r--source/sid/mysqlc/source.po2
-rw-r--r--source/sid/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sid/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/sid/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/sid/nlpsolver/src/locale.po2
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office.po4
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/sid/padmin/source.po2
-rw-r--r--source/sid/readlicense_oo/docs.po2
-rw-r--r--source/sid/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/sid/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sid/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/sid/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/sid/reportbuilder/util.po2
-rw-r--r--source/sid/reportdesign/source/core/resource.po2
-rw-r--r--source/sid/reportdesign/source/ui/dlg.po2
-rw-r--r--source/sid/reportdesign/source/ui/inspection.po2
-rw-r--r--source/sid/reportdesign/source/ui/report.po2
-rw-r--r--source/sid/sc/source/core/src.po2
-rw-r--r--source/sid/sc/source/ui/cctrl.po2
-rw-r--r--source/sid/sc/source/ui/dbgui.po2
-rw-r--r--source/sid/sc/source/ui/docshell.po2
-rw-r--r--source/sid/sc/source/ui/drawfunc.po2
-rw-r--r--source/sid/sc/source/ui/formdlg.po2
-rw-r--r--source/sid/sc/source/ui/miscdlgs.po2
-rw-r--r--source/sid/sc/source/ui/navipi.po2
-rw-r--r--source/sid/sc/source/ui/optdlg.po2
-rw-r--r--source/sid/sc/source/ui/pagedlg.po2
-rw-r--r--source/sid/sc/source/ui/src.po376
-rw-r--r--source/sid/sc/source/ui/styleui.po2
-rw-r--r--source/sid/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/sid/scaddins/source/analysis.po2
-rw-r--r--source/sid/scaddins/source/datefunc.po2
-rw-r--r--source/sid/scaddins/source/pricing.po2
-rw-r--r--source/sid/sccomp/source/solver.po2
-rw-r--r--source/sid/scp2/source/accessories.po2
-rw-r--r--source/sid/scp2/source/activex.po2
-rw-r--r--source/sid/scp2/source/base.po2
-rw-r--r--source/sid/scp2/source/calc.po2
-rw-r--r--source/sid/scp2/source/draw.po2
-rw-r--r--source/sid/scp2/source/extensions.po2
-rw-r--r--source/sid/scp2/source/gnome.po2
-rw-r--r--source/sid/scp2/source/graphicfilter.po2
-rw-r--r--source/sid/scp2/source/impress.po2
-rw-r--r--source/sid/scp2/source/javafilter.po2
-rw-r--r--source/sid/scp2/source/kde.po2
-rw-r--r--source/sid/scp2/source/math.po2
-rw-r--r--source/sid/scp2/source/onlineupdate.po2
-rw-r--r--source/sid/scp2/source/ooo.po2
-rw-r--r--source/sid/scp2/source/python.po18
-rw-r--r--source/sid/scp2/source/quickstart.po2
-rw-r--r--source/sid/scp2/source/sdkoo.po2
-rw-r--r--source/sid/scp2/source/smoketest.po2
-rw-r--r--source/sid/scp2/source/stdlibs.po2
-rw-r--r--source/sid/scp2/source/tde.po2
-rw-r--r--source/sid/scp2/source/winexplorerext.po2
-rw-r--r--source/sid/scp2/source/writer.po2
-rw-r--r--source/sid/scp2/source/xsltfilter.po2
-rw-r--r--source/sid/sd/source/core.po2
-rw-r--r--source/sid/sd/source/filter/html.po2
-rw-r--r--source/sid/sd/source/ui/accessibility.po2
-rw-r--r--source/sid/sd/source/ui/animations.po2
-rw-r--r--source/sid/sd/source/ui/annotations.po2
-rw-r--r--source/sid/sd/source/ui/app.po2
-rw-r--r--source/sid/sd/source/ui/dlg.po2
-rw-r--r--source/sid/sd/source/ui/slideshow.po2
-rw-r--r--source/sid/sd/source/ui/table.po2
-rw-r--r--source/sid/sd/source/ui/view.po2
-rw-r--r--source/sid/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/sid/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/sid/sdext/source/minimizer.po2
-rw-r--r--source/sid/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sid/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/sid/setup_native/source/mac.po2
-rw-r--r--source/sid/sfx2/source/appl.po2
-rw-r--r--source/sid/sfx2/source/bastyp.po2
-rw-r--r--source/sid/sfx2/source/control.po23
-rw-r--r--source/sid/sfx2/source/dialog.po46
-rw-r--r--source/sid/sfx2/source/doc.po126
-rw-r--r--source/sid/sfx2/source/menu.po2
-rw-r--r--source/sid/sfx2/source/view.po2
-rw-r--r--source/sid/sfx2/uiconfig/ui.po2
-rw-r--r--source/sid/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/sid/starmath/source.po2
-rw-r--r--source/sid/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/sid/svl/source/items.po2
-rw-r--r--source/sid/svl/source/misc.po2
-rw-r--r--source/sid/svtools/source/contnr.po2
-rw-r--r--source/sid/svtools/source/control.po2
-rw-r--r--source/sid/svtools/source/dialogs.po2
-rw-r--r--source/sid/svtools/source/java.po2
-rw-r--r--source/sid/svtools/source/misc.po2
-rw-r--r--source/sid/svtools/source/toolpanel.po2
-rw-r--r--source/sid/svtools/uiconfig/ui.po49
-rw-r--r--source/sid/svx/inc.po2
-rw-r--r--source/sid/svx/source/accessibility.po2
-rw-r--r--source/sid/svx/source/core.po2
-rw-r--r--source/sid/svx/source/dialog.po223
-rw-r--r--source/sid/svx/source/engine3d.po2
-rw-r--r--source/sid/svx/source/fmcomp.po2
-rw-r--r--source/sid/svx/source/form.po2
-rw-r--r--source/sid/svx/source/gallery2.po2
-rw-r--r--source/sid/svx/source/items.po2
-rw-r--r--source/sid/svx/source/src.po2
-rw-r--r--source/sid/svx/source/stbctrls.po2
-rw-r--r--source/sid/svx/source/svdraw.po2
-rw-r--r--source/sid/svx/source/table.po2
-rw-r--r--source/sid/svx/source/tbxctrls.po2
-rw-r--r--source/sid/svx/source/toolbars.po2
-rw-r--r--source/sid/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/sid/svx/uiconfig/ui.po204
-rw-r--r--source/sid/sw/source/core/layout.po2
-rw-r--r--source/sid/sw/source/core/undo.po2
-rw-r--r--source/sid/sw/source/core/unocore.po2
-rw-r--r--source/sid/sw/source/ui/app.po2
-rw-r--r--source/sid/sw/source/ui/chrdlg.po2
-rw-r--r--source/sid/sw/source/ui/config.po2
-rw-r--r--source/sid/sw/source/ui/dbui.po2
-rw-r--r--source/sid/sw/source/ui/dialog.po2
-rw-r--r--source/sid/sw/source/ui/dochdl.po2
-rw-r--r--source/sid/sw/source/ui/docvw.po2
-rw-r--r--source/sid/sw/source/ui/envelp.po2
-rw-r--r--source/sid/sw/source/ui/fldui.po2
-rw-r--r--source/sid/sw/source/ui/fmtui.po2
-rw-r--r--source/sid/sw/source/ui/frmdlg.po2
-rw-r--r--source/sid/sw/source/ui/globdoc.po2
-rw-r--r--source/sid/sw/source/ui/index.po2
-rw-r--r--source/sid/sw/source/ui/lingu.po2
-rw-r--r--source/sid/sw/source/ui/misc.po2
-rw-r--r--source/sid/sw/source/ui/ribbar.po2
-rw-r--r--source/sid/sw/source/ui/shells.po2
-rw-r--r--source/sid/sw/source/ui/smartmenu.po2
-rw-r--r--source/sid/sw/source/ui/table.po2
-rw-r--r--source/sid/sw/source/ui/uiview.po2
-rw-r--r--source/sid/sw/source/ui/utlui.po2
-rw-r--r--source/sid/sw/source/ui/web.po2
-rw-r--r--source/sid/sw/source/ui/wrtsh.po2
-rw-r--r--source/sid/sw/uiconfig/sw/ui.po284
-rw-r--r--source/sid/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/sid/swext/mediawiki/help.po2
-rw-r--r--source/sid/swext/mediawiki/src.po2
-rw-r--r--source/sid/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sid/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/sid/sysui/desktop/share.po2
-rw-r--r--source/sid/tubes/uiconfig/ui.po2
-rw-r--r--source/sid/uui/source.po2
-rw-r--r--source/sid/vcl/qa/cppunit/builder.po2
-rw-r--r--source/sid/vcl/source/edit.po2
-rw-r--r--source/sid/vcl/source/src.po2
-rw-r--r--source/sid/vcl/uiconfig/ui.po2
-rw-r--r--source/sid/wizards/source/euro.po2
-rw-r--r--source/sid/wizards/source/formwizard.po2
-rw-r--r--source/sid/wizards/source/importwizard.po2
-rw-r--r--source/sid/wizards/source/template.po2
-rw-r--r--source/sid/xmlsecurity/source/component.po2
-rw-r--r--source/sid/xmlsecurity/source/dialogs.po2
-rw-r--r--source/sk/accessibility/source/helper.po2
-rw-r--r--source/sk/android/sdremote/res/values.po2
-rw-r--r--source/sk/avmedia/source/framework.po2
-rw-r--r--source/sk/avmedia/source/viewer.po2
-rw-r--r--source/sk/basctl/source/basicide.po2
-rw-r--r--source/sk/basctl/source/dlged.po2
-rw-r--r--source/sk/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/sk/basic/source/classes.po2
-rw-r--r--source/sk/basic/source/sbx.po2
-rw-r--r--source/sk/chart2/source/controller/dialogs.po9
-rw-r--r--source/sk/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/connectivity/source/resource.po2
-rw-r--r--source/sk/cui/source/customize.po4
-rw-r--r--source/sk/cui/source/dialogs.po2
-rw-r--r--source/sk/cui/source/options.po22
-rw-r--r--source/sk/cui/source/tabpages.po8
-rw-r--r--source/sk/cui/uiconfig/ui.po34
-rw-r--r--source/sk/dbaccess/source/core/resource.po2
-rw-r--r--source/sk/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/sk/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/sk/dbaccess/source/ui/app.po2
-rw-r--r--source/sk/dbaccess/source/ui/browser.po10
-rw-r--r--source/sk/dbaccess/source/ui/control.po2
-rw-r--r--source/sk/dbaccess/source/ui/dlg.po40
-rw-r--r--source/sk/dbaccess/source/ui/inc.po2
-rw-r--r--source/sk/dbaccess/source/ui/misc.po2
-rw-r--r--source/sk/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/sk/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/sk/dbaccess/source/ui/tabledesign.po9
-rw-r--r--source/sk/dbaccess/source/ui/uno.po2
-rw-r--r--source/sk/desktop/source/app.po2
-rw-r--r--source/sk/desktop/source/deployment/gui.po2
-rw-r--r--source/sk/desktop/source/deployment/manager.po2
-rw-r--r--source/sk/desktop/source/deployment/misc.po2
-rw-r--r--source/sk/desktop/source/deployment/registry.po2
-rw-r--r--source/sk/desktop/source/deployment/registry/component.po2
-rw-r--r--source/sk/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/sk/desktop/source/deployment/registry/help.po2
-rw-r--r--source/sk/desktop/source/deployment/registry/package.po2
-rw-r--r--source/sk/desktop/source/deployment/registry/script.po2
-rw-r--r--source/sk/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/sk/desktop/source/deployment/unopkg.po2
-rw-r--r--source/sk/desktop/uiconfig/ui.po2
-rw-r--r--source/sk/dictionaries/af_ZA.po2
-rw-r--r--source/sk/dictionaries/an_ES.po2
-rw-r--r--source/sk/dictionaries/ar.po2
-rw-r--r--source/sk/dictionaries/be_BY.po2
-rw-r--r--source/sk/dictionaries/bg_BG.po2
-rw-r--r--source/sk/dictionaries/bn_BD.po2
-rw-r--r--source/sk/dictionaries/br_FR.po2
-rw-r--r--source/sk/dictionaries/ca.po2
-rw-r--r--source/sk/dictionaries/cs_CZ.po2
-rw-r--r--source/sk/dictionaries/da_DK.po2
-rw-r--r--source/sk/dictionaries/de.po2
-rw-r--r--source/sk/dictionaries/el_GR.po2
-rw-r--r--source/sk/dictionaries/en.po2
-rw-r--r--source/sk/dictionaries/en/dialog.po2
-rw-r--r--source/sk/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sk/dictionaries/es.po2
-rw-r--r--source/sk/dictionaries/et_EE.po2
-rw-r--r--source/sk/dictionaries/fr_FR.po2
-rw-r--r--source/sk/dictionaries/gd_GB.po2
-rw-r--r--source/sk/dictionaries/gl.po2
-rw-r--r--source/sk/dictionaries/gu_IN.po2
-rw-r--r--source/sk/dictionaries/he_IL.po2
-rw-r--r--source/sk/dictionaries/hi_IN.po2
-rw-r--r--source/sk/dictionaries/hr_HR.po2
-rw-r--r--source/sk/dictionaries/hu_HU.po2
-rw-r--r--source/sk/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/sk/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sk/dictionaries/it_IT.po2
-rw-r--r--source/sk/dictionaries/ku_TR.po2
-rw-r--r--source/sk/dictionaries/lt_LT.po2
-rw-r--r--source/sk/dictionaries/lv_LV.po2
-rw-r--r--source/sk/dictionaries/ne_NP.po2
-rw-r--r--source/sk/dictionaries/nl_NL.po2
-rw-r--r--source/sk/dictionaries/no.po2
-rw-r--r--source/sk/dictionaries/oc_FR.po2
-rw-r--r--source/sk/dictionaries/pl_PL.po2
-rw-r--r--source/sk/dictionaries/pt_BR.po9
-rw-r--r--source/sk/dictionaries/pt_BR/dialog.po84
-rw-r--r--source/sk/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po14
-rw-r--r--source/sk/dictionaries/pt_PT.po2
-rw-r--r--source/sk/dictionaries/ro.po2
-rw-r--r--source/sk/dictionaries/ru_RU.po2
-rw-r--r--source/sk/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/sk/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sk/dictionaries/si_LK.po2
-rw-r--r--source/sk/dictionaries/sk_SK.po2
-rw-r--r--source/sk/dictionaries/sl_SI.po2
-rw-r--r--source/sk/dictionaries/sr.po2
-rw-r--r--source/sk/dictionaries/sv_SE.po2
-rw-r--r--source/sk/dictionaries/sw_TZ.po2
-rw-r--r--source/sk/dictionaries/te_IN.po2
-rw-r--r--source/sk/dictionaries/th_TH.po2
-rw-r--r--source/sk/dictionaries/uk_UA.po2
-rw-r--r--source/sk/dictionaries/vi.po2
-rw-r--r--source/sk/dictionaries/zu_ZA.po2
-rw-r--r--source/sk/editeng/source/accessibility.po2
-rw-r--r--source/sk/editeng/source/editeng.po2
-rw-r--r--source/sk/editeng/source/items.po2
-rw-r--r--source/sk/editeng/source/misc.po2
-rw-r--r--source/sk/editeng/source/outliner.po2
-rw-r--r--source/sk/extensions/source/abpilot.po2
-rw-r--r--source/sk/extensions/source/bibliography.po2
-rw-r--r--source/sk/extensions/source/dbpilots.po2
-rw-r--r--source/sk/extensions/source/propctrlr.po2
-rw-r--r--source/sk/extensions/source/scanner.po2
-rw-r--r--source/sk/extensions/source/update/check.po2
-rw-r--r--source/sk/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/sk/filter/source/config/fragments/filters.po2
-rw-r--r--source/sk/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/sk/filter/source/config/fragments/types.po2
-rw-r--r--source/sk/filter/source/flash.po2
-rw-r--r--source/sk/filter/source/graphicfilter/eps.po2
-rw-r--r--source/sk/filter/source/pdf.po2
-rw-r--r--source/sk/filter/source/t602.po2
-rw-r--r--source/sk/filter/source/xsltdialog.po2
-rw-r--r--source/sk/filter/uiconfig/ui.po2
-rw-r--r--source/sk/forms/source/resource.po2
-rw-r--r--source/sk/formula/source/core/resource.po44
-rw-r--r--source/sk/formula/source/ui/dlg.po2
-rw-r--r--source/sk/fpicker/source/office.po2
-rw-r--r--source/sk/framework/source/classes.po2
-rw-r--r--source/sk/framework/source/services.po2
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po106
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po9
-rw-r--r--source/sk/instsetoo_native/inc_openoffice/windows/msi_languages.po9
-rw-r--r--source/sk/librelogo/source/pythonpath.po2
-rw-r--r--source/sk/mysqlc/source.po2
-rw-r--r--source/sk/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sk/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/sk/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/sk/nlpsolver/src/locale.po2
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office.po165
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po107
-rw-r--r--source/sk/padmin/source.po4
-rw-r--r--source/sk/readlicense_oo/docs.po2
-rw-r--r--source/sk/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/sk/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sk/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/sk/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/sk/reportbuilder/util.po2
-rw-r--r--source/sk/reportdesign/source/core/resource.po2
-rw-r--r--source/sk/reportdesign/source/ui/dlg.po2
-rw-r--r--source/sk/reportdesign/source/ui/inspection.po2
-rw-r--r--source/sk/reportdesign/source/ui/report.po2
-rw-r--r--source/sk/sc/source/core/src.po2
-rw-r--r--source/sk/sc/source/ui/cctrl.po2
-rw-r--r--source/sk/sc/source/ui/dbgui.po12
-rw-r--r--source/sk/sc/source/ui/docshell.po9
-rw-r--r--source/sk/sc/source/ui/drawfunc.po2
-rw-r--r--source/sk/sc/source/ui/formdlg.po9
-rw-r--r--source/sk/sc/source/ui/miscdlgs.po39
-rw-r--r--source/sk/sc/source/ui/navipi.po9
-rw-r--r--source/sk/sc/source/ui/optdlg.po2
-rw-r--r--source/sk/sc/source/ui/pagedlg.po11
-rw-r--r--source/sk/sc/source/ui/src.po533
-rw-r--r--source/sk/sc/source/ui/styleui.po8
-rw-r--r--source/sk/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/sk/scaddins/source/analysis.po2
-rw-r--r--source/sk/scaddins/source/datefunc.po2
-rw-r--r--source/sk/scaddins/source/pricing.po70
-rw-r--r--source/sk/sccomp/source/solver.po2
-rw-r--r--source/sk/scp2/source/accessories.po2
-rw-r--r--source/sk/scp2/source/activex.po2
-rw-r--r--source/sk/scp2/source/base.po2
-rw-r--r--source/sk/scp2/source/calc.po2
-rw-r--r--source/sk/scp2/source/draw.po2
-rw-r--r--source/sk/scp2/source/extensions.po2
-rw-r--r--source/sk/scp2/source/gnome.po2
-rw-r--r--source/sk/scp2/source/graphicfilter.po2
-rw-r--r--source/sk/scp2/source/impress.po2
-rw-r--r--source/sk/scp2/source/javafilter.po2
-rw-r--r--source/sk/scp2/source/kde.po2
-rw-r--r--source/sk/scp2/source/math.po2
-rw-r--r--source/sk/scp2/source/onlineupdate.po2
-rw-r--r--source/sk/scp2/source/ooo.po4
-rw-r--r--source/sk/scp2/source/python.po24
-rw-r--r--source/sk/scp2/source/quickstart.po2
-rw-r--r--source/sk/scp2/source/sdkoo.po2
-rw-r--r--source/sk/scp2/source/smoketest.po2
-rw-r--r--source/sk/scp2/source/stdlibs.po2
-rw-r--r--source/sk/scp2/source/tde.po2
-rw-r--r--source/sk/scp2/source/winexplorerext.po2
-rw-r--r--source/sk/scp2/source/writer.po2
-rw-r--r--source/sk/scp2/source/xsltfilter.po2
-rw-r--r--source/sk/sd/source/core.po4
-rw-r--r--source/sk/sd/source/filter/html.po2
-rw-r--r--source/sk/sd/source/ui/accessibility.po4
-rw-r--r--source/sk/sd/source/ui/animations.po2
-rw-r--r--source/sk/sd/source/ui/annotations.po2
-rw-r--r--source/sk/sd/source/ui/app.po16
-rw-r--r--source/sk/sd/source/ui/dlg.po7
-rw-r--r--source/sk/sd/source/ui/slideshow.po2
-rw-r--r--source/sk/sd/source/ui/table.po14
-rw-r--r--source/sk/sd/source/ui/view.po14
-rw-r--r--source/sk/sd/uiconfig/sdraw/ui.po12
-rw-r--r--source/sk/sd/uiconfig/simpress/ui.po12
-rw-r--r--source/sk/sdext/source/minimizer.po2
-rw-r--r--source/sk/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sk/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/sk/setup_native/source/mac.po2
-rw-r--r--source/sk/sfx2/source/appl.po15
-rw-r--r--source/sk/sfx2/source/bastyp.po2
-rw-r--r--source/sk/sfx2/source/control.po25
-rw-r--r--source/sk/sfx2/source/dialog.po63
-rw-r--r--source/sk/sfx2/source/doc.po198
-rw-r--r--source/sk/sfx2/source/menu.po2
-rw-r--r--source/sk/sfx2/source/view.po11
-rw-r--r--source/sk/sfx2/uiconfig/ui.po24
-rw-r--r--source/sk/shell/source/win32/shlxthandler/res.po9
-rw-r--r--source/sk/starmath/source.po2
-rw-r--r--source/sk/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/sk/svl/source/items.po2
-rw-r--r--source/sk/svl/source/misc.po2
-rw-r--r--source/sk/svtools/source/contnr.po2
-rw-r--r--source/sk/svtools/source/control.po2
-rw-r--r--source/sk/svtools/source/dialogs.po2
-rw-r--r--source/sk/svtools/source/java.po2
-rw-r--r--source/sk/svtools/source/misc.po36
-rw-r--r--source/sk/svtools/source/toolpanel.po2
-rw-r--r--source/sk/svtools/uiconfig/ui.po79
-rw-r--r--source/sk/svx/inc.po13
-rw-r--r--source/sk/svx/source/accessibility.po2
-rw-r--r--source/sk/svx/source/core.po2
-rw-r--r--source/sk/svx/source/dialog.po244
-rw-r--r--source/sk/svx/source/engine3d.po2
-rw-r--r--source/sk/svx/source/fmcomp.po2
-rw-r--r--source/sk/svx/source/form.po2
-rw-r--r--source/sk/svx/source/gallery2.po2
-rw-r--r--source/sk/svx/source/items.po2
-rw-r--r--source/sk/svx/source/src.po2
-rw-r--r--source/sk/svx/source/stbctrls.po2
-rw-r--r--source/sk/svx/source/svdraw.po9
-rw-r--r--source/sk/svx/source/table.po2
-rw-r--r--source/sk/svx/source/tbxctrls.po2
-rw-r--r--source/sk/svx/source/toolbars.po2
-rw-r--r--source/sk/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/sk/svx/uiconfig/ui.po206
-rw-r--r--source/sk/sw/source/core/layout.po2
-rw-r--r--source/sk/sw/source/core/undo.po4
-rw-r--r--source/sk/sw/source/core/unocore.po2
-rw-r--r--source/sk/sw/source/ui/app.po4
-rw-r--r--source/sk/sw/source/ui/chrdlg.po4
-rw-r--r--source/sk/sw/source/ui/config.po4
-rw-r--r--source/sk/sw/source/ui/dbui.po2
-rw-r--r--source/sk/sw/source/ui/dialog.po2
-rw-r--r--source/sk/sw/source/ui/dochdl.po2
-rw-r--r--source/sk/sw/source/ui/docvw.po2
-rw-r--r--source/sk/sw/source/ui/envelp.po9
-rw-r--r--source/sk/sw/source/ui/fldui.po2
-rw-r--r--source/sk/sw/source/ui/fmtui.po2
-rw-r--r--source/sk/sw/source/ui/frmdlg.po2
-rw-r--r--source/sk/sw/source/ui/globdoc.po2
-rw-r--r--source/sk/sw/source/ui/index.po4
-rw-r--r--source/sk/sw/source/ui/lingu.po2
-rw-r--r--source/sk/sw/source/ui/misc.po2
-rw-r--r--source/sk/sw/source/ui/ribbar.po2
-rw-r--r--source/sk/sw/source/ui/shells.po2
-rw-r--r--source/sk/sw/source/ui/smartmenu.po2
-rw-r--r--source/sk/sw/source/ui/table.po7
-rw-r--r--source/sk/sw/source/ui/uiview.po2
-rw-r--r--source/sk/sw/source/ui/utlui.po40
-rw-r--r--source/sk/sw/source/ui/web.po2
-rw-r--r--source/sk/sw/source/ui/wrtsh.po2
-rw-r--r--source/sk/sw/uiconfig/sw/ui.po278
-rw-r--r--source/sk/sw/uiconfig/swriter/ui.po356
-rw-r--r--source/sk/swext/mediawiki/help.po2
-rw-r--r--source/sk/swext/mediawiki/src.po2
-rw-r--r--source/sk/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sk/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/sk/sysui/desktop/share.po2
-rw-r--r--source/sk/tubes/uiconfig/ui.po14
-rw-r--r--source/sk/uui/source.po2
-rw-r--r--source/sk/vcl/qa/cppunit/builder.po84
-rw-r--r--source/sk/vcl/source/edit.po19
-rw-r--r--source/sk/vcl/source/src.po13
-rw-r--r--source/sk/vcl/uiconfig/ui.po53
-rw-r--r--source/sk/wizards/source/euro.po25
-rw-r--r--source/sk/wizards/source/formwizard.po107
-rw-r--r--source/sk/wizards/source/importwizard.po2
-rw-r--r--source/sk/wizards/source/template.po30
-rw-r--r--source/sk/xmlsecurity/source/component.po2
-rw-r--r--source/sk/xmlsecurity/source/dialogs.po2
-rw-r--r--source/sq/accessibility/source/helper.po2
-rw-r--r--source/sq/android/sdremote/res/values.po2
-rw-r--r--source/sq/avmedia/source/framework.po2
-rw-r--r--source/sq/avmedia/source/viewer.po2
-rw-r--r--source/sq/basctl/source/basicide.po2
-rw-r--r--source/sq/basctl/source/dlged.po2
-rw-r--r--source/sq/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/sq/basic/source/classes.po2
-rw-r--r--source/sq/basic/source/sbx.po2
-rw-r--r--source/sq/chart2/source/controller/dialogs.po2
-rw-r--r--source/sq/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/connectivity/source/resource.po2
-rw-r--r--source/sq/cui/source/customize.po2
-rw-r--r--source/sq/cui/source/dialogs.po2
-rw-r--r--source/sq/cui/source/options.po2
-rw-r--r--source/sq/cui/source/tabpages.po2
-rw-r--r--source/sq/cui/uiconfig/ui.po2
-rw-r--r--source/sq/dbaccess/source/core/resource.po2
-rw-r--r--source/sq/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/sq/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/sq/dbaccess/source/ui/app.po2
-rw-r--r--source/sq/dbaccess/source/ui/browser.po2
-rw-r--r--source/sq/dbaccess/source/ui/control.po2
-rw-r--r--source/sq/dbaccess/source/ui/dlg.po2
-rw-r--r--source/sq/dbaccess/source/ui/inc.po2
-rw-r--r--source/sq/dbaccess/source/ui/misc.po2
-rw-r--r--source/sq/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/sq/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/sq/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/sq/dbaccess/source/ui/uno.po2
-rw-r--r--source/sq/desktop/source/app.po2
-rw-r--r--source/sq/desktop/source/deployment/gui.po2
-rw-r--r--source/sq/desktop/source/deployment/manager.po2
-rw-r--r--source/sq/desktop/source/deployment/misc.po2
-rw-r--r--source/sq/desktop/source/deployment/registry.po2
-rw-r--r--source/sq/desktop/source/deployment/registry/component.po2
-rw-r--r--source/sq/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/sq/desktop/source/deployment/registry/help.po2
-rw-r--r--source/sq/desktop/source/deployment/registry/package.po2
-rw-r--r--source/sq/desktop/source/deployment/registry/script.po2
-rw-r--r--source/sq/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/sq/desktop/source/deployment/unopkg.po2
-rw-r--r--source/sq/desktop/uiconfig/ui.po2
-rw-r--r--source/sq/dictionaries/af_ZA.po2
-rw-r--r--source/sq/dictionaries/an_ES.po2
-rw-r--r--source/sq/dictionaries/ar.po2
-rw-r--r--source/sq/dictionaries/be_BY.po2
-rw-r--r--source/sq/dictionaries/bg_BG.po2
-rw-r--r--source/sq/dictionaries/bn_BD.po2
-rw-r--r--source/sq/dictionaries/br_FR.po2
-rw-r--r--source/sq/dictionaries/ca.po2
-rw-r--r--source/sq/dictionaries/cs_CZ.po2
-rw-r--r--source/sq/dictionaries/da_DK.po2
-rw-r--r--source/sq/dictionaries/de.po2
-rw-r--r--source/sq/dictionaries/el_GR.po2
-rw-r--r--source/sq/dictionaries/en.po2
-rw-r--r--source/sq/dictionaries/en/dialog.po2
-rw-r--r--source/sq/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sq/dictionaries/es.po2
-rw-r--r--source/sq/dictionaries/et_EE.po2
-rw-r--r--source/sq/dictionaries/fr_FR.po2
-rw-r--r--source/sq/dictionaries/gd_GB.po2
-rw-r--r--source/sq/dictionaries/gl.po2
-rw-r--r--source/sq/dictionaries/gu_IN.po2
-rw-r--r--source/sq/dictionaries/he_IL.po2
-rw-r--r--source/sq/dictionaries/hi_IN.po2
-rw-r--r--source/sq/dictionaries/hr_HR.po2
-rw-r--r--source/sq/dictionaries/hu_HU.po2
-rw-r--r--source/sq/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/sq/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sq/dictionaries/it_IT.po2
-rw-r--r--source/sq/dictionaries/ku_TR.po2
-rw-r--r--source/sq/dictionaries/lt_LT.po2
-rw-r--r--source/sq/dictionaries/lv_LV.po2
-rw-r--r--source/sq/dictionaries/ne_NP.po2
-rw-r--r--source/sq/dictionaries/nl_NL.po2
-rw-r--r--source/sq/dictionaries/no.po2
-rw-r--r--source/sq/dictionaries/oc_FR.po2
-rw-r--r--source/sq/dictionaries/pl_PL.po2
-rw-r--r--source/sq/dictionaries/pt_BR.po2
-rw-r--r--source/sq/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/sq/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sq/dictionaries/pt_PT.po2
-rw-r--r--source/sq/dictionaries/ro.po2
-rw-r--r--source/sq/dictionaries/ru_RU.po2
-rw-r--r--source/sq/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/sq/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sq/dictionaries/si_LK.po2
-rw-r--r--source/sq/dictionaries/sk_SK.po2
-rw-r--r--source/sq/dictionaries/sl_SI.po2
-rw-r--r--source/sq/dictionaries/sr.po2
-rw-r--r--source/sq/dictionaries/sv_SE.po2
-rw-r--r--source/sq/dictionaries/sw_TZ.po2
-rw-r--r--source/sq/dictionaries/te_IN.po2
-rw-r--r--source/sq/dictionaries/th_TH.po2
-rw-r--r--source/sq/dictionaries/uk_UA.po2
-rw-r--r--source/sq/dictionaries/vi.po2
-rw-r--r--source/sq/dictionaries/zu_ZA.po2
-rw-r--r--source/sq/editeng/source/accessibility.po2
-rw-r--r--source/sq/editeng/source/editeng.po2
-rw-r--r--source/sq/editeng/source/items.po2
-rw-r--r--source/sq/editeng/source/misc.po2
-rw-r--r--source/sq/editeng/source/outliner.po2
-rw-r--r--source/sq/extensions/source/abpilot.po2
-rw-r--r--source/sq/extensions/source/bibliography.po2
-rw-r--r--source/sq/extensions/source/dbpilots.po2
-rw-r--r--source/sq/extensions/source/propctrlr.po2
-rw-r--r--source/sq/extensions/source/scanner.po2
-rw-r--r--source/sq/extensions/source/update/check.po2
-rw-r--r--source/sq/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/sq/filter/source/config/fragments/filters.po2
-rw-r--r--source/sq/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/sq/filter/source/config/fragments/types.po2
-rw-r--r--source/sq/filter/source/flash.po2
-rw-r--r--source/sq/filter/source/graphicfilter/eps.po2
-rw-r--r--source/sq/filter/source/pdf.po2
-rw-r--r--source/sq/filter/source/t602.po2
-rw-r--r--source/sq/filter/source/xsltdialog.po2
-rw-r--r--source/sq/filter/uiconfig/ui.po2
-rw-r--r--source/sq/forms/source/resource.po2
-rw-r--r--source/sq/formula/source/core/resource.po38
-rw-r--r--source/sq/formula/source/ui/dlg.po2
-rw-r--r--source/sq/fpicker/source/office.po2
-rw-r--r--source/sq/framework/source/classes.po2
-rw-r--r--source/sq/framework/source/services.po2
-rw-r--r--source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/sq/librelogo/source/pythonpath.po2
-rw-r--r--source/sq/mysqlc/source.po2
-rw-r--r--source/sq/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sq/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/sq/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/sq/nlpsolver/src/locale.po2
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/sq/padmin/source.po2
-rw-r--r--source/sq/readlicense_oo/docs.po2
-rw-r--r--source/sq/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/sq/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sq/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/sq/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/sq/reportbuilder/util.po2
-rw-r--r--source/sq/reportdesign/source/core/resource.po2
-rw-r--r--source/sq/reportdesign/source/ui/dlg.po2
-rw-r--r--source/sq/reportdesign/source/ui/inspection.po2
-rw-r--r--source/sq/reportdesign/source/ui/report.po2
-rw-r--r--source/sq/sc/source/core/src.po2
-rw-r--r--source/sq/sc/source/ui/cctrl.po2
-rw-r--r--source/sq/sc/source/ui/dbgui.po2
-rw-r--r--source/sq/sc/source/ui/docshell.po2
-rw-r--r--source/sq/sc/source/ui/drawfunc.po2
-rw-r--r--source/sq/sc/source/ui/formdlg.po2
-rw-r--r--source/sq/sc/source/ui/miscdlgs.po2
-rw-r--r--source/sq/sc/source/ui/navipi.po2
-rw-r--r--source/sq/sc/source/ui/optdlg.po2
-rw-r--r--source/sq/sc/source/ui/pagedlg.po2
-rw-r--r--source/sq/sc/source/ui/src.po379
-rw-r--r--source/sq/sc/source/ui/styleui.po2
-rw-r--r--source/sq/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/sq/scaddins/source/analysis.po2
-rw-r--r--source/sq/scaddins/source/datefunc.po2
-rw-r--r--source/sq/scaddins/source/pricing.po2
-rw-r--r--source/sq/sccomp/source/solver.po2
-rw-r--r--source/sq/scp2/source/accessories.po2
-rw-r--r--source/sq/scp2/source/activex.po2
-rw-r--r--source/sq/scp2/source/base.po2
-rw-r--r--source/sq/scp2/source/calc.po2
-rw-r--r--source/sq/scp2/source/draw.po2
-rw-r--r--source/sq/scp2/source/extensions.po2
-rw-r--r--source/sq/scp2/source/gnome.po2
-rw-r--r--source/sq/scp2/source/graphicfilter.po2
-rw-r--r--source/sq/scp2/source/impress.po2
-rw-r--r--source/sq/scp2/source/javafilter.po2
-rw-r--r--source/sq/scp2/source/kde.po2
-rw-r--r--source/sq/scp2/source/math.po2
-rw-r--r--source/sq/scp2/source/onlineupdate.po2
-rw-r--r--source/sq/scp2/source/ooo.po2
-rw-r--r--source/sq/scp2/source/python.po18
-rw-r--r--source/sq/scp2/source/quickstart.po2
-rw-r--r--source/sq/scp2/source/sdkoo.po2
-rw-r--r--source/sq/scp2/source/smoketest.po2
-rw-r--r--source/sq/scp2/source/stdlibs.po2
-rw-r--r--source/sq/scp2/source/tde.po2
-rw-r--r--source/sq/scp2/source/winexplorerext.po2
-rw-r--r--source/sq/scp2/source/writer.po2
-rw-r--r--source/sq/scp2/source/xsltfilter.po2
-rw-r--r--source/sq/sd/source/core.po2
-rw-r--r--source/sq/sd/source/filter/html.po2
-rw-r--r--source/sq/sd/source/ui/accessibility.po2
-rw-r--r--source/sq/sd/source/ui/animations.po2
-rw-r--r--source/sq/sd/source/ui/annotations.po2
-rw-r--r--source/sq/sd/source/ui/app.po2
-rw-r--r--source/sq/sd/source/ui/dlg.po2
-rw-r--r--source/sq/sd/source/ui/slideshow.po2
-rw-r--r--source/sq/sd/source/ui/table.po2
-rw-r--r--source/sq/sd/source/ui/view.po2
-rw-r--r--source/sq/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/sq/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/sq/sdext/source/minimizer.po2
-rw-r--r--source/sq/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sq/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/sq/setup_native/source/mac.po2
-rw-r--r--source/sq/sfx2/source/appl.po2
-rw-r--r--source/sq/sfx2/source/bastyp.po2
-rw-r--r--source/sq/sfx2/source/control.po23
-rw-r--r--source/sq/sfx2/source/dialog.po46
-rw-r--r--source/sq/sfx2/source/doc.po126
-rw-r--r--source/sq/sfx2/source/menu.po2
-rw-r--r--source/sq/sfx2/source/view.po2
-rw-r--r--source/sq/sfx2/uiconfig/ui.po2
-rw-r--r--source/sq/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/sq/starmath/source.po2
-rw-r--r--source/sq/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/sq/svl/source/items.po2
-rw-r--r--source/sq/svl/source/misc.po2
-rw-r--r--source/sq/svtools/source/contnr.po2
-rw-r--r--source/sq/svtools/source/control.po2
-rw-r--r--source/sq/svtools/source/dialogs.po2
-rw-r--r--source/sq/svtools/source/java.po2
-rw-r--r--source/sq/svtools/source/misc.po2
-rw-r--r--source/sq/svtools/source/toolpanel.po2
-rw-r--r--source/sq/svtools/uiconfig/ui.po55
-rw-r--r--source/sq/svx/inc.po2
-rw-r--r--source/sq/svx/source/accessibility.po2
-rw-r--r--source/sq/svx/source/core.po2
-rw-r--r--source/sq/svx/source/dialog.po223
-rw-r--r--source/sq/svx/source/engine3d.po2
-rw-r--r--source/sq/svx/source/fmcomp.po2
-rw-r--r--source/sq/svx/source/form.po2
-rw-r--r--source/sq/svx/source/gallery2.po2
-rw-r--r--source/sq/svx/source/items.po2
-rw-r--r--source/sq/svx/source/src.po2
-rw-r--r--source/sq/svx/source/stbctrls.po2
-rw-r--r--source/sq/svx/source/svdraw.po2
-rw-r--r--source/sq/svx/source/table.po2
-rw-r--r--source/sq/svx/source/tbxctrls.po2
-rw-r--r--source/sq/svx/source/toolbars.po2
-rw-r--r--source/sq/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/sq/svx/uiconfig/ui.po204
-rw-r--r--source/sq/sw/source/core/layout.po2
-rw-r--r--source/sq/sw/source/core/undo.po2
-rw-r--r--source/sq/sw/source/core/unocore.po2
-rw-r--r--source/sq/sw/source/ui/app.po2
-rw-r--r--source/sq/sw/source/ui/chrdlg.po2
-rw-r--r--source/sq/sw/source/ui/config.po2
-rw-r--r--source/sq/sw/source/ui/dbui.po2
-rw-r--r--source/sq/sw/source/ui/dialog.po2
-rw-r--r--source/sq/sw/source/ui/dochdl.po2
-rw-r--r--source/sq/sw/source/ui/docvw.po2
-rw-r--r--source/sq/sw/source/ui/envelp.po2
-rw-r--r--source/sq/sw/source/ui/fldui.po2
-rw-r--r--source/sq/sw/source/ui/fmtui.po2
-rw-r--r--source/sq/sw/source/ui/frmdlg.po2
-rw-r--r--source/sq/sw/source/ui/globdoc.po2
-rw-r--r--source/sq/sw/source/ui/index.po2
-rw-r--r--source/sq/sw/source/ui/lingu.po2
-rw-r--r--source/sq/sw/source/ui/misc.po2
-rw-r--r--source/sq/sw/source/ui/ribbar.po2
-rw-r--r--source/sq/sw/source/ui/shells.po2
-rw-r--r--source/sq/sw/source/ui/smartmenu.po2
-rw-r--r--source/sq/sw/source/ui/table.po2
-rw-r--r--source/sq/sw/source/ui/uiview.po2
-rw-r--r--source/sq/sw/source/ui/utlui.po2
-rw-r--r--source/sq/sw/source/ui/web.po2
-rw-r--r--source/sq/sw/source/ui/wrtsh.po2
-rw-r--r--source/sq/sw/uiconfig/sw/ui.po284
-rw-r--r--source/sq/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/sq/swext/mediawiki/help.po2
-rw-r--r--source/sq/swext/mediawiki/src.po2
-rw-r--r--source/sq/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sq/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/sq/sysui/desktop/share.po2
-rw-r--r--source/sq/tubes/uiconfig/ui.po2
-rw-r--r--source/sq/uui/source.po2
-rw-r--r--source/sq/vcl/qa/cppunit/builder.po2
-rw-r--r--source/sq/vcl/source/edit.po2
-rw-r--r--source/sq/vcl/source/src.po2
-rw-r--r--source/sq/vcl/uiconfig/ui.po2
-rw-r--r--source/sq/wizards/source/euro.po2
-rw-r--r--source/sq/wizards/source/formwizard.po2
-rw-r--r--source/sq/wizards/source/importwizard.po2
-rw-r--r--source/sq/wizards/source/template.po2
-rw-r--r--source/sq/xmlsecurity/source/component.po2
-rw-r--r--source/sq/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ss/accessibility/source/helper.po2
-rw-r--r--source/ss/android/sdremote/res/values.po2
-rw-r--r--source/ss/avmedia/source/framework.po2
-rw-r--r--source/ss/avmedia/source/viewer.po2
-rw-r--r--source/ss/basctl/source/basicide.po2
-rw-r--r--source/ss/basctl/source/dlged.po2
-rw-r--r--source/ss/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ss/basic/source/classes.po2
-rw-r--r--source/ss/basic/source/sbx.po2
-rw-r--r--source/ss/chart2/source/controller/dialogs.po2
-rw-r--r--source/ss/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/connectivity/source/resource.po2
-rw-r--r--source/ss/cui/source/customize.po2
-rw-r--r--source/ss/cui/source/dialogs.po2
-rw-r--r--source/ss/cui/source/options.po2
-rw-r--r--source/ss/cui/source/tabpages.po2
-rw-r--r--source/ss/cui/uiconfig/ui.po2
-rw-r--r--source/ss/dbaccess/source/core/resource.po2
-rw-r--r--source/ss/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ss/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ss/dbaccess/source/ui/app.po2
-rw-r--r--source/ss/dbaccess/source/ui/browser.po2
-rw-r--r--source/ss/dbaccess/source/ui/control.po2
-rw-r--r--source/ss/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ss/dbaccess/source/ui/inc.po2
-rw-r--r--source/ss/dbaccess/source/ui/misc.po2
-rw-r--r--source/ss/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ss/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ss/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ss/dbaccess/source/ui/uno.po2
-rw-r--r--source/ss/desktop/source/app.po2
-rw-r--r--source/ss/desktop/source/deployment/gui.po2
-rw-r--r--source/ss/desktop/source/deployment/manager.po2
-rw-r--r--source/ss/desktop/source/deployment/misc.po2
-rw-r--r--source/ss/desktop/source/deployment/registry.po2
-rw-r--r--source/ss/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ss/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ss/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ss/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ss/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ss/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ss/desktop/source/deployment/unopkg.po2
-rw-r--r--source/ss/desktop/uiconfig/ui.po2
-rw-r--r--source/ss/dictionaries/af_ZA.po2
-rw-r--r--source/ss/dictionaries/an_ES.po2
-rw-r--r--source/ss/dictionaries/ar.po2
-rw-r--r--source/ss/dictionaries/be_BY.po2
-rw-r--r--source/ss/dictionaries/bg_BG.po2
-rw-r--r--source/ss/dictionaries/bn_BD.po2
-rw-r--r--source/ss/dictionaries/br_FR.po2
-rw-r--r--source/ss/dictionaries/ca.po2
-rw-r--r--source/ss/dictionaries/cs_CZ.po2
-rw-r--r--source/ss/dictionaries/da_DK.po2
-rw-r--r--source/ss/dictionaries/de.po2
-rw-r--r--source/ss/dictionaries/el_GR.po2
-rw-r--r--source/ss/dictionaries/en.po2
-rw-r--r--source/ss/dictionaries/en/dialog.po2
-rw-r--r--source/ss/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ss/dictionaries/es.po2
-rw-r--r--source/ss/dictionaries/et_EE.po2
-rw-r--r--source/ss/dictionaries/fr_FR.po2
-rw-r--r--source/ss/dictionaries/gd_GB.po2
-rw-r--r--source/ss/dictionaries/gl.po2
-rw-r--r--source/ss/dictionaries/gu_IN.po2
-rw-r--r--source/ss/dictionaries/he_IL.po2
-rw-r--r--source/ss/dictionaries/hi_IN.po2
-rw-r--r--source/ss/dictionaries/hr_HR.po2
-rw-r--r--source/ss/dictionaries/hu_HU.po2
-rw-r--r--source/ss/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ss/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ss/dictionaries/it_IT.po2
-rw-r--r--source/ss/dictionaries/ku_TR.po2
-rw-r--r--source/ss/dictionaries/lt_LT.po2
-rw-r--r--source/ss/dictionaries/lv_LV.po2
-rw-r--r--source/ss/dictionaries/ne_NP.po2
-rw-r--r--source/ss/dictionaries/nl_NL.po2
-rw-r--r--source/ss/dictionaries/no.po2
-rw-r--r--source/ss/dictionaries/oc_FR.po2
-rw-r--r--source/ss/dictionaries/pl_PL.po2
-rw-r--r--source/ss/dictionaries/pt_BR.po2
-rw-r--r--source/ss/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ss/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ss/dictionaries/pt_PT.po2
-rw-r--r--source/ss/dictionaries/ro.po2
-rw-r--r--source/ss/dictionaries/ru_RU.po2
-rw-r--r--source/ss/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ss/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ss/dictionaries/si_LK.po2
-rw-r--r--source/ss/dictionaries/sk_SK.po2
-rw-r--r--source/ss/dictionaries/sl_SI.po2
-rw-r--r--source/ss/dictionaries/sr.po2
-rw-r--r--source/ss/dictionaries/sv_SE.po2
-rw-r--r--source/ss/dictionaries/sw_TZ.po2
-rw-r--r--source/ss/dictionaries/te_IN.po2
-rw-r--r--source/ss/dictionaries/th_TH.po2
-rw-r--r--source/ss/dictionaries/uk_UA.po2
-rw-r--r--source/ss/dictionaries/vi.po2
-rw-r--r--source/ss/dictionaries/zu_ZA.po2
-rw-r--r--source/ss/editeng/source/accessibility.po2
-rw-r--r--source/ss/editeng/source/editeng.po2
-rw-r--r--source/ss/editeng/source/items.po2
-rw-r--r--source/ss/editeng/source/misc.po2
-rw-r--r--source/ss/editeng/source/outliner.po2
-rw-r--r--source/ss/extensions/source/abpilot.po2
-rw-r--r--source/ss/extensions/source/bibliography.po2
-rw-r--r--source/ss/extensions/source/dbpilots.po2
-rw-r--r--source/ss/extensions/source/propctrlr.po2
-rw-r--r--source/ss/extensions/source/scanner.po2
-rw-r--r--source/ss/extensions/source/update/check.po2
-rw-r--r--source/ss/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ss/filter/source/config/fragments/filters.po2
-rw-r--r--source/ss/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ss/filter/source/config/fragments/types.po2
-rw-r--r--source/ss/filter/source/flash.po2
-rw-r--r--source/ss/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ss/filter/source/pdf.po2
-rw-r--r--source/ss/filter/source/t602.po2
-rw-r--r--source/ss/filter/source/xsltdialog.po2
-rw-r--r--source/ss/filter/uiconfig/ui.po2
-rw-r--r--source/ss/forms/source/resource.po2
-rw-r--r--source/ss/formula/source/core/resource.po38
-rw-r--r--source/ss/formula/source/ui/dlg.po2
-rw-r--r--source/ss/fpicker/source/office.po2
-rw-r--r--source/ss/framework/source/classes.po2
-rw-r--r--source/ss/framework/source/services.po2
-rw-r--r--source/ss/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/ss/librelogo/source/pythonpath.po2
-rw-r--r--source/ss/mysqlc/source.po2
-rw-r--r--source/ss/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ss/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/ss/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ss/nlpsolver/src/locale.po2
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/ss/padmin/source.po2
-rw-r--r--source/ss/readlicense_oo/docs.po2
-rw-r--r--source/ss/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/ss/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ss/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/ss/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/ss/reportbuilder/util.po2
-rw-r--r--source/ss/reportdesign/source/core/resource.po2
-rw-r--r--source/ss/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ss/reportdesign/source/ui/inspection.po2
-rw-r--r--source/ss/reportdesign/source/ui/report.po2
-rw-r--r--source/ss/sc/source/core/src.po2
-rw-r--r--source/ss/sc/source/ui/cctrl.po2
-rw-r--r--source/ss/sc/source/ui/dbgui.po2
-rw-r--r--source/ss/sc/source/ui/docshell.po2
-rw-r--r--source/ss/sc/source/ui/drawfunc.po2
-rw-r--r--source/ss/sc/source/ui/formdlg.po2
-rw-r--r--source/ss/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ss/sc/source/ui/navipi.po2
-rw-r--r--source/ss/sc/source/ui/optdlg.po2
-rw-r--r--source/ss/sc/source/ui/pagedlg.po2
-rw-r--r--source/ss/sc/source/ui/src.po383
-rw-r--r--source/ss/sc/source/ui/styleui.po2
-rw-r--r--source/ss/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/ss/scaddins/source/analysis.po2
-rw-r--r--source/ss/scaddins/source/datefunc.po2
-rw-r--r--source/ss/scaddins/source/pricing.po2
-rw-r--r--source/ss/sccomp/source/solver.po2
-rw-r--r--source/ss/scp2/source/accessories.po2
-rw-r--r--source/ss/scp2/source/activex.po2
-rw-r--r--source/ss/scp2/source/base.po2
-rw-r--r--source/ss/scp2/source/calc.po2
-rw-r--r--source/ss/scp2/source/draw.po2
-rw-r--r--source/ss/scp2/source/extensions.po2
-rw-r--r--source/ss/scp2/source/gnome.po2
-rw-r--r--source/ss/scp2/source/graphicfilter.po2
-rw-r--r--source/ss/scp2/source/impress.po2
-rw-r--r--source/ss/scp2/source/javafilter.po2
-rw-r--r--source/ss/scp2/source/kde.po2
-rw-r--r--source/ss/scp2/source/math.po2
-rw-r--r--source/ss/scp2/source/onlineupdate.po2
-rw-r--r--source/ss/scp2/source/ooo.po2
-rw-r--r--source/ss/scp2/source/python.po18
-rw-r--r--source/ss/scp2/source/quickstart.po2
-rw-r--r--source/ss/scp2/source/sdkoo.po2
-rw-r--r--source/ss/scp2/source/smoketest.po2
-rw-r--r--source/ss/scp2/source/stdlibs.po2
-rw-r--r--source/ss/scp2/source/tde.po2
-rw-r--r--source/ss/scp2/source/winexplorerext.po2
-rw-r--r--source/ss/scp2/source/writer.po2
-rw-r--r--source/ss/scp2/source/xsltfilter.po2
-rw-r--r--source/ss/sd/source/core.po2
-rw-r--r--source/ss/sd/source/filter/html.po2
-rw-r--r--source/ss/sd/source/ui/accessibility.po2
-rw-r--r--source/ss/sd/source/ui/animations.po2
-rw-r--r--source/ss/sd/source/ui/annotations.po2
-rw-r--r--source/ss/sd/source/ui/app.po2
-rw-r--r--source/ss/sd/source/ui/dlg.po2
-rw-r--r--source/ss/sd/source/ui/slideshow.po2
-rw-r--r--source/ss/sd/source/ui/table.po2
-rw-r--r--source/ss/sd/source/ui/view.po2
-rw-r--r--source/ss/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/ss/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/ss/sdext/source/minimizer.po2
-rw-r--r--source/ss/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ss/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/ss/setup_native/source/mac.po2
-rw-r--r--source/ss/sfx2/source/appl.po2
-rw-r--r--source/ss/sfx2/source/bastyp.po2
-rw-r--r--source/ss/sfx2/source/control.po23
-rw-r--r--source/ss/sfx2/source/dialog.po46
-rw-r--r--source/ss/sfx2/source/doc.po130
-rw-r--r--source/ss/sfx2/source/menu.po2
-rw-r--r--source/ss/sfx2/source/view.po2
-rw-r--r--source/ss/sfx2/uiconfig/ui.po2
-rw-r--r--source/ss/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ss/starmath/source.po2
-rw-r--r--source/ss/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ss/svl/source/items.po2
-rw-r--r--source/ss/svl/source/misc.po2
-rw-r--r--source/ss/svtools/source/contnr.po2
-rw-r--r--source/ss/svtools/source/control.po2
-rw-r--r--source/ss/svtools/source/dialogs.po2
-rw-r--r--source/ss/svtools/source/java.po2
-rw-r--r--source/ss/svtools/source/misc.po2
-rw-r--r--source/ss/svtools/source/toolpanel.po2
-rw-r--r--source/ss/svtools/uiconfig/ui.po55
-rw-r--r--source/ss/svx/inc.po2
-rw-r--r--source/ss/svx/source/accessibility.po2
-rw-r--r--source/ss/svx/source/core.po2
-rw-r--r--source/ss/svx/source/dialog.po224
-rw-r--r--source/ss/svx/source/engine3d.po2
-rw-r--r--source/ss/svx/source/fmcomp.po2
-rw-r--r--source/ss/svx/source/form.po2
-rw-r--r--source/ss/svx/source/gallery2.po2
-rw-r--r--source/ss/svx/source/items.po2
-rw-r--r--source/ss/svx/source/src.po2
-rw-r--r--source/ss/svx/source/stbctrls.po2
-rw-r--r--source/ss/svx/source/svdraw.po2
-rw-r--r--source/ss/svx/source/table.po2
-rw-r--r--source/ss/svx/source/tbxctrls.po2
-rw-r--r--source/ss/svx/source/toolbars.po2
-rw-r--r--source/ss/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ss/svx/uiconfig/ui.po204
-rw-r--r--source/ss/sw/source/core/layout.po2
-rw-r--r--source/ss/sw/source/core/undo.po2
-rw-r--r--source/ss/sw/source/core/unocore.po2
-rw-r--r--source/ss/sw/source/ui/app.po2
-rw-r--r--source/ss/sw/source/ui/chrdlg.po2
-rw-r--r--source/ss/sw/source/ui/config.po2
-rw-r--r--source/ss/sw/source/ui/dbui.po2
-rw-r--r--source/ss/sw/source/ui/dialog.po2
-rw-r--r--source/ss/sw/source/ui/dochdl.po2
-rw-r--r--source/ss/sw/source/ui/docvw.po2
-rw-r--r--source/ss/sw/source/ui/envelp.po2
-rw-r--r--source/ss/sw/source/ui/fldui.po2
-rw-r--r--source/ss/sw/source/ui/fmtui.po2
-rw-r--r--source/ss/sw/source/ui/frmdlg.po2
-rw-r--r--source/ss/sw/source/ui/globdoc.po2
-rw-r--r--source/ss/sw/source/ui/index.po2
-rw-r--r--source/ss/sw/source/ui/lingu.po2
-rw-r--r--source/ss/sw/source/ui/misc.po2
-rw-r--r--source/ss/sw/source/ui/ribbar.po2
-rw-r--r--source/ss/sw/source/ui/shells.po2
-rw-r--r--source/ss/sw/source/ui/smartmenu.po2
-rw-r--r--source/ss/sw/source/ui/table.po2
-rw-r--r--source/ss/sw/source/ui/uiview.po2
-rw-r--r--source/ss/sw/source/ui/utlui.po2
-rw-r--r--source/ss/sw/source/ui/web.po2
-rw-r--r--source/ss/sw/source/ui/wrtsh.po2
-rw-r--r--source/ss/sw/uiconfig/sw/ui.po284
-rw-r--r--source/ss/sw/uiconfig/swriter/ui.po2
-rw-r--r--source/ss/swext/mediawiki/help.po2
-rw-r--r--source/ss/swext/mediawiki/src.po2
-rw-r--r--source/ss/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ss/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ss/sysui/desktop/share.po2
-rw-r--r--source/ss/tubes/uiconfig/ui.po2
-rw-r--r--source/ss/uui/source.po2
-rw-r--r--source/ss/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ss/vcl/source/edit.po2
-rw-r--r--source/ss/vcl/source/src.po2
-rw-r--r--source/ss/vcl/uiconfig/ui.po2
-rw-r--r--source/ss/wizards/source/euro.po2
-rw-r--r--source/ss/wizards/source/formwizard.po2
-rw-r--r--source/ss/wizards/source/importwizard.po2
-rw-r--r--source/ss/wizards/source/template.po2
-rw-r--r--source/ss/xmlsecurity/source/component.po2
-rw-r--r--source/ss/xmlsecurity/source/dialogs.po2
-rw-r--r--source/st/accessibility/source/helper.po2
-rw-r--r--source/st/android/sdremote/res/values.po2
-rw-r--r--source/st/avmedia/source/framework.po2
-rw-r--r--source/st/avmedia/source/viewer.po2
-rw-r--r--source/st/basctl/source/basicide.po2
-rw-r--r--source/st/basctl/source/dlged.po2
-rw-r--r--source/st/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/st/basic/source/classes.po2
-rw-r--r--source/st/basic/source/sbx.po2
-rw-r--r--source/st/chart2/source/controller/dialogs.po2
-rw-r--r--source/st/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/connectivity/source/resource.po2
-rw-r--r--source/st/cui/source/customize.po2
-rw-r--r--source/st/cui/source/dialogs.po2
-rw-r--r--source/st/cui/source/options.po2
-rw-r--r--source/st/cui/source/tabpages.po2
-rw-r--r--source/st/cui/uiconfig/ui.po2
-rw-r--r--source/st/dbaccess/source/core/resource.po2
-rw-r--r--source/st/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/st/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/st/dbaccess/source/ui/app.po2
-rw-r--r--source/st/dbaccess/source/ui/browser.po2
-rw-r--r--source/st/dbaccess/source/ui/control.po2
-rw-r--r--source/st/dbaccess/source/ui/dlg.po2
-rw-r--r--source/st/dbaccess/source/ui/inc.po2
-rw-r--r--source/st/dbaccess/source/ui/misc.po2
-rw-r--r--source/st/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/st/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/st/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/st/dbaccess/source/ui/uno.po2
-rw-r--r--source/st/desktop/source/app.po2
-rw-r--r--source/st/desktop/source/deployment/gui.po2
-rw-r--r--source/st/desktop/source/deployment/manager.po2
-rw-r--r--source/st/desktop/source/deployment/misc.po2
-rw-r--r--source/st/desktop/source/deployment/registry.po2
-rw-r--r--source/st/desktop/source/deployment/registry/component.po2
-rw-r--r--source/st/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/st/desktop/source/deployment/registry/help.po2
-rw-r--r--source/st/desktop/source/deployment/registry/package.po2
-rw-r--r--source/st/desktop/source/deployment/registry/script.po2
-rw-r--r--source/st/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/st/desktop/source/deployment/unopkg.po2
-rw-r--r--source/st/desktop/uiconfig/ui.po2
-rw-r--r--source/st/dictionaries/af_ZA.po2
-rw-r--r--source/st/dictionaries/an_ES.po2
-rw-r--r--source/st/dictionaries/ar.po2
-rw-r--r--source/st/dictionaries/be_BY.po2
-rw-r--r--source/st/dictionaries/bg_BG.po2
-rw-r--r--source/st/dictionaries/bn_BD.po2
-rw-r--r--source/st/dictionaries/br_FR.po2
-rw-r--r--source/st/dictionaries/ca.po2
-rw-r--r--source/st/dictionaries/cs_CZ.po2
-rw-r--r--source/st/dictionaries/da_DK.po2
-rw-r--r--source/st/dictionaries/de.po2
-rw-r--r--source/st/dictionaries/el_GR.po2
-rw-r--r--source/st/dictionaries/en.po2
-rw-r--r--source/st/dictionaries/en/dialog.po2
-rw-r--r--source/st/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/st/dictionaries/es.po2
-rw-r--r--source/st/dictionaries/et_EE.po2
-rw-r--r--source/st/dictionaries/fr_FR.po2
-rw-r--r--source/st/dictionaries/gd_GB.po2
-rw-r--r--source/st/dictionaries/gl.po2
-rw-r--r--source/st/dictionaries/gu_IN.po2
-rw-r--r--source/st/dictionaries/he_IL.po2
-rw-r--r--source/st/dictionaries/hi_IN.po2
-rw-r--r--source/st/dictionaries/hr_HR.po2
-rw-r--r--source/st/dictionaries/hu_HU.po2
-rw-r--r--source/st/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/st/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/st/dictionaries/it_IT.po2
-rw-r--r--source/st/dictionaries/ku_TR.po2
-rw-r--r--source/st/dictionaries/lt_LT.po2
-rw-r--r--source/st/dictionaries/lv_LV.po2
-rw-r--r--source/st/dictionaries/ne_NP.po2
-rw-r--r--source/st/dictionaries/nl_NL.po2
-rw-r--r--source/st/dictionaries/no.po2
-rw-r--r--source/st/dictionaries/oc_FR.po2
-rw-r--r--source/st/dictionaries/pl_PL.po2
-rw-r--r--source/st/dictionaries/pt_BR.po2
-rw-r--r--source/st/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/st/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/st/dictionaries/pt_PT.po2
-rw-r--r--source/st/dictionaries/ro.po2
-rw-r--r--source/st/dictionaries/ru_RU.po2
-rw-r--r--source/st/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/st/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/st/dictionaries/si_LK.po2
-rw-r--r--source/st/dictionaries/sk_SK.po2
-rw-r--r--source/st/dictionaries/sl_SI.po2
-rw-r--r--source/st/dictionaries/sr.po2
-rw-r--r--source/st/dictionaries/sv_SE.po2
-rw-r--r--source/st/dictionaries/sw_TZ.po2
-rw-r--r--source/st/dictionaries/te_IN.po2
-rw-r--r--source/st/dictionaries/th_TH.po2
-rw-r--r--source/st/dictionaries/uk_UA.po2
-rw-r--r--source/st/dictionaries/vi.po2
-rw-r--r--source/st/dictionaries/zu_ZA.po2
-rw-r--r--source/st/editeng/source/accessibility.po2
-rw-r--r--source/st/editeng/source/editeng.po2
-rw-r--r--source/st/editeng/source/items.po2
-rw-r--r--source/st/editeng/source/misc.po2
-rw-r--r--source/st/editeng/source/outliner.po2
-rw-r--r--source/st/extensions/source/abpilot.po2
-rw-r--r--source/st/extensions/source/bibliography.po2
-rw-r--r--source/st/extensions/source/dbpilots.po2
-rw-r--r--source/st/extensions/source/propctrlr.po2
-rw-r--r--source/st/extensions/source/scanner.po2
-rw-r--r--source/st/extensions/source/update/check.po2
-rw-r--r--source/st/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/st/filter/source/config/fragments/filters.po2
-rw-r--r--source/st/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/st/filter/source/config/fragments/types.po2
-rw-r--r--source/st/filter/source/flash.po2
-rw-r--r--source/st/filter/source/graphicfilter/eps.po2
-rw-r--r--source/st/filter/source/pdf.po2
-rw-r--r--source/st/filter/source/t602.po2
-rw-r--r--source/st/filter/source/xsltdialog.po2
-rw-r--r--source/st/filter/uiconfig/ui.po2
-rw-r--r--source/st/forms/source/resource.po2
-rw-r--r--source/st/formula/source/core/resource.po38
-rw-r--r--source/st/formula/source/ui/dlg.po2
-rw-r--r--source/st/fpicker/source/office.po2
-rw-r--r--source/st/framework/source/classes.po2
-rw-r--r--source/st/framework/source/services.po2
-rw-r--r--source/st/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/st/librelogo/source/pythonpath.po2
-rw-r--r--source/st/mysqlc/source.po2
-rw-r--r--source/st/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/st/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/st/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/st/nlpsolver/src/locale.po2
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/st/padmin/source.po2
-rw-r--r--source/st/readlicense_oo/docs.po2
-rw-r--r--source/st/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/st/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/st/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/st/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/st/reportbuilder/util.po2
-rw-r--r--source/st/reportdesign/source/core/resource.po2
-rw-r--r--source/st/reportdesign/source/ui/dlg.po2
-rw-r--r--source/st/reportdesign/source/ui/inspection.po2
-rw-r--r--source/st/reportdesign/source/ui/report.po2
-rw-r--r--source/st/sc/source/core/src.po2
-rw-r--r--source/st/sc/source/ui/cctrl.po2
-rw-r--r--source/st/sc/source/ui/dbgui.po2
-rw-r--r--source/st/sc/source/ui/docshell.po2
-rw-r--r--source/st/sc/source/ui/drawfunc.po2
-rw-r--r--source/st/sc/source/ui/formdlg.po2
-rw-r--r--source/st/sc/source/ui/miscdlgs.po2
-rw-r--r--source/st/sc/source/ui/navipi.po2
-rw-r--r--source/st/sc/source/ui/optdlg.po2
-rw-r--r--source/st/sc/source/ui/pagedlg.po2
-rw-r--r--source/st/sc/source/ui/src.po383
-rw-r--r--source/st/sc/source/ui/styleui.po2
-rw-r--r--source/st/sc/uiconfig/scalc/ui.po2
-rw-r--r--source/st/scaddins/source/analysis.po2
-rw-r--r--source/st/scaddins/source/datefunc.po2
-rw-r--r--source/st/scaddins/source/pricing.po2
-rw-r--r--source/st/sccomp/source/solver.po2
-rw-r--r--source/st/scp2/source/accessories.po2
-rw-r--r--source/st/scp2/source/activex.po2
-rw-r--r--source/st/scp2/source/base.po2
-rw-r--r--source/st/scp2/source/calc.po2
-rw-r--r--source/st/scp2/source/draw.po2
-rw-r--r--source/st/scp2/source/extensions.po2
-rw-r--r--source/st/scp2/source/gnome.po2
-rw-r--r--source/st/scp2/source/graphicfilter.po2