/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include "propertyhandler.hxx" #include "formmetadata.hxx" #include "formbrowsertools.hxx" #include "handlerhelper.hxx" #include "formstrings.hxx" #include #include #include #include #include #include #include #include #include #include #include namespace pcr { using namespace ::com::sun::star::uno; using namespace ::com::sun::star::awt; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::script; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::util; using namespace ::com::sun::star::frame; using namespace ::com::sun::star::inspection; using namespace ::comphelper; PropertyHandler::PropertyHandler( const Reference< XComponentContext >& _rxContext ) :PropertyHandler_Base( m_aMutex ) ,m_bSupportedPropertiesAreKnown( false ) ,m_aPropertyListeners( m_aMutex ) ,m_xContext( _rxContext ) ,m_pInfoService ( new OPropertyInfoService ) { m_xTypeConverter = Converter::create(_rxContext); } PropertyHandler::~PropertyHandler() { } void SAL_CALL PropertyHandler::inspect( const Reference< XInterface >& _rxIntrospectee ) { if ( !_rxIntrospectee.is() ) throw NullPointerException(); ::osl::MutexGuard aGuard( m_aMutex ); Reference< XPropertySet > xNewComponent( _rxIntrospectee, UNO_QUERY ); if ( xNewComponent == m_xComponent ) return; // remove all old property change listeners std::unique_ptr< ::comphelper::OInterfaceIteratorHelper2 > removeListener = m_aPropertyListeners.createIterator(); std::unique_ptr< ::comphelper::OInterfaceIteratorHelper2 > readdListener = m_aPropertyListeners.createIterator(); // will copy the container as needed while ( removeListener->hasMoreElements() ) removePropertyChangeListener( static_cast< XPropertyChangeListener* >( removeListener->next() ) ); OSL_ENSURE( m_aPropertyListeners.empty(), "PropertyHandler::inspect: derived classes are expected to forward the removePropertyChangeListener call to their base class (me)!" ); // remember the new component, and give derived classes the chance to react on it m_xComponent = xNewComponent; onNewComponent(); // add the listeners, again while ( readdListener->hasMoreElements() ) addPropertyChangeListener( static_cast< XPropertyChangeListener* >( readdListener->next() ) ); } void PropertyHandler::onNewComponent() { if ( m_xComponent.is() ) m_xComponentPropertyInfo = m_xComponent->getPropertySetInfo(); else m_xComponentPropertyInfo.clear(); m_bSupportedPropertiesAreKnown = false; m_aSupportedProperties.realloc( 0 ); } Sequence< Property > SAL_CALL PropertyHandler::getSupportedProperties() { ::osl::MutexGuard aGuard( m_aMutex ); if ( !m_bSupportedPropertiesAreKnown ) { m_aSupportedProperties = StlSyntaxSequence(doDescribeSupportedProperties()); m_bSupportedPropertiesAreKnown = true; } return m_aSupportedProperties; } Sequence< OUString > SAL_CALL PropertyHandler::getSupersededProperties( ) { return Sequence< OUString >(); } Sequence< OUString > SAL_CALL PropertyHandler::getActuatingProperties( ) { return Sequence< OUString >(); } Any SAL_CALL PropertyHandler::convertToPropertyValue( const OUString& _rPropertyName, const Any& _rControlValue ) { ::osl::MutexGuard aGuard( m_aMutex ); PropertyId nPropId = m_pInfoService->getPropertyId( _rPropertyName ); Property aProperty( impl_getPropertyFromName_throw( _rPropertyName ) ); Any aPropertyValue; if ( !_rControlValue.hasValue() ) // NULL is converted to NULL return aPropertyValue; if ( ( m_pInfoService->getPropertyUIFlags( nPropId ) & PROP_FLAG_ENUM ) != 0 ) { OUString sControlValue; OSL_VERIFY( _rControlValue >>= sControlValue ); ::rtl::Reference< IPropertyEnumRepresentation > aEnumConversion( new DefaultEnumRepresentation( *m_pInfoService, aProperty.Type, nPropId ) ); // TODO/UNOize: cache those converters? aEnumConversion->getValueFromDescription( sControlValue, aPropertyValue ); } else aPropertyValue = PropertyHandlerHelper::convertToPropertyValue( m_xContext, m_xTypeConverter, aProperty, _rControlValue ); return aPropertyValue; } Any SAL_CALL PropertyHandler::convertToControlValue( const OUString& _rPropertyName, const Any& _rPropertyValue, const Type& _rControlValueType ) { ::osl::MutexGuard aGuard( m_aMutex ); PropertyId nPropId = m_pInfoService->getPropertyId( _rPropertyName ); if ( ( m_pInfoService->getPropertyUIFlags( nPropId ) & PROP_FLAG_ENUM ) != 0 ) { DBG_ASSERT( _rControlValueType.getTypeClass() == TypeClass_STRING, "PropertyHandler::convertToControlValue: ENUM, but not STRING?" ); ::rtl::Reference< IPropertyEnumRepresentation > aEnumConversion( new DefaultEnumRepresentation( *m_pInfoService, _rPropertyValue.getValueType(), nPropId ) ); // TODO/UNOize: cache those converters? return makeAny( aEnumConversion->getDescriptionForValue( _rPropertyValue ) ); } return PropertyHandlerHelper::convertToControlValue( m_xContext, m_xTypeConverter, _rPropertyValue, _rControlValueType ); } PropertyState SAL_CALL PropertyHandler::getPropertyState( const OUString& /*_rPropertyName*/ ) { return PropertyState_DIRECT_VALUE; } LineDescriptor SAL_CALL PropertyHandler::describePropertyLine( const OUString& _rPropertyName, const Reference< XPropertyControlFactory >& _rxControlFactory ) { if ( !_rxControlFactory.is() ) throw NullPointerException(); ::osl::MutexGuard aGuard( m_aMutex ); PropertyId nPropId( impl_getPropertyId_throwUnknownProperty( _rPropertyName ) ); const Property& rProperty( impl_getPropertyFromId_throw( nPropId ) ); LineDescriptor aDescriptor; if ( ( m_pInfoService->getPropertyUIFlags( nPropId ) & PROP_FLAG_ENUM ) != 0 ) { aDescriptor.Control = PropertyHandlerHelper::createListBoxControl( _rxControlFactory, m_pInfoService->getPropertyEnumRepresentations( nPropId ), PropertyHandlerHelper::requiresReadOnlyControl( rProperty.Attributes ), false ); } else PropertyHandlerHelper::describePropertyLine( rProperty, aDescriptor, _rxControlFactory ); aDescriptor.HelpURL = HelpIdUrl::getHelpURL( m_pInfoService->getPropertyHelpId( nPropId ) ); aDescriptor.DisplayName = m_pInfoService->getPropertyTranslation( nPropId ); if ( ( m_pInfoService->getPropertyUIFlags( nPropId ) & PROP_FLAG_DATA_PROPERTY ) != 0 ) aDescriptor.Category = "Data"; else aDescriptor.Category = "General"; return aDescriptor; } sal_Bool SAL_CALL PropertyHandler::isComposable( const OUString& _rPropertyName ) { ::osl::MutexGuard aGuard( m_aMutex ); return m_pInfoService->isComposeable( _rPropertyName ); } InteractiveSelectionResult SAL_CALL PropertyHandler::onInteractivePropertySelection( const OUString& /*_rPropertyName*/, sal_Bool /*_bPrimary*/, Any& /*_rData*/, const Reference< XObjectInspectorUI >& /*_rxInspectorUI*/ ) { OSL_FAIL( "PropertyHandler::onInteractivePropertySelection: not implemented!" ); return InteractiveSelectionResult_Cancelled; } void SAL_CALL PropertyHandler::actuatingPropertyChanged( const OUString& /*_rActuatingPropertyName*/, const Any& /*_rNewValue*/, const Any& /*_rOldValue*/, const Reference< XObjectInspectorUI >& /*_rxInspectorUI*/, sal_Bool /*_bFirstTimeInit*/ ) { OSL_FAIL( "PropertyHandler::actuatingPropertyChanged: not implemented!" ); } void SAL_CALL PropertyHandler::addPropertyChangeListener( const Reference< XPropertyChangeListener >& _rxListener ) { ::osl::MutexGuard aGuard( m_aMutex ); if ( !_rxListener.is() ) throw NullPointerException(); m_aPropertyListeners.addListener( _rxListener ); } void SAL_CALL PropertyHandler::removePropertyChangeListener( const Reference< XPropertyChangeListener >& _rxListener ) { ::osl::MutexGuard aGuard( m_aMutex ); m_aPropertyListeners.removeListener( _rxListener ); } sal_Bool SAL_CALL PropertyHandler::suspend( sal_Bool /*_bSuspend*/ ) { return true; } IMPLEMENT_FORWARD_XCOMPONENT( PropertyHandler, PropertyHandler_Base ) void SAL_CALL PropertyHandler::disposing() { m_xComponent.clear(); m_aPropertyListeners.clear(); m_xTypeConverter.clear(); m_aSupportedProperties.realloc( 0 ); } void PropertyHandler::firePropertyChange( const OUString& _rPropName, PropertyId _nPropId, const Any& _rOldValue, const Any& _rNewValue ) { PropertyChangeEvent aEvent; aEvent.Source = m_xComponent; aEvent.PropertyHandle = _nPropId; aEvent.PropertyName = _rPropName; aEvent.OldValue = _rOldValue; aEvent.NewValue = _rNewValue; m_aPropertyListeners.notify( aEvent, &XPropertyChangeListener::propertyChange ); } const Property* PropertyHandler::impl_getPropertyFromId_nothrow( PropertyId _nPropId ) const { const_cast< PropertyHandler* >( this )->getSupportedProperties(); const Property* pFound = std::find_if( m_aSupportedProperties.begin(), m_aSupportedProperties.end(), FindPropertyByHandle( _nPropId ) ); if ( pFound != m_aSupportedProperties.end() ) return pFound; return nullptr; } const Property& PropertyHandler::impl_getPropertyFromId_throw( PropertyId _nPropId ) const { const Property* pProperty = impl_getPropertyFromId_nothrow( _nPropId ); if ( !pProperty ) throw UnknownPropertyException(); return *pProperty; } const Property& PropertyHandler::impl_getPropertyFromName_throw( const OUString& _rPropertyName ) const { const_cast< PropertyHandler* >( this )->getSupportedProperties(); StlSyntaxSequence< Property >::const_iterator pFound = std::find_if( m_aSupportedProperties.begin(), m_aSupportedProperties.end(), FindPropertyByName( _rPropertyName ) ); if ( pFound == m_aSupportedProperties.end() ) throw UnknownPropertyException(); return *pFound; } void PropertyHandler::implAddPropertyDescription( std::vector< Property >& _rProperties, const OUString& _rPropertyName, const Type& _rType, sal_Int16 _nAttribs ) const { _rProperties.push_back( Property( _rPropertyName, m_pInfoService->getPropertyId( _rPropertyName ), _rType, _nAttribs ) ); } vcl::Window* PropertyHandler::impl_getDefaultDialogParent_nothrow() const { return PropertyHandlerHelper::getDialogParentWindow( m_xContext ); } PropertyId PropertyHandler::impl_getPropertyId_throwUnknownProperty( const OUString& _rPropertyName ) const { PropertyId nPropId = m_pInfoService->getPropertyId( _rPropertyName ); if ( nPropId == -1 ) throw UnknownPropertyException(); return nPropId; } PropertyId PropertyHandler::impl_getPropertyId_throwRuntime( const OUString& _rPropertyName ) const { PropertyId nPropId = m_pInfoService->getPropertyId( _rPropertyName ); if ( nPropId == -1 ) throw RuntimeException(); return nPropId; } PropertyId PropertyHandler::impl_getPropertyId_nothrow( const OUString& _rPropertyName ) const { return m_pInfoService->getPropertyId( _rPropertyName ); } void PropertyHandler::impl_setContextDocumentModified_nothrow() const { Reference< XModifiable > xModifiable( impl_getContextDocument_nothrow(), UNO_QUERY ); if ( xModifiable.is() ) xModifiable->setModified( true ); } bool PropertyHandler::impl_componentHasProperty_throw( const OUString& _rPropName ) const { return m_xComponentPropertyInfo.is() && m_xComponentPropertyInfo->hasPropertyByName( _rPropName ); } sal_Int16 PropertyHandler::impl_getDocumentMeasurementUnit_throw() const { FieldUnit eUnit = FUNIT_NONE; Reference< XServiceInfo > xDocumentSI( impl_getContextDocument_nothrow(), UNO_QUERY ); OSL_ENSURE( xDocumentSI.is(), "PropertyHandlerHelper::impl_getDocumentMeasurementUnit_throw: No context document - where do I live?" ); if ( xDocumentSI.is() ) { // determine the application type we live in OUString sConfigurationLocation; OUString sConfigurationProperty; if ( xDocumentSI->supportsService( SERVICE_WEB_DOCUMENT ) ) { // writer sConfigurationLocation = "/org.openoffice.Office.WriterWeb/Layout/Other"; sConfigurationProperty = "MeasureUnit"; } else if ( xDocumentSI->supportsService( SERVICE_TEXT_DOCUMENT ) ) { // writer sConfigurationLocation = "/org.openoffice.Office.Writer/Layout/Other"; sConfigurationProperty = "MeasureUnit"; } else if ( xDocumentSI->supportsService( SERVICE_SPREADSHEET_DOCUMENT ) ) { // calc sConfigurationLocation = "/org.openoffice.Office.Calc/Layout/Other/MeasureUnit"; sConfigurationProperty = "Metric"; } else if ( xDocumentSI->supportsService( SERVICE_DRAWING_DOCUMENT ) ) { sConfigurationLocation = "/org.openoffice.Office.Draw/Layout/Other/MeasureUnit"; sConfigurationProperty = "Metric"; } else if ( xDocumentSI->supportsService( SERVICE_PRESENTATION_DOCUMENT ) ) { sConfigurationLocation = "/org.openoffice.Office.Impress/Layout/Other/MeasureUnit"; sConfigurationProperty = "Metric"; } // read the measurement unit from the configuration if ( !(sConfigurationLocation.isEmpty() || sConfigurationProperty.isEmpty()) ) { ::utl::OConfigurationTreeRoot aConfigTree( ::utl::OConfigurationTreeRoot::createWithComponentContext( m_xContext, sConfigurationLocation, -1, ::utl::OConfigurationTreeRoot::CM_READONLY ) ); sal_Int32 nUnitAsInt = (sal_Int32)FUNIT_NONE; aConfigTree.getNodeValue( sConfigurationProperty ) >>= nUnitAsInt; // if this denotes a valid (and accepted) unit, then use it if ( ( nUnitAsInt > FUNIT_NONE ) && ( nUnitAsInt <= FUNIT_100TH_MM ) ) eUnit = static_cast< FieldUnit >( nUnitAsInt ); } } if ( FUNIT_NONE == eUnit ) { MeasurementSystem eSystem = SvtSysLocale().GetLocaleData().getMeasurementSystemEnum(); eUnit = MeasurementSystem::Metric == eSystem ? FUNIT_CM : FUNIT_INCH; } return VCLUnoHelper::ConvertToMeasurementUnit( eUnit, 1 ); } PropertyHandlerComponent::PropertyHandlerComponent( const Reference< XComponentContext >& _rxContext ) :PropertyHandler( _rxContext ) { } IMPLEMENT_FORWARD_XINTERFACE2( PropertyHandlerComponent, PropertyHandler, PropertyHandlerComponent_Base ) IMPLEMENT_FORWARD_XTYPEPROVIDER2( PropertyHandlerComponent, PropertyHandler, PropertyHandlerComponent_Base ) sal_Bool SAL_CALL PropertyHandlerComponent::supportsService( const OUString& ServiceName ) { return cppu::supportsService(this, ServiceName); } } // namespace pcr /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ fice-7-3-7'>libreoffice-7-3-7 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2021-02-15 20:37:18 +0100
committerAndras Timar <andras.timar@collabora.com>2021-02-15 20:50:27 +0100
commit0c8c6b0d6280466e025e5b5bcfb4d2db1399c871 (patch)
tree25587fc2ddb7696dfd3c76ab535a60bd03fcb785
parent2ba607b3f87ba2e877520034f516499fc12a111d (diff)
Change-Id: I394b633d4357e0e1661f70c457cbde1a15882a1a
-rw-r--r--source/ar/cui/messages.po130
-rw-r--r--source/ar/dictionaries/da_DK.po24
-rw-r--r--source/ar/officecfg/registry/data/org/openoffice/Office/UI.po24
-rw-r--r--source/ar/svtools/messages.po44
-rw-r--r--source/ar/svx/messages.po502
-rw-r--r--source/ar/sw/messages.po405
-rw-r--r--source/as/cui/messages.po106
-rw-r--r--source/as/dictionaries/da_DK.po18
-rw-r--r--source/as/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/as/svtools/messages.po42
-rw-r--r--source/as/svx/messages.po472
-rw-r--r--source/as/sw/messages.po385
-rw-r--r--source/ast/cui/messages.po108
-rw-r--r--source/ast/dictionaries/da_DK.po18
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/ast/svtools/messages.po42
-rw-r--r--source/ast/svx/messages.po485
-rw-r--r--source/ast/sw/messages.po387
-rw-r--r--source/bg/cui/messages.po106
-rw-r--r--source/bg/dictionaries/da_DK.po24
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/bg/svtools/messages.po42
-rw-r--r--source/bg/svx/messages.po465
-rw-r--r--source/bg/sw/messages.po385
-rw-r--r--source/bn-IN/cui/messages.po106
-rw-r--r--source/bn-IN/dictionaries/da_DK.po18
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/bn-IN/svtools/messages.po42
-rw-r--r--source/bn-IN/svx/messages.po482
-rw-r--r--source/bn-IN/sw/messages.po386
-rw-r--r--source/br/cui/messages.po106
-rw-r--r--source/br/dictionaries/da_DK.po18
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/br/svtools/messages.po42
-rw-r--r--source/br/svx/messages.po487
-rw-r--r--source/br/sw/messages.po385
-rw-r--r--source/ca-valencia/cui/messages.po106
-rw-r--r--source/ca-valencia/dictionaries/da_DK.po18
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ca-valencia/svtools/messages.po42
-rw-r--r--source/ca-valencia/svx/messages.po471
-rw-r--r--source/ca-valencia/sw/messages.po385
-rw-r--r--source/ca/cui/messages.po106
-rw-r--r--source/ca/dictionaries/da_DK.po24
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ca/svtools/messages.po42
-rw-r--r--source/ca/svx/messages.po471
-rw-r--r--source/ca/sw/messages.po385
-rw-r--r--source/cs/cui/messages.po106
-rw-r--r--source/cs/dictionaries/da_DK.po24
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/cs/svtools/messages.po42
-rw-r--r--source/cs/svx/messages.po465
-rw-r--r--source/cs/sw/messages.po385
-rw-r--r--source/cy/cui/messages.po106
-rw-r--r--source/cy/dictionaries/da_DK.po24
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/cy/svtools/messages.po42
-rw-r--r--source/cy/svx/messages.po467
-rw-r--r--source/cy/sw/messages.po385
-rw-r--r--source/da/cui/messages.po106
-rw-r--r--source/da/dictionaries/da_DK.po24
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/da/svtools/messages.po42
-rw-r--r--source/da/svx/messages.po477
-rw-r--r--source/da/sw/messages.po385
-rw-r--r--source/de/cui/messages.po106
-rw-r--r--source/de/dictionaries/da_DK.po24
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/de/svtools/messages.po42
-rw-r--r--source/de/svx/messages.po473
-rw-r--r--source/de/sw/messages.po385
-rw-r--r--source/el/cui/messages.po106
-rw-r--r--source/el/dictionaries/da_DK.po24
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/el/svtools/messages.po42
-rw-r--r--source/el/svx/messages.po475
-rw-r--r--source/el/sw/messages.po385
-rw-r--r--source/en-GB/cui/messages.po106
-rw-r--r--source/en-GB/dictionaries/da_DK.po24
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/en-GB/svtools/messages.po42
-rw-r--r--source/en-GB/svx/messages.po473
-rw-r--r--source/en-GB/sw/messages.po385
-rw-r--r--source/es/cui/messages.po110
-rw-r--r--source/es/dictionaries/da_DK.po24
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po48
-rw-r--r--source/es/svtools/messages.po46
-rw-r--r--source/es/svx/messages.po102
-rw-r--r--source/es/sw/messages.po32
-rw-r--r--source/et/cui/messages.po106
-rw-r--r--source/et/dictionaries/da_DK.po18
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/et/svtools/messages.po42
-rw-r--r--source/et/svx/messages.po473
-rw-r--r--source/et/sw/messages.po385
-rw-r--r--source/eu/cui/messages.po106
-rw-r--r--source/eu/dictionaries/da_DK.po24
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/eu/svtools/messages.po42
-rw-r--r--source/eu/svx/messages.po471
-rw-r--r--source/eu/sw/messages.po385
-rw-r--r--source/fi/cui/messages.po117
-rw-r--r--source/fi/dictionaries/da_DK.po23
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/fi/svtools/messages.po42
-rw-r--r--source/fi/svx/messages.po473
-rw-r--r--source/fi/sw/messages.po391
-rw-r--r--source/fr/cui/messages.po106
-rw-r--r--source/fr/dictionaries/da_DK.po24
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/fr/svtools/messages.po42
-rw-r--r--source/fr/svx/messages.po471
-rw-r--r--source/fr/sw/messages.po385
-rw-r--r--source/ga/cui/messages.po106
-rw-r--r--source/ga/dictionaries/da_DK.po18
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ga/svtools/messages.po42
-rw-r--r--source/ga/svx/messages.po487
-rw-r--r--source/ga/sw/messages.po385
-rw-r--r--source/gd/cui/messages.po106
-rw-r--r--source/gd/dictionaries/da_DK.po18
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/gd/svtools/messages.po42
-rw-r--r--source/gd/svx/messages.po487
-rw-r--r--source/gd/sw/messages.po385
-rw-r--r--source/gl/cui/messages.po106
-rw-r--r--source/gl/dictionaries/da_DK.po18
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/gl/svtools/messages.po42
-rw-r--r--source/gl/svx/messages.po473
-rw-r--r--source/gl/sw/messages.po385
-rw-r--r--source/gu/cui/messages.po106
-rw-r--r--source/gu/dictionaries/da_DK.po18
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/gu/svtools/messages.po42
-rw-r--r--source/gu/svx/messages.po481
-rw-r--r--source/gu/sw/messages.po385
-rw-r--r--source/he/cui/messages.po260
-rw-r--r--source/he/dictionaries/da_DK.po18
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po146
-rw-r--r--source/he/svtools/messages.po82
-rw-r--r--source/he/svx/messages.po472
-rw-r--r--source/he/sw/messages.po385
-rw-r--r--source/hi/cui/messages.po106
-rw-r--r--source/hi/dictionaries/da_DK.po18
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/hi/svtools/messages.po42
-rw-r--r--source/hi/svx/messages.po472
-rw-r--r--source/hi/sw/messages.po385
-rw-r--r--source/hr/cui/messages.po106
-rw-r--r--source/hr/dictionaries/da_DK.po18
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/hr/svtools/messages.po42
-rw-r--r--source/hr/svx/messages.po487
-rw-r--r--source/hr/sw/messages.po385
-rw-r--r--source/hu/cui/messages.po136
-rw-r--r--source/hu/dictionaries/da_DK.po18
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/hu/svtools/messages.po42
-rw-r--r--source/hu/svx/messages.po489
-rw-r--r--source/hu/sw/messages.po385
-rw-r--r--source/id/cui/messages.po106
-rw-r--r--source/id/dictionaries/da_DK.po18
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/id/svtools/messages.po42
-rw-r--r--source/id/svx/messages.po467
-rw-r--r--source/id/sw/messages.po385
-rw-r--r--source/is/cui/messages.po106
-rw-r--r--source/is/dictionaries/da_DK.po18
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/is/svtools/messages.po42
-rw-r--r--source/is/svx/messages.po467
-rw-r--r--source/is/sw/messages.po385
-rw-r--r--source/it/cui/messages.po106
-rw-r--r--source/it/dictionaries/da_DK.po24
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/it/svtools/messages.po42
-rw-r--r--source/it/svx/messages.po465
-rw-r--r--source/it/sw/messages.po385
-rw-r--r--source/ja/cui/messages.po106
-rw-r--r--source/ja/dictionaries/da_DK.po18
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ja/svtools/messages.po42
-rw-r--r--source/ja/svx/messages.po547
-rw-r--r--source/ja/sw/messages.po465
-rw-r--r--source/km/cui/messages.po106
-rw-r--r--source/km/dictionaries/da_DK.po18
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/km/svtools/messages.po42
-rw-r--r--source/km/svx/messages.po482
-rw-r--r--source/km/sw/messages.po385
-rw-r--r--source/kn/cui/messages.po106
-rw-r--r--source/kn/dictionaries/da_DK.po18
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/kn/svtools/messages.po42
-rw-r--r--source/kn/svx/messages.po481
-rw-r--r--source/kn/sw/messages.po385
-rw-r--r--source/ko/cui/messages.po106
-rw-r--r--source/ko/dictionaries/da_DK.po18
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ko/svtools/messages.po42
-rw-r--r--source/ko/svx/messages.po487
-rw-r--r--source/ko/sw/messages.po387
-rw-r--r--source/lt/cui/messages.po106
-rw-r--r--source/lt/dictionaries/da_DK.po18
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/lt/svtools/messages.po42
-rw-r--r--source/lt/svx/messages.po489
-rw-r--r--source/lt/sw/messages.po385
-rw-r--r--source/lv/cui/messages.po106
-rw-r--r--source/lv/dictionaries/da_DK.po18
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/lv/svtools/messages.po42
-rw-r--r--source/lv/svx/messages.po473
-rw-r--r--source/lv/sw/messages.po385
-rw-r--r--source/ml/cui/messages.po106
-rw-r--r--source/ml/dictionaries/da_DK.po18
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ml/svtools/messages.po42
-rw-r--r--source/ml/svx/messages.po474
-rw-r--r--source/ml/sw/messages.po385
-rw-r--r--source/mr/cui/messages.po106
-rw-r--r--source/mr/dictionaries/da_DK.po18
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/mr/svtools/messages.po42
-rw-r--r--source/mr/svx/messages.po481
-rw-r--r--source/mr/sw/messages.po385
-rw-r--r--source/nb/cui/messages.po106
-rw-r--r--source/nb/dictionaries/da_DK.po18
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/nb/svtools/messages.po42
-rw-r--r--source/nb/svx/messages.po479
-rw-r--r--source/nb/sw/messages.po385
-rw-r--r--source/nl/cui/messages.po106
-rw-r--r--source/nl/dictionaries/da_DK.po18
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/nl/svtools/messages.po42
-rw-r--r--source/nl/svx/messages.po475
-rw-r--r--source/nl/sw/messages.po385
-rw-r--r--source/nn/cui/messages.po106
-rw-r--r--source/nn/dictionaries/da_DK.po18
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/nn/svtools/messages.po42
-rw-r--r--source/nn/svx/messages.po471
-rw-r--r--source/nn/sw/messages.po385
-rw-r--r--source/oc/cui/messages.po122
-rw-r--r--source/oc/dictionaries/da_DK.po18
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po52
-rw-r--r--source/oc/svtools/messages.po42
-rw-r--r--source/oc/svx/messages.po473
-rw-r--r--source/oc/sw/messages.po387
-rw-r--r--source/or/cui/messages.po106
-rw-r--r--source/or/dictionaries/da_DK.po18
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/or/svtools/messages.po42
-rw-r--r--source/or/svx/messages.po473
-rw-r--r--source/or/sw/messages.po385
-rw-r--r--source/pa-IN/cui/messages.po106
-rw-r--r--source/pa-IN/dictionaries/da_DK.po18
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/pa-IN/svtools/messages.po42
-rw-r--r--source/pa-IN/svx/messages.po473
-rw-r--r--source/pa-IN/sw/messages.po386
-rw-r--r--source/pl/cui/messages.po106
-rw-r--r--source/pl/dictionaries/da_DK.po24
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/pl/svtools/messages.po42
-rw-r--r--source/pl/svx/messages.po467
-rw-r--r--source/pl/sw/messages.po391
-rw-r--r--source/pt-BR/cui/messages.po106
-rw-r--r--source/pt-BR/dictionaries/da_DK.po24
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/pt-BR/svtools/messages.po42
-rw-r--r--source/pt-BR/svx/messages.po467
-rw-r--r--source/pt-BR/sw/messages.po385
-rw-r--r--source/pt/cui/messages.po106
-rw-r--r--source/pt/dictionaries/da_DK.po24
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/pt/svtools/messages.po42
-rw-r--r--source/pt/svx/messages.po469
-rw-r--r--source/pt/sw/messages.po385
-rw-r--r--source/ro/cui/messages.po106
-rw-r--r--source/ro/dictionaries/da_DK.po18
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ro/svtools/messages.po42
-rw-r--r--source/ro/svx/messages.po486
-rw-r--r--source/ro/sw/messages.po385
-rw-r--r--source/ru/cui/messages.po106
-rw-r--r--source/ru/dictionaries/da_DK.po18
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ru/svtools/messages.po42
-rw-r--r--source/ru/svx/messages.po469
-rw-r--r--source/ru/sw/messages.po383
-rw-r--r--source/sk/cui/messages.po106
-rw-r--r--