/* -*- 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 . */ /** @#file * * export of all variable related text fields (and database display field) */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // service names constexpr char16_t sAPI_fieldmaster_prefix[] = u"com.sun.star.text.FieldMaster."; constexpr OUStringLiteral sAPI_get_expression = u"GetExpression"; constexpr OUStringLiteral sAPI_set_expression = u"SetExpression"; constexpr OUStringLiteral sAPI_user = u"User"; constexpr OUStringLiteral sAPI_database = u"com.sun.star.text.TextField.Database"; // property names constexpr OUStringLiteral sAPI_content = u"Content"; constexpr OUStringLiteral sAPI_sub_type = u"SubType"; constexpr OUStringLiteral sAPI_number_format = u"NumberFormat"; constexpr OUStringLiteral sAPI_is_visible = u"IsVisible"; constexpr OUStringLiteral sAPI_current_presentation = u"CurrentPresentation"; using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::text; using namespace ::com::sun::star::style; using namespace ::xmloff::token; // XMLVarFieldImportContext: superclass for all variable related fields XMLVarFieldImportContext::XMLVarFieldImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp, const OUString& pServiceName, bool bFormula, bool bFormulaDefault, bool bDescription, bool bHelp, bool bHint, bool bVisible, bool bIsDisplayFormula, bool bType, bool bStyle, bool bValue, bool bPresentation) : XMLTextFieldImportContext(rImport, rHlp, pServiceName), aValueHelper(rImport, rHlp, bType, bStyle, bValue, false), bDisplayFormula(false), bDisplayNone(false), bFormulaOK(false), bDescriptionOK(false), bHelpOK(false), bHintOK(false), bDisplayOK(false), bSetFormula(bFormula), bSetFormulaDefault(bFormulaDefault), bSetDescription(bDescription), bSetHelp(bHelp), bSetHint(bHint), bSetVisible(bVisible), bSetDisplayFormula(bIsDisplayFormula), bSetPresentation(bPresentation) { } void XMLVarFieldImportContext::ProcessAttribute( sal_Int32 nAttrToken, std::string_view sAttrValue ) { switch (nAttrToken) { case XML_ELEMENT(TEXT, XML_NAME): sName = OUString::fromUtf8(sAttrValue); bValid = true; // we assume: field with name is valid! break; case XML_ELEMENT(TEXT, XML_DESCRIPTION): sDescription = OUString::fromUtf8(sAttrValue); bDescriptionOK = true; break; case XML_ELEMENT(TEXT, XML_HELP): sHelp = OUString::fromUtf8(sAttrValue); bHelpOK = true; break; case XML_ELEMENT(TEXT, XML_HINT): sHint = OUString::fromUtf8(sAttrValue); bHintOK = true; break; case XML_ELEMENT(TEXT, XML_FORMULA): { OUString sTmp; sal_uInt16 nPrefix = GetImport().GetNamespaceMap(). GetKeyByAttrValueQName(OUString::fromUtf8(sAttrValue), &sTmp); if( XML_NAMESPACE_OOOW == nPrefix ) { sFormula = sTmp; bFormulaOK = true; } else sFormula = OUString::fromUtf8(sAttrValue); } break; case XML_ELEMENT(TEXT, XML_DISPLAY): if (IsXMLToken(sAttrValue, XML_FORMULA)) { bDisplayFormula = true; bDisplayNone = false; bDisplayOK = true; } else if (IsXMLToken(sAttrValue, XML_VALUE)) { bDisplayFormula = false; bDisplayNone = false; bDisplayOK = true; } else if (IsXMLToken(sAttrValue, XML_NONE)) { bDisplayFormula = false; bDisplayNone = true; bDisplayOK = true; } // else: no change DBG_ASSERT(!(bDisplayFormula && bDisplayNone), "illegal display values"); break; default: // delegate all others to value helper aValueHelper.ProcessAttribute(nAttrToken, sAttrValue); break; } } void XMLVarFieldImportContext::PrepareField( const Reference & xPropertySet) { // bSetName: not implemented if (bSetFormula) { if (!bFormulaOK && bSetFormulaDefault) { sFormula = GetContent(); bFormulaOK = true; } if (bFormulaOK) { xPropertySet->setPropertyValue(sAPI_content, Any(sFormula)); } } if (bSetDescription && bDescriptionOK) { xPropertySet->setPropertyValue("Hint", Any(sDescription)); } if (bSetHelp && bHelpOK) { xPropertySet->setPropertyValue("Help", Any(sHelp)); } if (bSetHint && bHintOK) { xPropertySet->setPropertyValue("Tooltip", Any(sHint)); } if (bSetVisible && bDisplayOK) { bool bTmp = !bDisplayNone; xPropertySet->setPropertyValue(sAPI_is_visible, Any(bTmp)); } // workaround for #no-bug#: display formula by default if (xPropertySet->getPropertySetInfo()-> hasPropertyByName("IsShowFormula") && !bSetDisplayFormula) { bDisplayFormula = false; bSetDisplayFormula = true; } if (bSetDisplayFormula) { bool bTmp = bDisplayFormula && bDisplayOK; xPropertySet->setPropertyValue("IsShowFormula", Any(bTmp)); } // delegate to value helper aValueHelper.SetDefault(GetContent()); aValueHelper.PrepareField(xPropertySet); // finally, set the current presentation if (bSetPresentation) { Any aAny; aAny <<= GetContent(); xPropertySet->setPropertyValue(sAPI_current_presentation, aAny); } } // variable set fields XMLSetVarFieldImportContext::XMLSetVarFieldImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp, const OUString& pServiceName, VarType eVarType, bool bFormula, bool bFormulaDefault, bool bDescription, bool bHelp, bool bHint, bool bVisible, bool bIsDisplayFormula, bool bType, bool bStyle, bool bValue, bool bPresentation) : XMLVarFieldImportContext(rImport, rHlp, pServiceName, bFormula, bFormulaDefault, bDescription, bHelp, bHint, bVisible, bIsDisplayFormula, bType, bStyle, bValue, bPresentation), eFieldType(eVarType) { } void XMLSetVarFieldImportContext::endFastElement(sal_Int32 ) { // should we call PrepareField on the field, or rather on it's master? // currently: call on field (just like superclass) // possible alternatives: call on master // call field or master depending on variable // PrepareMaster() in addition to PrepareField() DBG_ASSERT(!GetServiceName().isEmpty(), "no service name for element!"); if (bValid) { DBG_ASSERT(!GetName().isEmpty(), "variable name needed!"); // find field master Reference xMaster; if (FindFieldMaster(xMaster)) { // create field/Service Reference xPropSet; if (CreateField(xPropSet, "com.sun.star.text.TextField." + GetServiceName())) { Reference xDepTextField(xPropSet, UNO_QUERY); if (xDepTextField.is()) { // attach field to field master xDepTextField->attachTextFieldMaster(xMaster); // attach field to document Reference xTextContent(xPropSet, UNO_QUERY); if (xTextContent.is()) { try { // insert, set field properties and exit! GetImportHelper().InsertTextContent(xTextContent); PrepareField(xPropSet); } catch (lang::IllegalArgumentException & /*e*/) { // ignore e: #i54023# }; return; } } } } } // above: exit on success; so for all error cases we end up here! // write element content GetImportHelper().InsertString(GetContent()); } bool XMLSetVarFieldImportContext::FindFieldMaster( Reference & xMaster) { // currently: delegate to XMLVariableDeclImportContext; // should eventually go here return XMLVariableDeclImportContext::FindFieldMaster(xMaster, GetImport(), GetImportHelper(), GetName(), eFieldType); } // sequence field XMLSequenceFieldImportContext::XMLSequenceFieldImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp) : XMLSetVarFieldImportContext(rImport, rHlp, sAPI_set_expression, VarTypeSequence, // formula true, true, false, false, false, false, false, false, false, false, true), sNumFormat(OUString('1')), sNumFormatSync(GetXMLToken(XML_FALSE)), bRefNameOK(false) { } void XMLSequenceFieldImportContext::ProcessAttribute( sal_Int32 nAttrToken, std::string_view sAttrValue ) { switch (nAttrToken) { case XML_ELEMENT(STYLE, XML_NUM_FORMAT): sNumFormat = OUString::fromUtf8(sAttrValue); break; case XML_ELEMENT(STYLE, XML_NUM_LETTER_SYNC): sNumFormatSync = OUString::fromUtf8(sAttrValue); break; case XML_ELEMENT(TEXT, XML_REF_NAME): sRefName = OUString::fromUtf8(sAttrValue); bRefNameOK = true; break; default: // delegate to super class (name, formula) XMLSetVarFieldImportContext::ProcessAttribute(nAttrToken, sAttrValue); break; } // switch } void XMLSequenceFieldImportContext::PrepareField( const Reference & xPropertySet) { // delegate to super class (formula) XMLSetVarFieldImportContext::PrepareField(xPropertySet); // set format sal_Int16 nNumType = NumberingType::ARABIC; GetImport().GetMM100UnitConverter().convertNumFormat( nNumType, sNumFormat, sNumFormatSync ); xPropertySet->setPropertyValue(sAPI_number_format, Any(nNumType)); // handle reference name if (bRefNameOK) { Any aAny = xPropertySet->getPropertyValue("SequenceValue"); sal_Int16 nValue = 0; aAny >>= nValue; GetImportHelper().InsertSequenceID(sRefName, GetName(), nValue); } } // variable set field XMLVariableSetFieldImportContext::XMLVariableSetFieldImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp) : XMLSetVarFieldImportContext(rImport, rHlp, sAPI_set_expression, VarTypeSimple, // formula, value&type, style, // display none true, true, false, false, false, true, false, true, true, true, true) { } void XMLVariableSetFieldImportContext::PrepareField( const Reference & xPropertySet) { // set type Any aAny; aAny <<= (IsStringValue()? SetVariableType::STRING : SetVariableType::VAR); xPropertySet->setPropertyValue(sAPI_sub_type, aAny); // the remainder is handled by super class XMLSetVarFieldImportContext::PrepareField(xPropertySet); } // variable input field XMLVariableInputFieldImportContext::XMLVariableInputFieldImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp) : XMLSetVarFieldImportContext(rImport, rHlp, sAPI_set_expression, VarTypeSimple, // description, display none/formula, // value&type, style, formula true, true, true, true, true, true, false, true, true, true, true) { } void XMLVariableInputFieldImportContext::PrepareField( const Reference & xPropertySet) { // set type (input field) Any aAny; xPropertySet->setPropertyValue("Input", Any(true)); // set type aAny <<= (IsStringValue()? SetVariableType::STRING : SetVariableType::VAR); xPropertySet->setPropertyValue(sAPI_sub_type, aAny); // the remainder is handled by super class XMLSetVarFieldImportContext::PrepareField(xPropertySet); } // user field XMLUserFieldImportContext::XMLUserFieldImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp) : XMLSetVarFieldImportContext(rImport, rHlp, sAPI_user, VarTypeUserField, // display none/formula, style false, false, false, false, false, true, true, false, true, false, false) { } // user input field // bug: doesn't work (SO API lacking) XMLUserFieldInputImportContext::XMLUserFieldInputImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp) : XMLVarFieldImportContext(rImport, rHlp, "InputUser", // description, style false, false, true, false, false, false, false, false /*???*/, true, false, false) { } void XMLUserFieldInputImportContext::PrepareField( const Reference & xPropertySet) { xPropertySet->setPropertyValue(sAPI_content, Any(GetName())); // delegate to super class XMLVarFieldImportContext::PrepareField(xPropertySet); } // variable get field XMLVariableGetFieldImportContext::XMLVariableGetFieldImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp) : XMLVarFieldImportContext(rImport, rHlp, sAPI_get_expression, // style, display formula false, false, false, false, false, false, true, true, true, false, true) { } void XMLVariableGetFieldImportContext::PrepareField( const Reference & xPropertySet) { // set name xPropertySet->setPropertyValue(sAPI_content, Any(GetName())); // the remainder is handled by super class XMLVarFieldImportContext::PrepareField(xPropertySet); } // expression field XMLExpressionFieldImportContext::XMLExpressionFieldImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp) : XMLVarFieldImportContext(rImport, rHlp, sAPI_get_expression, // formula, type, style, display formula true, true, false, false, false, false, true, true, true, false, true) { bValid = true; // always valid } void XMLExpressionFieldImportContext::PrepareField( const Reference & xPropertySet) { xPropertySet->setPropertyValue(sAPI_sub_type, Any(sal_Int16(SetVariableType::FORMULA))); // delegate to super class XMLVarFieldImportContext::PrepareField(xPropertySet); } // text input field XMLTextInputFieldImportContext::XMLTextInputFieldImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp) : XMLVarFieldImportContext(rImport, rHlp, "Input", // description false, false, true, true, true, false, false, false, false, false, false) { bValid = true; // always valid } void XMLTextInputFieldImportContext::PrepareField( const Reference & xPropertySet) { XMLVarFieldImportContext::PrepareField(xPropertySet); xPropertySet->setPropertyValue(sAPI_content, Any(GetContent())); } // table formula field XMLTableFormulaImportContext::XMLTableFormulaImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp) : XMLTextFieldImportContext(rImport, rHlp, "TableFormula"), aValueHelper(rImport, rHlp, false, true, false, true), bIsShowFormula(false) { } void XMLTableFormulaImportContext::ProcessAttribute( sal_Int32 nAttrToken, std::string_view sAttrValue ) { switch (nAttrToken) { case XML_ELEMENT(TEXT, XML_FORMULA): aValueHelper.ProcessAttribute( nAttrToken, sAttrValue ); bValid = true; // we need a formula! break; case XML_ELEMENT(STYLE, XML_DATA_STYLE_NAME): aValueHelper.ProcessAttribute( nAttrToken, sAttrValue ); break; case XML_ELEMENT(TEXT, XML_DISPLAY): if ( sAttrValue == "formula" ) bIsShowFormula = true; break; default: // unknown attribute -> ignore XMLOFF_WARN_UNKNOWN_ATTR("xmloff", nAttrToken, sAttrValue); break; } } void XMLTableFormulaImportContext::PrepareField( const Reference & xPropertySet) { // set format and formula aValueHelper.PrepareField( xPropertySet ); Any aAny; // set 'show formula' and presentation xPropertySet->setPropertyValue( "IsShowFormula", Any(bIsShowFormula) ); aAny <<= GetContent(); xPropertySet->setPropertyValue( "CurrentPresentation", aAny ); } // variable declarations // Should be adapted to XMLVarField-/XMLSetVarFieldImportContext scheme! // declaration container import () XMLVariableDeclsImportContext::XMLVariableDeclsImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp, enum VarType eVarType) : SvXMLImportContext(rImport), eVarDeclsContextType(eVarType), rImportHelper(rHlp) { } css::uno::Reference< css::xml::sax::XFastContextHandler > XMLVariableDeclsImportContext::createFastChildContext( sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) { if( IsTokenInNamespace(nElement, XML_NAMESPACE_TEXT) ) { enum XMLTokenEnum eElementName; switch (eVarDeclsContextType) { case VarTypeSequence: eElementName = XML_SEQUENCE_DECL; break; case VarTypeSimple: eElementName = XML_VARIABLE_DECL; break; case VarTypeUserField: eElementName = XML_USER_FIELD_DECL; break; default: OSL_FAIL("unknown field type!"); eElementName = XML_SEQUENCE_DECL; break; } if( nElement == XML_ELEMENT(TEXT, eElementName) ) { return new XMLVariableDeclImportContext( GetImport(), rImportHelper, nElement, xAttrList, eVarDeclsContextType); } } // if no context was created, use default context return nullptr; } // declaration import ( elements) XMLVariableDeclImportContext::XMLVariableDeclImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp, sal_Int32 nElement, const Reference & xAttrList, enum VarType eVarType) : SvXMLImportContext(rImport) { // bug?? which properties for userfield/userfieldmaster XMLValueImportHelper aValueHelper(rImport, rHlp, true, false, true, false); sal_Unicode cSeparationChar('.'); sal_Int8 nNumLevel(-1); OUString sName; if (nElement != XML_ELEMENT(TEXT, XML_SEQUENCE_DECL) && nElement != XML_ELEMENT(TEXT, XML_VARIABLE_DECL) && nElement != XML_ELEMENT(TEXT, XML_USER_FIELD_DECL) ) return; // TODO: check validity (need name!) // parse attributes for (auto &aIter : sax_fastparser::castToFastAttributeList( xAttrList )) { switch (aIter.getToken()) { case XML_ELEMENT(TEXT, XML_NAME): sName = aIter.toString(); break; case XML_ELEMENT(TEXT, XML_DISPLAY_OUTLINE_LEVEL): { sal_Int32 nLevel; bool const bRet = ::sax::Converter::convertNumber( nLevel, aIter.toView(), 0, GetImport().GetTextImport()->GetChapterNumbering()-> getCount()); if (bRet) { nNumLevel = static_cast< sal_Int8 >( nLevel-1 ); // API numbers -1..9 } break; } case XML_ELEMENT(TEXT, XML_SEPARATION_CHARACTER): cSeparationChar = static_cast(aIter.toString().toChar()); break; default: // delegate to value helper aValueHelper.ProcessAttribute(aIter.getToken(), aIter.toView()); break; } } Reference xFieldMaster; if (!FindFieldMaster(xFieldMaster, GetImport(), rHlp, sName, eVarType)) return; // now we have a field master: process attributes! Any aAny; switch (eVarType) { case VarTypeSequence: xFieldMaster->setPropertyValue("ChapterNumberingLevel", Any(nNumLevel)); if (nNumLevel >= 0) { OUString sStr(&cSeparationChar, 1); xFieldMaster->setPropertyValue( "NumberingSeparator", Any(sStr)); } break; case VarTypeSimple: { // set string or non-string SubType (#93192#) // The SubType was already set in the FindFieldMaster // method, but it needs to be adjusted if it's a string. aAny <<= aValueHelper.IsStringValue() ? SetVariableType::STRING : SetVariableType::VAR; xFieldMaster->setPropertyValue(sAPI_sub_type, aAny); } break; case VarTypeUserField: { bool bTmp = !aValueHelper.IsStringValue(); xFieldMaster->setPropertyValue("IsExpression", Any(bTmp)); aValueHelper.PrepareField(xFieldMaster); break; } default: OSL_FAIL("unknown varfield type"); } // switch } bool XMLVariableDeclImportContext::FindFieldMaster( Reference & xMaster, SvXMLImport& rImport, XMLTextImportHelper& rImportHelper, const OUString& sVarName, enum VarType eVarType) { static sal_Int32 nCollisionCount = 0; // rename field // currently: no family in use! Use 0. OUString sName = rImportHelper.GetRenameMap().Get( sal::static_int_cast< sal_uInt16 >(eVarType), sVarName); // get text fields supplier and field masters Reference xTextFieldsSupp(rImport.GetModel(), UNO_QUERY); Reference xFieldMasterNameAccess = xTextFieldsSupp->getTextFieldMasters(); OUString sVarServiceName = OUString::Concat(sAPI_fieldmaster_prefix) + sAPI_set_expression + "." + sName; OUString sUserServiceName = OUString::Concat(sAPI_fieldmaster_prefix) + sAPI_user + "." + sName; if (xFieldMasterNameAccess->hasByName(sVarServiceName)) { // variable field master already in document Any aAny = xFieldMasterNameAccess->getByName(sVarServiceName); aAny >>= xMaster; aAny = xMaster->getPropertyValue(sAPI_sub_type); sal_Int16 nType = 0; aAny >>= nType; enum VarType eFMVarType = (SetVariableType::SEQUENCE == nType) ? VarTypeSequence : VarTypeSimple; if (eFMVarType != eVarType) { ++nCollisionCount; OUString sNew(sName + "_renamed_" + OUString::number(nCollisionCount)); // FIXME! can't find if name is taken already!!!! rImportHelper.GetRenameMap().Add( sal::static_int_cast< sal_uInt16 >(eVarType), sName, sNew); // call FindFieldMaster recursively to create new master return FindFieldMaster(xMaster, rImport, rImportHelper, sNew, eVarType); } } else if (xFieldMasterNameAccess->hasByName(sUserServiceName)) { // user field: get field master Any aAny = xFieldMasterNameAccess->getByName(sUserServiceName); aAny >>= xMaster; if (VarTypeUserField != eVarType) { ++nCollisionCount; // find new name that is not taken OUString sNew(sName + "_renamed_" + OUString::number(nCollisionCount)); // FIXME! can't find if name is taken already!!!! rImportHelper.GetRenameMap().Add( sal::static_int_cast< sal_uInt16 >(eVarType), sName, sNew); // call FindFieldMaster recursively to create new master return FindFieldMaster(xMaster, rImport, rImportHelper, sNew, eVarType); } } else { // field name not used: create field master // import -> model is MultiServiceFactory -> createInstance Reference xFactory(rImport.GetModel(),UNO_QUERY); if( xFactory.is() ) { OUString sService = sAPI_fieldmaster_prefix + ((eVarType==VarTypeUserField) ? OUString(sAPI_user) : OUString(sAPI_set_expression)); Reference xIfc = xFactory->createInstance( sService ); if (xIfc.is()) { Reference xTmp( xIfc, UNO_QUERY ); xMaster = xTmp; // set name xMaster->setPropertyValue("Name", Any(sName)); if (eVarType != VarTypeUserField) { // set subtype for setexp field Any aAny; aAny <<= ((eVarType == VarTypeSimple) ? SetVariableType::VAR : SetVariableType::SEQUENCE); xMaster->setPropertyValue(sAPI_sub_type, aAny); } // else : user field: no subtype } else { return false; } } else { return false; } } DBG_ASSERT(xMaster.is(), "no field master found!?!"); return true; } // Database Display field import XMLDatabaseDisplayImportContext::XMLDatabaseDisplayImportContext( SvXMLImport& rImport, XMLTextImportHelper& rHlp) : XMLDatabaseFieldImportContext(rImport, rHlp, sAPI_database, false), aValueHelper(rImport, rHlp, false, true, false, false), bColumnOK(false), bDisplay( true ), bDisplayOK( false ) { } void XMLDatabaseDisplayImportContext::ProcessAttribute( sal_Int32 nAttrToken, std::string_view sAttrValue ) { switch (nAttrToken) { case XML_ELEMENT(TEXT, XML_COLUMN_NAME): sColumnName = OUString::fromUtf8(sAttrValue); bColumnOK = true; break; case XML_ELEMENT(TEXT, XML_DISPLAY): { bool bNone = IsXMLToken( sAttrValue, XML_NONE ); bool bValue = IsXMLToken( sAttrValue, XML_VALUE ); bDisplay = bValue; bDisplayOK = bNone || bValue; } break; case XML_ELEMENT(TEXT, XML_DATABASE_NAME): case XML_ELEMENT(TEXT, XML_TABLE_NAME): case XML_ELEMENT(TEXT, XML_TABLE_TYPE): // handled by super class XMLDatabaseFieldImportContext::ProcessAttribute(nAttrToken, sAttrValue); break; default: // remainder handled by value helper aValueHelper.ProcessAttribute(nAttrToken, sAttrValue); break; } bValid = m_bTableOK && m_bDatabaseOK && bColumnOK; } void XMLDatabaseDisplayImportContext::endFastElement(sal_Int32 ) { // we have an EndElement of our own, because database fields need // to be attached to a field master before they can be inserted into // the document. Database stuff (database, table, column) all goes // to the field master, value & style go to the field. if (bValid) { // so here goes: we start with the master Reference xMaster; // create and prepare field master first if (CreateField(xMaster, "com.sun.star.text.FieldMaster.Database")) { Any aAny; xMaster->setPropertyValue("DataColumnName", Any(sColumnName)); // fieldmaster takes database, table and column name XMLDatabaseFieldImportContext::PrepareField(xMaster); // create field Reference xField; if (CreateField(xField, sAPI_database)) { // attach field master Reference xDepField(xField, UNO_QUERY); if (xDepField.is()) { // attach field to field master xDepField->attachTextFieldMaster(xMaster); // attach field to document Reference xTextContent(xField, UNO_QUERY); if (xTextContent.is()) { // insert, set field properties and exit! try { GetImportHelper().InsertTextContent(xTextContent); // prepare field: format from database? bool bTmp = !aValueHelper.IsFormatOK(); xField->setPropertyValue("DataBaseFormat", Any(bTmp)); // value, value-type and format done by value helper aValueHelper.PrepareField(xField); // visibility if( bDisplayOK ) { xField->setPropertyValue(sAPI_is_visible, Any(bDisplay)); } // set presentation aAny <<= GetContent(); xField->setPropertyValue(sAPI_current_presentation, aAny); // success! return; } catch (const lang::IllegalArgumentException&) { TOOLS_WARN_EXCEPTION("xmloff.text", "Failed to insert text content"); } } } } } } // above: exit on success; so for all error cases we end up here! // write element content GetImportHelper().InsertString(GetContent()); } // value import helper namespace { enum ValueType { XML_VALUE_TYPE_STRING, XML_VALUE_TYPE_FLOAT, XML_VALUE_TYPE_CURRENCY, XML_VALUE_TYPE_PERCENTAGE, XML_VALUE_TYPE_DATE, XML_VALUE_TYPE_TIME, XML_VALUE_TYPE_BOOLEAN }; } SvXMLEnumMapEntry const aValueTypeMap[] = { { XML_FLOAT, XML_VALUE_TYPE_FLOAT }, { XML_CURRENCY, XML_VALUE_TYPE_CURRENCY }, { XML_PERCENTAGE, XML_VALUE_TYPE_PERCENTAGE }, { XML_DATE, XML_VALUE_TYPE_DATE }, { XML_TIME, XML_VALUE_TYPE_TIME }, { XML_BOOLEAN, XML_VALUE_TYPE_BOOLEAN }, { XML_STRING, XML_VALUE_TYPE_STRING }, { XML_TOKEN_INVALID, ValueType(0) } }; XMLValueImportHelper::XMLValueImportHelper( SvXMLImport& rImprt, XMLTextImportHelper& rHlp, bool bType, bool bStyle, bool bValue, bool bFormula) : rImport(rImprt), rHelper(rHlp), fValue(0.0), nFormatKey(0), bIsDefaultLanguage(true), bStringType(false), bFormatOK(false), bStringValueOK(false), bFormulaOK(false), bSetType(bType), bSetValue(bValue), bSetStyle(bStyle), bSetFormula(bFormula) { } void XMLValueImportHelper::ProcessAttribute( sal_Int32 nAttrToken, std::string_view sAttrValue ) { switch (nAttrToken) { case XML_ELEMENT(TEXT, XML_VALUE_TYPE): // #i32362#: src680m48++ saves text:value-type case XML_ELEMENT(OFFICE, XML_VALUE_TYPE): { // convert enum ValueType eValueType = XML_VALUE_TYPE_STRING; bool bRet = SvXMLUnitConverter::convertEnum( eValueType, sAttrValue, aValueTypeMap); if (bRet) { switch (eValueType) { case XML_VALUE_TYPE_STRING: bStringType = true; break; case XML_VALUE_TYPE_FLOAT: case XML_VALUE_TYPE_CURRENCY: case XML_VALUE_TYPE_PERCENTAGE: case XML_VALUE_TYPE_DATE: case XML_VALUE_TYPE_TIME: case XML_VALUE_TYPE_BOOLEAN: bStringType = false; break; default: OSL_FAIL("unknown value type"); } } break; } case XML_ELEMENT(TEXT, XML_VALUE): case XML_ELEMENT(OFFICE, XML_VALUE): { double fTmp; bool const bRet = ::sax::Converter::convertDouble(fTmp,sAttrValue); if (bRet) { fValue = fTmp; } break; } case XML_ELEMENT(TEXT, XML_TIME_VALUE): case XML_ELEMENT(OFFICE, XML_TIME_VALUE): { double fTmp; bool const bRet = ::sax::Converter::convertDuration(fTmp, sAttrValue); if (bRet) { fValue = fTmp; } break; } case XML_ELEMENT(TEXT, XML_DATE_VALUE): case XML_ELEMENT(OFFICE, XML_DATE_VALUE): { double fTmp; bool bRet = rImport.GetMM100UnitConverter(). convertDateTime(fTmp,sAttrValue); if (bRet) { fValue = fTmp; } break; } case XML_ELEMENT(OFFICE, XML_BOOLEAN_VALUE): { bool bTmp(false); bool bRet = ::sax::Converter::convertBool(bTmp, sAttrValue); if (bRet) { fValue = (bTmp ? 1.0 : 0.0); } else { double fTmp; bRet = ::sax::Converter::convertDouble(fTmp, sAttrValue); if (bRet) { fValue = fTmp; } } break; } case XML_ELEMENT(TEXT, XML_STRING_VALUE): case XML_ELEMENT(OFFICE, XML_STRING_VALUE): sValue = OUString::fromUtf8(sAttrValue); bStringValueOK = true; break; case XML_ELEMENT(TEXT, XML_FORMULA): { OUString sTmp; sal_uInt16 nPrefix = rImport.GetNamespaceMap(). GetKeyByAttrValueQName(OUString::fromUtf8(sAttrValue), &sTmp); if( XML_NAMESPACE_OOOW == nPrefix ) { sFormula = sTmp; bFormulaOK = true; } else sFormula = OUString::fromUtf8(sAttrValue); } break; case XML_ELEMENT(STYLE, XML_DATA_STYLE_NAME): { sal_Int32 nKey = rHelper.GetDataStyleKey( OUString::fromUtf8(sAttrValue), &bIsDefaultLanguage); if (-1 != nKey) { nFormatKey = nKey; bFormatOK = true; } break; } default: XMLOFF_WARN_UNKNOWN_ATTR("xmloff", nAttrToken, sAttrValue); } // switch } void XMLValueImportHelper::PrepareField( const Reference & xPropertySet) { Any aAny; if (bSetType) { // ??? how to set type? } if (bSetFormula) { aAny <<= !bFormulaOK ? sDefault : sFormula; xPropertySet->setPropertyValue(sAPI_content, aAny); } // format/style if (bSetStyle && bFormatOK) { xPropertySet->setPropertyValue(sAPI_number_format, Any(nFormatKey)); if( xPropertySet->getPropertySetInfo()-> hasPropertyByName( "IsFixedLanguage" ) ) { bool bIsFixedLanguage = ! bIsDefaultLanguage; xPropertySet->setPropertyValue( "IsFixedLanguage", Any(bIsFixedLanguage) ); } } // value: string or float if (bSetValue) { if (bStringType) { aAny <<= !bStringValueOK ? sDefault : sValue; xPropertySet->setPropertyValue(sAPI_content, aAny); } else { xPropertySet->setPropertyValue("Value", Any(fValue)); } } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ .po20
-rw-r--r--translations/source/ar/sfx2/source/doc.po86
-rw-r--r--translations/source/ar/svtools/source/dialogs.po70
-rw-r--r--translations/source/ar/svx/source/dialog.po236
-rw-r--r--translations/source/ar/svx/source/src.po9
-rw-r--r--translations/source/ar/svx/source/stbctrls.po18
-rw-r--r--translations/source/ar/svx/source/svdraw.po6
-rw-r--r--translations/source/ar/svx/source/unodialogs/textconversiondlgs.po26
-rw-r--r--translations/source/ar/wizards/source/euro.po7
-rw-r--r--translations/source/as/cui/source/dialogs.po14
-rw-r--r--translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/as/sc/source/ui/src.po73
-rw-r--r--translations/source/as/sfx2/source/doc.po102
-rw-r--r--translations/source/as/svtools/source/dialogs.po70
-rw-r--r--translations/source/ast/cui/source/dialogs.po22
-rw-r--r--translations/source/ast/cui/source/options.po8
-rw-r--r--translations/source/ast/helpcontent2/source/text/scalc/01.po73
-rw-r--r--translations/source/ast/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/ast/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/ast/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/ast/helpcontent2/source/text/shared/02.po54
-rw-r--r--translations/source/ast/helpcontent2/source/text/shared/04.po2
-rw-r--r--translations/source/ast/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/ast/helpcontent2/source/text/shared/optionen.po2
-rw-r--r--translations/source/ast/helpcontent2/source/text/smath/01.po4
-rw-r--r--translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--translations/source/ast/sc/source/ui/optdlg.po8
-rw-r--r--translations/source/ast/sc/source/ui/src.po75
-rw-r--r--translations/source/ast/scp2/source/draw.po8
-rw-r--r--translations/source/ast/sfx2/source/doc.po108
-rw-r--r--translations/source/ast/svtools/source/dialogs.po70
-rw-r--r--translations/source/be/accessibility/source/helper.po3
-rw-r--r--translations/source/be/avmedia/source/framework.po3
-rw-r--r--translations/source/be/avmedia/source/viewer.po11
-rw-r--r--translations/source/be/basctl/source/basicide.po7
-rw-r--r--translations/source/be/basctl/source/dlged.po3
-rw-r--r--translations/source/be/basic/source/classes.po3
-rw-r--r--translations/source/be/basic/source/sbx.po3
-rw-r--r--translations/source/be/chart2/source/controller/dialogs.po29
-rw-r--r--translations/source/be/connectivity/registry/ado/org/openoffice/Office/DataAccess.po17
-rw-r--r--translations/source/be/connectivity/registry/calc/org/openoffice/Office/DataAccess.po15
-rw-r--r--translations/source/be/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po15
-rw-r--r--translations/source/be/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po19
-rw-r--r--translations/source/be/connectivity/registry/flat/org/openoffice/Office/DataAccess.po15
-rw-r--r--translations/source/be/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po15
-rw-r--r--translations/source/be/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po17
-rw-r--r--translations/source/be/connectivity/registry/kab/org/openoffice/Office/DataAccess.po15
-rw-r--r--translations/source/be/connectivity/registry/macab/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/be/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po21
-rw-r--r--translations/source/be/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po19
-rw-r--r--translations/source/be/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po19
-rw-r--r--translations/source/be/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po15
-rw-r--r--translations/source/be/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po15
-rw-r--r--translations/source/be/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po15
-rw-r--r--translations/source/be/connectivity/source/resource.po3
-rw-r--r--translations/source/be/cui/source/customize.po3
-rw-r--r--translations/source/be/cui/source/dialogs.po64
-rw-r--r--translations/source/be/cui/source/options.po122
-rw-r--r--translations/source/be/cui/source/tabpages.po35
-rw-r--r--translations/source/be/dbaccess/source/core/resource.po3
-rw-r--r--translations/source/be/dbaccess/source/ext/macromigration.po3
-rw-r--r--translations/source/be/dbaccess/source/sdbtools/resource.po3
-rw-r--r--translations/source/be/dbaccess/source/ui/app.po3
-rw-r--r--translations/source/be/dbaccess/source/ui/browser.po3
-rw-r--r--translations/source/be/dbaccess/source/ui/control.po3
-rw-r--r--translations/source/be/dbaccess/source/ui/dlg.po3
-rw-r--r--translations/source/be/dbaccess/source/ui/inc.po3
-rw-r--r--translations/source/be/dbaccess/source/ui/misc.po3
-rw-r--r--translations/source/be/dbaccess/source/ui/querydesign.po3
-rw-r--r--translations/source/be/dbaccess/source/ui/relationdesign.po3
-rw-r--r--translations/source/be/dbaccess/source/ui/tabledesign.po3
-rw-r--r--translations/source/be/dbaccess/source/ui/uno.po3
-rw-r--r--translations/source/be/desktop/source/app.po3
-rw-r--r--translations/source/be/desktop/source/deployment/gui.po3
-rw-r--r--translations/source/be/desktop/source/deployment/manager.po3
-rw-r--r--translations/source/be/desktop/source/deployment/misc.po3
-rw-r--r--translations/source/be/desktop/source/deployment/registry.po3
-rw-r--r--translations/source/be/desktop/source/deployment/registry/component.po3
-rw-r--r--translations/source/be/desktop/source/deployment/registry/configuration.po3
-rw-r--r--translations/source/be/desktop/source/deployment/registry/help.po3
-rw-r--r--translations/source/be/desktop/source/deployment/registry/package.po3
-rw-r--r--translations/source/be/desktop/source/deployment/registry/script.po3
-rw-r--r--translations/source/be/desktop/source/deployment/registry/sfwk.po3
-rw-r--r--translations/source/be/desktop/source/deployment/unopkg.po3
-rw-r--r--translations/source/be/desktop/win32/source/setup.po197
-rw-r--r--translations/source/be/dictionaries/af_ZA.po3
-rw-r--r--translations/source/be/dictionaries/an_ES.po3
-rw-r--r--translations/source/be/dictionaries/ar.po3
-rw-r--r--translations/source/be/dictionaries/be_BY.po3
-rw-r--r--translations/source/be/dictionaries/bg_BG.po3
-rw-r--r--translations/source/be/dictionaries/bn_BD.po3
-rw-r--r--translations/source/be/dictionaries/br_FR.po3
-rw-r--r--translations/source/be/dictionaries/ca.po3
-rw-r--r--translations/source/be/dictionaries/cs_CZ.po3
-rw-r--r--translations/source/be/dictionaries/da_DK.po3
-rw-r--r--translations/source/be/dictionaries/de.po7
-rw-r--r--translations/source/be/dictionaries/el_GR.po3
-rw-r--r--translations/source/be/dictionaries/en.po3
-rw-r--r--translations/source/be/dictionaries/en/dialog.po5
-rw-r--r--translations/source/be/dictionaries/es_ES.po3
-rw-r--r--translations/source/be/dictionaries/et_EE.po3
-rw-r--r--translations/source/be/dictionaries/fr_FR.po3
-rw-r--r--translations/source/be/dictionaries/gd_GB.po3
-rw-r--r--translations/source/be/dictionaries/gl.po3
-rw-r--r--translations/source/be/dictionaries/gu_IN.po3
-rw-r--r--translations/source/be/dictionaries/he_IL.po3
-rw-r--r--translations/source/be/dictionaries/hi_IN.po3
-rw-r--r--translations/source/be/dictionaries/hr_HR.po3
-rw-r--r--translations/source/be/dictionaries/hu_HU.po3
-rw-r--r--translations/source/be/dictionaries/hu_HU/dialog.po25
-rw-r--r--translations/source/be/dictionaries/it_IT.po3
-rw-r--r--translations/source/be/dictionaries/ku_TR.po3
-rw-r--r--translations/source/be/dictionaries/lt_LT.po3
-rw-r--r--translations/source/be/dictionaries/lv_LV.po3
-rw-r--r--translations/source/be/dictionaries/ne_NP.po3
-rw-r--r--translations/source/be/dictionaries/nl_NL.po3
-rw-r--r--translations/source/be/dictionaries/no.po3
-rw-r--r--translations/source/be/dictionaries/oc_FR.po3
-rw-r--r--translations/source/be/dictionaries/pl_PL.po3
-rw-r--r--translations/source/be/dictionaries/pt_BR.po3
-rw-r--r--translations/source/be/dictionaries/pt_PT.po3
-rw-r--r--translations/source/be/dictionaries/ro.po3
-rw-r--r--translations/source/be/dictionaries/ru_RU.po3
-rw-r--r--translations/source/be/dictionaries/ru_RU/dialog.po3
-rw-r--r--translations/source/be/dictionaries/si_LK.po3
-rw-r--r--translations/source/be/dictionaries/sk_SK.po3
-rw-r--r--translations/source/be/dictionaries/sl_SI.po3
-rw-r--r--translations/source/be/dictionaries/sr.po3
-rw-r--r--translations/source/be/dictionaries/sv_SE.po3
-rw-r--r--translations/source/be/dictionaries/sw_TZ.po3
-rw-r--r--translations/source/be/dictionaries/te_IN.po3
-rw-r--r--translations/source/be/dictionaries/th_TH.po3
-rw-r--r--translations/source/be/dictionaries/uk_UA.po3
-rw-r--r--translations/source/be/dictionaries/vi.po3
-rw-r--r--translations/source/be/dictionaries/zu_ZA.po3
-rw-r--r--translations/source/be/editeng/source/accessibility.po3
-rw-r--r--translations/source/be/editeng/source/editeng.po11
-rw-r--r--translations/source/be/editeng/source/items.po3
-rw-r--r--translations/source/be/editeng/source/misc.po3
-rw-r--r--translations/source/be/editeng/source/outliner.po3
-rw-r--r--translations/source/be/extensions/source/abpilot.po3
-rw-r--r--translations/source/be/extensions/source/bibliography.po3
-rw-r--r--translations/source/be/extensions/source/dbpilots.po3
-rw-r--r--translations/source/be/extensions/source/propctrlr.po3
-rw-r--r--translations/source/be/extensions/source/scanner.po3
-rw-r--r--translations/source/be/extensions/source/update/check.po17
-rw-r--r--translations/source/be/extensions/source/update/check/org/openoffice/Office.po15
-rw-r--r--translations/source/be/filter/source/config/fragments/filters.po43
-rw-r--r--translations/source/be/filter/source/config/fragments/internalgraphicfilters.po3
-rw-r--r--translations/source/be/filter/source/config/fragments/types.po3
-rw-r--r--translations/source/be/filter/source/flash.po3
-rw-r--r--translations/source/be/filter/source/graphicfilter/eps.po3
-rw-r--r--translations/source/be/filter/source/pdf.po14
-rw-r--r--translations/source/be/filter/source/t602.po3
-rw-r--r--translations/source/be/filter/source/xsltdialog.po13
-rw-r--r--translations/source/be/forms/source/resource.po3
-rw-r--r--translations/source/be/formula/source/core/resource.po9
-rw-r--r--translations/source/be/formula/source/ui/dlg.po3
-rw-r--r--translations/source/be/fpicker/source/office.po64
-rw-r--r--translations/source/be/framework/source/classes.po3
-rw-r--r--translations/source/be/framework/source/services.po3
-rw-r--r--translations/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po36
-rw-r--r--translations/source/be/mysqlc/source.po3
-rw-r--r--translations/source/be/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po3
-rw-r--r--translations/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po5
-rw-r--r--translations/source/be/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po3
-rw-r--r--translations/source/be/nlpsolver/src/locale.po31
-rw-r--r--translations/source/be/officecfg/registry/data/org/openoffice/Office.po3
-rw-r--r--translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po41
-rw-r--r--translations/source/be/padmin/source.po14
-rw-r--r--translations/source/be/readlicense_oo/docs/readme.po29
-rw-r--r--translations/source/be/reportbuilder/java/com/sun/star/report/function/metadata.po3
-rw-r--r--translations/source/be/reportbuilder/registry/data/org/openoffice/Office.po3
-rw-r--r--translations/source/be/reportbuilder/registry/data/org/openoffice/Office/UI.po3
-rw-r--r--translations/source/be/reportbuilder/registry/data/org/openoffice/TypeDetection.po3
-rw-r--r--translations/source/be/reportbuilder/util.po3
-rw-r--r--translations/source/be/reportdesign/source/core/resource.po3
-rw-r--r--translations/source/be/reportdesign/source/ui/dlg.po3
-rw-r--r--translations/source/be/reportdesign/source/ui/inspection.po3
-rw-r--r--translations/source/be/reportdesign/source/ui/report.po3
-rw-r--r--translations/source/be/sc/source/core/src.po3
-rw-r--r--translations/source/be/sc/source/ui/cctrl.po3
-rw-r--r--translations/source/be/sc/source/ui/dbgui.po11
-rw-r--r--translations/source/be/sc/source/ui/docshell.po3
-rw-r--r--translations/source/be/sc/source/ui/drawfunc.po3
-rw-r--r--translations/source/be/sc/source/ui/formdlg.po3
-rw-r--r--translations/source/be/sc/source/ui/miscdlgs.po3
-rw-r--r--translations/source/be/sc/source/ui/navipi.po3
-rw-r--r--translations/source/be/sc/source/ui/optdlg.po23
-rw-r--r--translations/source/be/sc/source/ui/pagedlg.po3
-rw-r--r--translations/source/be/sc/source/ui/src.po225
-rw-r--r--translations/source/be/sc/source/ui/styleui.po3
-rw-r--r--translations/source/be/scaddins/source/analysis.po52
-rw-r--r--translations/source/be/scaddins/source/datefunc.po3
-rw-r--r--translations/source/be/sccomp/source/solver.po3
-rw-r--r--translations/source/be/scp2/source/accessories.po3
-rw-r--r--translations/source/be/scp2/source/activex.po3
-rw-r--r--translations/source/be/scp2/source/base.po11
-rw-r--r--translations/source/be/scp2/source/binfilter.po3
-rw-r--r--translations/source/be/scp2/source/calc.po3
-rw-r--r--translations/source/be/scp2/source/draw.po15
-rw-r--r--translations/source/be/scp2/source/extensions.po3
-rw-r--r--translations/source/be/scp2/source/gnome.po3
-rw-r--r--translations/source/be/scp2/source/graphicfilter.po3
-rw-r--r--translations/source/be/scp2/source/impress.po3
-rw-r--r--translations/source/be/scp2/source/javafilter.po3
-rw-r--r--translations/source/be/scp2/source/kde.po3
-rw-r--r--translations/source/be/scp2/source/math.po3
-rw-r--r--translations/source/be/scp2/source/onlineupdate.po3
-rw-r--r--translations/source/be/scp2/source/ooo.po37
-rw-r--r--translations/source/be/scp2/source/python.po3
-rw-r--r--translations/source/be/scp2/source/quickstart.po3
-rw-r--r--translations/source/be/scp2/source/sdkoo.po3
-rw-r--r--translations/source/be/scp2/source/smoketest.po3
-rw-r--r--translations/source/be/scp2/source/stdlibs.po17
-rw-r--r--translations/source/be/scp2/source/tde.po17
-rw-r--r--translations/source/be/scp2/source/testtool.po24
-rw-r--r--translations/source/be/scp2/source/winexplorerext.po3
-rw-r--r--translations/source/be/scp2/source/writer.po3
-rw-r--r--translations/source/be/scp2/source/xsltfilter.po3
-rw-r--r--translations/source/be/scripting/source/pyprov.po3
-rw-r--r--translations/source/be/sd/source/core.po3
-rw-r--r--translations/source/be/sd/source/filter/html.po3
-rw-r--r--translations/source/be/sd/source/ui/accessibility.po3
-rw-r--r--translations/source/be/sd/source/ui/animations.po12
-rw-r--r--translations/source/be/sd/source/ui/annotations.po3
-rw-r--r--translations/source/be/sd/source/ui/app.po36
-rw-r--r--translations/source/be/sd/source/ui/dlg.po9
-rw-r--r--translations/source/be/sd/source/ui/slideshow.po3
-rw-r--r--translations/source/be/sd/source/ui/table.po3
-rw-r--r--translations/source/be/sd/source/ui/view.po3
-rw-r--r--translations/source/be/sdext/source/minimizer.po17
-rw-r--r--translations/source/be/sdext/source/minimizer/registry/data/org/openoffice/Office.po3
-rw-r--r--translations/source/be/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po23
-rw-r--r--translations/source/be/sdext/source/pdfimport.po3
-rw-r--r--translations/source/be/sdext/source/presenter.po3
-rw-r--r--translations/source/be/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po3
-rw-r--r--translations/source/be/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po3
-rw-r--r--translations/source/be/setup_native/source/mac.po3
-rw-r--r--translations/source/be/sfx2/source/appl.po15
-rw-r--r--translations/source/be/sfx2/source/bastyp.po3
-rw-r--r--translations/source/be/sfx2/source/dialog.po3
-rw-r--r--translations/source/be/sfx2/source/doc.po107
-rw-r--r--translations/source/be/sfx2/source/menu.po3
-rw-r--r--translations/source/be/sfx2/source/view.po3
-rw-r--r--translations/source/be/shell/source/win32/shlxthandler/res.po3
-rw-r--r--translations/source/be/starmath/source.po21
-rw-r--r--translations/source/be/svl/source/items.po3
-rw-r--r--translations/source/be/svl/source/misc.po3
-rw-r--r--translations/source/be/svtools/source/contnr.po3
-rw-r--r--translations/source/be/svtools/source/control.po3
-rw-r--r--translations/source/be/svtools/source/dialogs.po71
-rw-r--r--translations/source/be/svtools/source/filter.po3
-rw-r--r--translations/source/be/svtools/source/java.po27
-rw-r--r--translations/source/be/svtools/source/misc.po26
-rw-r--r--translations/source/be/svtools/source/toolpanel.po3
-rw-r--r--translations/source/be/svtools/workben/unodialog.po3
-rw-r--r--translations/source/be/svx/inc.po3
-rw-r--r--translations/source/be/svx/source/accessibility.po3
-rw-r--r--translations/source/be/svx/source/dialog.po3
-rw-r--r--translations/source/be/svx/source/engine3d.po3
-rw-r--r--translations/source/be/svx/source/fmcomp.po3
-rw-r--r--translations/source/be/svx/source/form.po3
-rw-r--r--translations/source/be/svx/source/gallery2.po3
-rw-r--r--translations/source/be/svx/source/items.po3
-rw-r--r--translations/source/be/svx/source/src.po14
-rw-r--r--translations/source/be/svx/source/stbctrls.po31
-rw-r--r--translations/source/be/svx/source/svdraw.po3
-rw-r--r--translations/source/be/svx/source/table.po3
-rw-r--r--translations/source/be/svx/source/tbxctrls.po3
-rw-r--r--translations/source/be/svx/source/toolbars.po3
-rw-r--r--translations/source/be/svx/source/unodialogs/textconversiondlgs.po3
-rw-r--r--translations/source/be/sw/source/core/layout.po3
-rw-r--r--translations/source/be/sw/source/core/undo.po3
-rw-r--r--translations/source/be/sw/source/core/unocore.po3
-rw-r--r--translations/source/be/sw/source/ui/app.po13
-rw-r--r--translations/source/be/sw/source/ui/chrdlg.po3
-rw-r--r--translations/source/be/sw/source/ui/config.po29
-rw-r--r--translations/source/be/sw/source/ui/dbui.po7
-rw-r--r--translations/source/be/sw/source/ui/dialog.po3
-rw-r--r--translations/source/be/sw/source/ui/dochdl.po3
-rw-r--r--translations/source/be/sw/source/ui/docvw.po3
-rw-r--r--translations/source/be/sw/source/ui/envelp.po13
-rw-r--r--translations/source/be/sw/source/ui/fldui.po3
-rw-r--r--translations/source/be/sw/source/ui/fmtui.po3
-rw-r--r--translations/source/be/sw/source/ui/frmdlg.po3
-rw-r--r--translations/source/be/sw/source/ui/globdoc.po3
-rw-r--r--translations/source/be/sw/source/ui/index.po3
-rw-r--r--translations/source/be/sw/source/ui/lingu.po11
-rw-r--r--translations/source/be/sw/source/ui/misc.po3
-rw-r--r--translations/source/be/sw/source/ui/ribbar.po15
-rw-r--r--translations/source/be/sw/source/ui/shells.po3
-rw-r--r--translations/source/be/sw/source/ui/smartmenu.po3
-rw-r--r--translations/source/be/sw/source/ui/table.po3
-rw-r--r--translations/source/be/sw/source/ui/uiview.po3
-rw-r--r--translations/source/be/sw/source/ui/utlui.po89
-rw-r--r--translations/source/be/sw/source/ui/web.po3
-rw-r--r--translations/source/be/sw/source/ui/wrtsh.po3
-rw-r--r--translations/source/be/swext/mediawiki/help.po14
-rw-r--r--translations/source/be/swext/mediawiki/src.po3
-rw-r--r--translations/source/be/swext/mediawiki/src/registry/data/org/openoffice/Office.po3
-rw-r--r--translations/source/be/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po3
-rw-r--r--translations/source/be/sysui/desktop/share.po39
-rw-r--r--translations/source/be/uui/source.po3
-rw-r--r--translations/source/be/vcl/source/src.po17
-rw-r--r--translations/source/be/wizards/source/euro.po3
-rw-r--r--translations/source/be/wizards/source/formwizard.po3
-rw-r--r--translations/source/be/wizards/source/importwizard.po3
-rw-r--r--translations/source/be/wizards/source/schedule.po3
-rw-r--r--translations/source/be/wizards/source/template.po3
-rw-r--r--translations/source/be/xmlsecurity/source/component.po3
-rw-r--r--translations/source/be/xmlsecurity/source/dialogs.po3
-rw-r--r--translations/source/bg/cui/source/dialogs.po16
-rw-r--r--translations/source/bg/cui/source/options.po2
-rw-r--r--translations/source/bg/helpcontent2/source/text/scalc/01.po65
-rw-r--r--translations/source/bg/helpcontent2/source/text/scalc/04.po30
-rw-r--r--translations/source/bg/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--translations/source/bg/helpcontent2/source/text/sdraw/04.po4
-rw-r--r--translations/source/bg/helpcontent2/source/text/shared/00.po8
-rw-r--r--translations/source/bg/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/bg/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/bg/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/bg/helpcontent2/source/text/shared/optionen.po77
-rw-r--r--translations/source/bg/helpcontent2/source/text/swriter/04.po4
-rw-r--r--translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/bg/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/bg/sc/source/ui/src.po80
-rw-r--r--translations/source/bg/scp2/source/draw.po2
-rw-r--r--translations/source/bg/scp2/source/ooo.po4
-rw-r--r--translations/source/bg/sfx2/source/doc.po102
-rw-r--r--translations/source/bg/svtools/source/dialogs.po70
-rw-r--r--translations/source/bn-IN/basctl/source/basicide.po14
-rw-r--r--translations/source/bn-IN/chart2/source/controller/dialogs.po591
-rw-r--r--translations/source/bn-IN/connectivity/source/resource.po26
-rw-r--r--translations/source/bn-IN/cui/source/dialogs.po88
-rw-r--r--translations/source/bn-IN/cui/source/options.po197
-rw-r--r--translations/source/bn-IN/dbaccess/source/core/resource.po6
-rw-r--r--translations/source/bn-IN/dbaccess/source/ext/macromigration.po8
-rw-r--r--translations/source/bn-IN/dbaccess/source/ui/app.po6
-rw-r--r--translations/source/bn-IN/dbaccess/source/ui/dlg.po349
-rw-r--r--translations/source/bn-IN/desktop/source/app.po6
-rw-r--r--translations/source/bn-IN/desktop/source/deployment/gui.po6
-rw-r--r--translations/source/bn-IN/desktop/source/deployment/misc.po6
-rw-r--r--translations/source/bn-IN/desktop/source/deployment/registry/component.po6
-rw-r--r--translations/source/bn-IN/editeng/source/editeng.po11
-rw-r--r--translations/source/bn-IN/editeng/source/items.po7
-rw-r--r--translations/source/bn-IN/extensions/source/update/check.po34
-rw-r--r--translations/source/bn-IN/filter/source/config/fragments/filters.po62
-rw-r--r--translations/source/bn-IN/filter/source/config/fragments/internalgraphicfilters.po4
-rw-r--r--translations/source/bn-IN/filter/source/config/fragments/types.po6
-rw-r--r--translations/source/bn-IN/filter/source/pdf.po18
-rw-r--r--translations/source/bn-IN/filter/source/xsltdialog.po22
-rw-r--r--translations/source/bn-IN/fpicker/source/office.po217
-rw-r--r--translations/source/bn-IN/helpcontent2/source/text/scalc/01.po29
-rw-r--r--translations/source/bn-IN/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/bn-IN/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/bn-IN/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/bn-IN/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/bn-IN/helpcontent2/source/text/shared/guide.po8
-rw-r--r--translations/source/bn-IN/helpcontent2/source/text/shared/optionen.po2
-rw-r--r--translations/source/bn-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po163
-rw-r--r--translations/source/bn-IN/mysqlc/source.po6
-rw-r--r--translations/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po56
-rw-r--r--translations/source/bn-IN/padmin/source.po270
-rw-r--r--translations/source/bn-IN/readlicense_oo/docs/readme.po18
-rw-r--r--translations/source/bn-IN/reportbuilder/java/com/sun/star/report/function/metadata.po8
-rw-r--r--translations/source/bn-IN/reportbuilder/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/bn-IN/reportbuilder/util.po8
-rw-r--r--translations/source/bn-IN/sc/source/ui/dbgui.po22
-rw-r--r--translations/source/bn-IN/sc/source/ui/miscdlgs.po6
-rw-r--r--translations/source/bn-IN/sc/source/ui/navipi.po6
-rw-r--r--translations/source/bn-IN/sc/source/ui/src.po851
-rw-r--r--translations/source/bn-IN/sc/source/ui/styleui.po6
-rw-r--r--translations/source/bn-IN/scp2/source/accessories.po6
-rw-r--r--translations/source/bn-IN/scp2/source/calc.po6
-rw-r--r--translations/source/bn-IN/scp2/source/extensions.po8
-rw-r--r--translations/source/bn-IN/scripting/source/pyprov.po8
-rw-r--r--translations/source/bn-IN/sd/source/core.po6
-rw-r--r--translations/source/bn-IN/sd/source/ui/app.po511
-rw-r--r--translations/source/bn-IN/sd/source/ui/dlg.po16
-rw-r--r--translations/source/bn-IN/sfx2/source/dialog.po8
-rw-r--r--translations/source/bn-IN/sfx2/source/doc.po108
-rw-r--r--translations/source/bn-IN/starmath/source.po47
-rw-r--r--translations/source/bn-IN/svl/source/misc.po6
-rw-r--r--translations/source/bn-IN/svtools/source/dialogs.po74
-rw-r--r--translations/source/bn-IN/svtools/source/java.po16
-rw-r--r--translations/source/bn-IN/svtools/source/misc.po38
-rw-r--r--translations/source/bn-IN/svx/inc.po379
-rw-r--r--translations/source/bn-IN/svx/source/dialog.po22
-rw-r--r--translations/source/bn-IN/svx/source/src.po13
-rw-r--r--translations/source/bn-IN/svx/source/stbctrls.po43
-rw-r--r--translations/source/bn-IN/sw/source/core/layout.po8
-rw-r--r--translations/source/bn-IN/sw/source/core/undo.po6
-rw-r--r--translations/source/bn-IN/sw/source/ui/app.po20
-rw-r--r--translations/source/bn-IN/sw/source/ui/chrdlg.po6
-rw-r--r--translations/source/bn-IN/sw/source/ui/config.po37
-rw-r--r--translations/source/bn-IN/sw/source/ui/dbui.po10
-rw-r--r--translations/source/bn-IN/sw/source/ui/dialog.po8
-rw-r--r--translations/source/bn-IN/sw/source/ui/docvw.po8
-rw-r--r--translations/source/bn-IN/sw/source/ui/index.po6
-rw-r--r--translations/source/bn-IN/sw/source/ui/lingu.po13
-rw-r--r--translations/source/bn-IN/sw/source/ui/shells.po10
-rw-r--r--translations/source/bn-IN/sw/source/ui/table.po6
-rw-r--r--translations/source/bn-IN/sw/source/ui/utlui.po8
-rw-r--r--translations/source/bn-IN/swext/mediawiki/help.po6
-rw-r--r--translations/source/bn-IN/swext/mediawiki/src.po6
-rw-r--r--translations/source/bn-IN/sysui/desktop/share.po54
-rw-r--r--translations/source/bn-IN/uui/source.po78
-rw-r--r--translations/source/bn-IN/vcl/source/src.po82
-rw-r--r--translations/source/bn-IN/wizards/source/euro.po6
-rw-r--r--translations/source/bn-IN/wizards/source/importwizard.po6
-rw-r--r--translations/source/bn/cui/source/dialogs.po14
-rw-r--r--translations/source/bn/helpcontent2/source/text/scalc/01.po29
-rw-r--r--translations/source/bn/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/bn/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/bn/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/bn/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/bn/helpcontent2/source/text/shared/guide.po8
-rw-r--r--translations/source/bn/helpcontent2/source/text/shared/optionen.po2
-rw-r--r--translations/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/bn/sc/source/ui/src.po73
-rw-r--r--translations/source/bn/sfx2/source/doc.po86
-rw-r--r--translations/source/bn/svtools/source/dialogs.po70
-rw-r--r--translations/source/bo/cui/source/dialogs.po14
-rw-r--r--translations/source/bo/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/bo/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/bo/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/bo/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/bo/helpcontent2/source/text/shared/02.po48
-rw-r--r--translations/source/bo/helpcontent2/source/text/shared/guide.po8
-rw-r--r--translations/source/bo/helpcontent2/source/text/shared/optionen.po2
-rw-r--r--translations/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/bo/sc/source/ui/src.po73
-rw-r--r--translations/source/bo/sfx2/source/doc.po84
-rw-r--r--translations/source/bo/svtools/source/dialogs.po70
-rw-r--r--translations/source/br/cui/source/dialogs.po16
-rw-r--r--translations/source/br/cui/source/options.po2
-rw-r--r--translations/source/br/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/br/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/br/sc/source/ui/src.po73
-rw-r--r--translations/source/br/scp2/source/draw.po2
-rw-r--r--translations/source/br/sfx2/source/doc.po106
-rw-r--r--translations/source/br/svtools/source/dialogs.po70
-rw-r--r--translations/source/brx/cui/source/dialogs.po14
-rw-r--r--translations/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/brx/sc/source/ui/src.po73
-rw-r--r--translations/source/brx/sfx2/source/doc.po84
-rw-r--r--translations/source/brx/svtools/source/dialogs.po70
-rw-r--r--translations/source/bs/cui/source/dialogs.po14
-rw-r--r--translations/source/bs/helpcontent2/source/text/scalc/01.po29
-rw-r--r--translations/source/bs/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/bs/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/bs/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/bs/helpcontent2/source/text/shared/02.po36
-rw-r--r--translations/source/bs/helpcontent2/source/text/shared/guide.po8
-rw-r--r--translations/source/bs/helpcontent2/source/text/shared/optionen.po2
-rw-r--r--translations/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/bs/sc/source/ui/src.po73
-rw-r--r--translations/source/bs/sfx2/source/doc.po86
-rw-r--r--translations/source/bs/svtools/source/dialogs.po70
-rw-r--r--translations/source/ca-XV/cui/source/dialogs.po14
-rw-r--r--translations/source/ca-XV/helpcontent2/source/text/scalc/01.po29
-rw-r--r--translations/source/ca-XV/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/ca-XV/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/ca-XV/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/ca-XV/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/ca-XV/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/ca-XV/helpcontent2/source/text/shared/optionen.po2
-rw-r--r--translations/source/ca-XV/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ca-XV/sc/source/ui/src.po73
-rw-r--r--translations/source/ca-XV/sfx2/source/doc.po102
-rw-r--r--translations/source/ca-XV/svtools/source/dialogs.po70
-rw-r--r--translations/source/ca/cui/source/dialogs.po16
-rw-r--r--translations/source/ca/cui/source/options.po2
-rw-r--r--translations/source/ca/helpcontent2/source/text/scalc/01.po29
-rw-r--r--translations/source/ca/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/ca/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/ca/helpcontent2/source/text/shared/00.po2
-rw-r--r--translations/source/ca/helpcontent2/source/text/shared/01.po12
-rw-r--r--translations/source/ca/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/ca/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/ca/helpcontent2/source/text/shared/optionen.po2
-rw-r--r--translations/source/ca/helpcontent2/source/text/swriter/guide.po2
-rw-r--r--translations/source/ca/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/ca/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/ca/sc/source/ui/src.po73
-rw-r--r--translations/source/ca/scp2/source/draw.po2
-rw-r--r--translations/source/ca/sfx2/source/doc.po106
-rw-r--r--translations/source/ca/svtools/source/dialogs.po72
-rw-r--r--translations/source/ca/svtools/source/misc.po2
-rw-r--r--translations/source/cs/connectivity/source/resource.po2
-rw-r--r--translations/source/cs/cui/source/dialogs.po16
-rw-r--r--translations/source/cs/cui/source/options.po8
-rw-r--r--translations/source/cs/cui/source/tabpages.po6
-rw-r--r--translations/source/cs/helpcontent2/source/text/scalc.po12
-rw-r--r--translations/source/cs/helpcontent2/source/text/scalc/00.po10
-rw-r--r--translations/source/cs/helpcontent2/source/text/scalc/01.po40
-rw-r--r--translations/source/cs/helpcontent2/source/text/scalc/04.po6
-rw-r--r--translations/source/cs/helpcontent2/source/text/scalc/05.po8
-rw-r--r--translations/source/cs/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--translations/source/cs/helpcontent2/source/text/sdraw.po16
-rw-r--r--translations/source/cs/helpcontent2/source/text/shared.po24
-rw-r--r--translations/source/cs/helpcontent2/source/text/shared/00.po10
-rw-r--r--translations/source/cs/helpcontent2/source/text/shared/01.po40
-rw-r--r--translations/source/cs/helpcontent2/source/text/shared/02.po56
-rw-r--r--translations/source/cs/helpcontent2/source/text/shared/autopi.po10
-rw-r--r--translations/source/cs/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--translations/source/cs/helpcontent2/source/text/shared/guide.po22
-rw-r--r--translations/source/cs/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--translations/source/cs/helpcontent2/source/text/simpress.po16
-rw-r--r--translations/source/cs/helpcontent2/source/text/simpress/01.po8
-rw-r--r--translations/source/cs/helpcontent2/source/text/simpress/02.po26
-rw-r--r--translations/source/cs/helpcontent2/source/text/simpress/guide.po14
-rw-r--r--translations/source/cs/helpcontent2/source/text/smath.po14
-rw-r--r--translations/source/cs/helpcontent2/source/text/smath/guide.po8
-rw-r--r--translations/source/cs/helpcontent2/source/text/swriter.po14
-rw-r--r--translations/source/cs/helpcontent2/source/text/swriter/01.po12
-rw-r--r--translations/source/cs/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--translations/source/cs/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--translations/source/cs/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po30
-rw-r--r--translations/source/cs/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/cs/sc/source/ui/src.po79
-rw-r--r--translations/source/cs/scp2/source/accessories.po6
-rw-r--r--translations/source/cs/scp2/source/draw.po2
-rw-r--r--translations/source/cs/scp2/source/extensions.po8
-rw-r--r--translations/source/cs/sd/source/ui/app.po6
-rw-r--r--translations/source/cs/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po14
-rw-r--r--translations/source/cs/setup_native/source/mac.po6
-rw-r--r--translations/source/cs/sfx2/source/doc.po106
-rw-r--r--translations/source/cs/starmath/source.po8
-rw-r--r--translations/source/cs/svtools/source/dialogs.po70
-rw-r--r--translations/source/cs/svx/source/dialog.po8
-rw-r--r--translations/source/cs/svx/source/gallery2.po6
-rw-r--r--translations/source/cs/svx/source/svdraw.po16
-rw-r--r--translations/source/cs/sw/source/ui/dialog.po10
-rw-r--r--translations/source/cy/basctl/source/basicide.po2
-rw-r--r--translations/source/cy/cui/source/dialogs.po18
-rw-r--r--translations/source/cy/cui/source/options.po8
-rw-r--r--translations/source/cy/cui/source/tabpages.po2
-rw-r--r--translations/source/cy/dbaccess/source/ui/dlg.po2
-rw-r--r--translations/source/cy/dictionaries/hu_HU/dialog.po4
-rw-r--r--translations/source/cy/extensions/source/update/check.po2
-rw-r--r--translations/source/cy/filter/source/config/fragments/types.po4
-rw-r--r--translations/source/cy/forms/source/resource.po2
-rw-r--r--translations/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--translations/source/cy/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/cy/sc/source/ui/src.po71
-rw-r--r--translations/source/cy/scaddins/source/analysis.po2
-rw-r--r--translations/source/cy/scp2/source/accessories.po18
-rw-r--r--translations/source/cy/scp2/source/draw.po2
-rw-r--r--translations/source/cy/scp2/source/ooo.po34
-rw-r--r--translations/source/cy/sd/source/ui/dlg.po2
-rw-r--r--translations/source/cy/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/cy/sfx2/source/dialog.po2
-rw-r--r--translations/source/cy/sfx2/source/doc.po104
-rw-r--r--translations/source/cy/svtools/source/dialogs.po72
-rw-r--r--translations/source/cy/svtools/source/java.po2
-rw-r--r--translations/source/cy/svtools/source/misc.po10
-rw-r--r--translations/source/cy/svx/source/dialog.po50
-rw-r--r--translations/source/cy/svx/source/form.po2
-rw-r--r--translations/source/cy/svx/source/src.po2
-rw-r--r--translations/source/cy/svx/source/stbctrls.po2
-rw-r--r--translations/source/cy/svx/source/svdraw.po4
-rw-r--r--translations/source/cy/svx/source/unodialogs/textconversiondlgs.po16
-rw-r--r--translations/source/cy/sw/source/core/undo.po2
-rw-r--r--translations/source/cy/sw/source/ui/app.po2
-rw-r--r--translations/source/cy/sw/source/ui/config.po2
-rw-r--r--translations/source/cy/sw/source/ui/dbui.po2
-rw-r--r--translations/source/cy/sw/source/ui/envelp.po2
-rw-r--r--translations/source/cy/sw/source/ui/fldui.po2
-rw-r--r--translations/source/cy/sw/source/ui/lingu.po2
-rw-r--r--translations/source/cy/sw/source/ui/ribbar.po2
-rw-r--r--translations/source/cy/sw/source/ui/uiview.po4
-rw-r--r--translations/source/cy/sw/source/ui/utlui.po2
-rw-r--r--translations/source/cy/swext/mediawiki/help.po2
-rw-r--r--translations/source/cy/sysui/desktop/share.po2
-rw-r--r--translations/source/cy/uui/source.po2
-rw-r--r--translations/source/cy/vcl/source/src.po2
-rw-r--r--translations/source/cy/wizards/source/euro.po2
-rw-r--r--translations/source/cy/wizards/source/formwizard.po2
-rw-r--r--translations/source/cy/wizards/source/importwizard.po2
-rw-r--r--translations/source/cy/wizards/source/template.po2
-rw-r--r--translations/source/da/cui/source/dialogs.po16
-rw-r--r--translations/source/da/cui/source/options.po2
-rw-r--r--translations/source/da/helpcontent2/source/text/scalc/01.po35
-rw-r--r--translations/source/da/helpcontent2/source/text/scalc/04.po8
-rw-r--r--translations/source/da/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--translations/source/da/helpcontent2/source/text/shared/00.po6
-rw-r--r--translations/source/da/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/da/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/da/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/da/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--translations/source/da/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/da/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/da/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/da/sc/source/ui/src.po74
-rw-r--r--translations/source/da/scp2/source/draw.po2
-rw-r--r--translations/source/da/sfx2/source/doc.po102
-rw-r--r--translations/source/da/svtools/source/dialogs.po70
-rw-r--r--translations/source/de/avmedia/source/framework.po2
-rw-r--r--translations/source/de/basctl/source/basicide.po2
-rw-r--r--translations/source/de/basctl/source/dlged.po7
-rw-r--r--translations/source/de/basic/source/classes.po12
-rw-r--r--translations/source/de/basic/source/sbx.po6
-rw-r--r--translations/source/de/chart2/source/controller/dialogs.po30
-rw-r--r--translations/source/de/connectivity/source/resource.po8
-rw-r--r--translations/source/de/cui/source/customize.po6
-rw-r--r--translations/source/de/cui/source/dialogs.po16
-rw-r--r--translations/source/de/cui/source/options.po26
-rw-r--r--translations/source/de/dbaccess/source/ui/control.po8
-rw-r--r--translations/source/de/dbaccess/source/ui/dlg.po28
-rw-r--r--translations/source/de/desktop/source/deployment/gui.po6
-rw-r--r--translations/source/de/desktop/source/deployment/registry/script.po6
-rw-r--r--translations/source/de/extensions/source/abpilot.po8
-rw-r--r--translations/source/de/extensions/source/propctrlr.po10
-rw-r--r--translations/source/de/fpicker/source/office.po8
-rw-r--r--translations/source/de/framework/source/classes.po6
-rw-r--r--translations/source/de/helpcontent2/source/text/sbasic/guide.po8
-rw-r--r--translations/source/de/helpcontent2/source/text/sbasic/shared.po20
-rw-r--r--translations/source/de/helpcontent2/source/text/sbasic/shared/02.po4
-rw-r--r--translations/source/de/helpcontent2/source/text/scalc/00.po8
-rw-r--r--translations/source/de/helpcontent2/source/text/scalc/01.po52
-rw-r--r--translations/source/de/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/de/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--translations/source/de/helpcontent2/source/text/shared.po12
-rw-r--r--translations/source/de/helpcontent2/source/text/shared/00.po8
-rw-r--r--translations/source/de/helpcontent2/source/text/shared/01.po42
-rw-r--r--translations/source/de/helpcontent2/source/text/shared/02.po98
-rw-r--r--translations/source/de/helpcontent2/source/text/shared/04.po12
-rw-r--r--translations/source/de/helpcontent2/source/text/shared/autokorr.po8
-rw-r--r--translations/source/de/helpcontent2/source/text/shared/autopi.po30
-rw-r--r--translations/source/de/helpcontent2/source/text/shared/explorer/database.po20
-rw-r--r--translations/source/de/helpcontent2/source/text/shared/guide.po34
-rw-r--r--translations/source/de/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--translations/source/de/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po4
-rw-r--r--translations/source/de/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po38
-rw-r--r--translations/source/de/padmin/source.po6
-rw-r--r--translations/source/de/readlicense_oo/docs/readme.po14
-rw-r--r--translations/source/de/sc/source/ui/drawfunc.po10
-rw-r--r--translations/source/de/sc/source/ui/miscdlgs.po8
-rw-r--r--translations/source/de/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/de/sc/source/ui/pagedlg.po8
-rw-r--r--translations/source/de/sc/source/ui/src.po103
-rw-r--r--translations/source/de/scaddins/source/analysis.po10
-rw-r--r--translations/source/de/scp2/source/draw.po2
-rw-r--r--translations/source/de/scp2/source/extensions.po8
-rw-r--r--translations/source/de/sd/source/filter/html.po8
-rw-r--r--translations/source/de/sd/source/ui/app.po36
-rw-r--r--translations/source/de/sfx2/source/appl.po10
-rw-r--r--translations/source/de/sfx2/source/doc.po108
-rw-r--r--translations/source/de/starmath/source.po8
-rw-r--r--translations/source/de/svtools/source/dialogs.po76
-rw-r--r--translations/source/de/svx/source/dialog.po15
-rw-r--r--translations/source/de/svx/source/engine3d.po14
-rw-r--r--translations/source/de/svx/source/form.po12
-rw-r--r--translations/source/de/sw/source/core/undo.po8
-rw-r--r--translations/source/de/sw/source/ui/app.po8
-rw-r--r--translations/source/de/sw/source/ui/fldui.po6
-rw-r--r--translations/source/de/sw/source/ui/misc.po4
-rw-r--r--translations/source/de/sw/source/ui/shells.po22
-rw-r--r--translations/source/de/sw/source/ui/web.po12
-rw-r--r--translations/source/de/swext/mediawiki/help.po20
-rw-r--r--translations/source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po8
-rw-r--r--translations/source/de/sysui/desktop/share.po2
-rw-r--r--translations/source/de/vcl/source/src.po12
-rw-r--r--translations/source/de/wizards/source/importwizard.po2
-rw-r--r--translations/source/de/wizards/source/template.po8
-rw-r--r--translations/source/dgo/cui/source/dialogs.po14
-rw-r--r--translations/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/dgo/sc/source/ui/src.po72
-rw-r--r--translations/source/dgo/sfx2/source/doc.po84
-rw-r--r--translations/source/dgo/svtools/source/dialogs.po70
-rw-r--r--translations/source/dz/cui/source/dialogs.po14
-rw-r--r--translations/source/dz/helpcontent2/source/text/scalc/01.po25
-rw-r--r--translations/source/dz/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/dz/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/dz/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/dz/helpcontent2/source/text/shared/02.po46
-rw-r--r--translations/source/dz/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/dz/sc/source/ui/src.po71
-rw-r--r--translations/source/dz/sfx2/source/doc.po84
-rw-r--r--translations/source/dz/svtools/source/dialogs.po70
-rw-r--r--translations/source/el/cui/source/dialogs.po18
-rw-r--r--translations/source/el/cui/source/options.po4
-rw-r--r--translations/source/el/helpcontent2/source/text/scalc/01.po68
-rw-r--r--translations/source/el/helpcontent2/source/text/scalc/04.po22
-rw-r--r--translations/source/el/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--translations/source/el/helpcontent2/source/text/shared/00.po6
-rw-r--r--translations/source/el/helpcontent2/source/text/shared/01.po14
-rw-r--r--translations/source/el/helpcontent2/source/text/shared/02.po56
-rw-r--r--translations/source/el/helpcontent2/source/text/shared/guide.po14
-rw-r--r--translations/source/el/helpcontent2/source/text/shared/optionen.po75
-rw-r--r--translations/source/el/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/el/sc/source/ui/optdlg.po4
-rw-r--r--translations/source/el/sc/source/ui/src.po75
-rw-r--r--translations/source/el/scp2/source/draw.po8
-rw-r--r--translations/source/el/sfx2/source/doc.po184
-rw-r--r--translations/source/el/svtools/source/dialogs.po70
-rw-r--r--translations/source/en-GB/cui/source/dialogs.po16
-rw-r--r--translations/source/en-GB/cui/source/options.po2
-rw-r--r--translations/source/en-GB/helpcontent2/source/text/scalc/01.po28
-rw-r--r--translations/source/en-GB/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/en-GB/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--translations/source/en-GB/helpcontent2/source/text/shared/00.po2
-rw-r--r--translations/source/en-GB/helpcontent2/source/text/shared/01.po14
-rw-r--r--translations/source/en-GB/helpcontent2/source/text/shared/02.po54
-rw-r--r--translations/source/en-GB/helpcontent2/source/text/shared/guide.po14
-rw-r--r--translations/source/en-GB/helpcontent2/source/text/shared/optionen.po2
-rw-r--r--translations/source/en-GB/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/en-GB/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/en-GB/sc/source/ui/src.po73
-rw-r--r--translations/source/en-GB/scp2/source/draw.po2
-rw-r--r--translations/source/en-GB/sfx2/source/doc.po106
-rw-r--r--translations/source/en-GB/svtools/source/dialogs.po70
-rw-r--r--translations/source/en-ZA/cui/source/dialogs.po14
-rw-r--r--translations/source/en-ZA/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/en-ZA/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/en-ZA/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/en-ZA/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/en-ZA/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/en-ZA/sc/source/ui/src.po73
-rw-r--r--translations/source/en-ZA/sfx2/source/doc.po86
-rw-r--r--translations/source/en-ZA/svtools/source/dialogs.po70
-rw-r--r--translations/source/eo/cui/source/dialogs.po14
-rw-r--r--translations/source/eo/helpcontent2/source/text/scalc/01.po20
-rw-r--r--translations/source/eo/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/eo/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/eo/helpcontent2/source/text/shared/02.po36
-rw-r--r--translations/source/eo/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/eo/sc/source/ui/src.po74
-rw-r--r--translations/source/eo/sfx2/source/doc.po102
-rw-r--r--translations/source/eo/svtools/source/dialogs.po70
-rw-r--r--translations/source/es/basctl/source/basicide.po4
-rw-r--r--translations/source/es/basctl/source/dlged.po2
-rw-r--r--translations/source/es/chart2/source/controller/dialogs.po6
-rw-r--r--translations/source/es/connectivity/source/resource.po2
-rw-r--r--translations/source/es/cui/source/customize.po2
-rw-r--r--translations/source/es/cui/source/dialogs.po30
-rw-r--r--translations/source/es/cui/source/options.po12
-rw-r--r--translations/source/es/cui/source/tabpages.po96
-rw-r--r--translations/source/es/dbaccess/source/ext/macromigration.po2
-rw-r--r--translations/source/es/dbaccess/source/ui/dlg.po36
-rw-r--r--translations/source/es/dbaccess/source/ui/misc.po2
-rw-r--r--translations/source/es/desktop/source/deployment/gui.po97
-rw-r--r--translations/source/es/editeng/source/items.po2
-rw-r--r--translations/source/es/extensions/source/dbpilots.po2
-rw-r--r--translations/source/es/extensions/source/update/check.po18
-rw-r--r--translations/source/es/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--translations/source/es/helpcontent2/source/text/sbasic/shared.po2
-rw-r--r--translations/source/es/helpcontent2/source/text/scalc/00.po5
-rw-r--r--translations/source/es/helpcontent2/source/text/scalc/01.po29
-rw-r--r--translations/source/es/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/es/helpcontent2/source/text/schart/01.po9
-rw-r--r--translations/source/es/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/es/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/es/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/es/helpcontent2/source/text/simpress/04.po142
-rw-r--r--translations/source/es/helpcontent2/source/text/swriter/00.po18
-rw-r--r--translations/source/es/helpcontent2/source/text/swriter/01.po180
-rw-r--r--translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--translations/source/es/padmin/source.po2
-rw-r--r--translations/source/es/readlicense_oo/docs/readme.po4
-rw-r--r--translations/source/es/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--translations/source/es/reportdesign/source/ui/report.po2
-rw-r--r--translations/source/es/sc/source/ui/dbgui.po8
-rw-r--r--translations/source/es/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/es/sc/source/ui/src.po83
-rw-r--r--translations/source/es/scp2/source/draw.po2
-rw-r--r--translations/source/es/sd/source/filter/html.po2
-rw-r--r--translations/source/es/sd/source/ui/animations.po2
-rw-r--r--translations/source/es/sd/source/ui/dlg.po2
-rw-r--r--translations/source/es/sfx2/source/doc.po106
-rw-r--r--translations/source/es/starmath/source.po2
-rw-r--r--translations/source/es/svtools/source/dialogs.po70
-rw-r--r--translations/source/es/svtools/source/misc.po2
-rw-r--r--translations/source/es/svtools/workben/unodialog.po2
-rw-r--r--translations/source/es/svx/source/dialog.po2
-rw-r--r--translations/source/es/svx/source/form.po4
-rw-r--r--translations/source/es/svx/source/svdraw.po2
-rw-r--r--translations/source/es/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--translations/source/es/sw/source/ui/app.po2
-rw-r--r--translations/source/es/sw/source/ui/config.po2
-rw-r--r--translations/source/es/sw/source/ui/dbui.po2
-rw-r--r--translations/source/es/sw/source/ui/dialog.po6
-rw-r--r--translations/source/es/sw/source/ui/fldui.po2
-rw-r--r--translations/source/es/sw/source/ui/table.po2
-rw-r--r--translations/source/es/sw/source/ui/utlui.po2
-rw-r--r--translations/source/es/swext/mediawiki/help.po2
-rw-r--r--translations/source/es/wizards/source/formwizard.po8
-rw-r--r--translations/source/es/xmlsecurity/source/dialogs.po10
-rw-r--r--translations/source/et/cui/source/dialogs.po16
-rw-r--r--translations/source/et/cui/source/options.po2
-rw-r--r--translations/source/et/filter/source/config/fragments/filters.po2
-rw-r--r--translations/source/et/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/et/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/et/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/et/helpcontent2/source/text/shared/00.po2
-rw-r--r--translations/source/et/helpcontent2/source/text/shared/01.po12
-rw-r--r--translations/source/et/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/et/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/et/helpcontent2/source/text/swriter.po6
-rw-r--r--translations/source/et/helpcontent2/source/text/swriter/00.po2
-rw-r--r--translations/source/et/helpcontent2/source/text/swriter/01.po2
-rw-r--r--translations/source/et/helpcontent2/source/text/swriter/04.po6
-rw-r--r--translations/source/et/helpcontent2/source/text/swriter/guide.po2
-rw-r--r--translations/source/et/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--translations/source/et/sc/source/ui/dbgui.po2
-rw-r--r--translations/source/et/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/et/sc/source/ui/src.po75
-rw-r--r--translations/source/et/scp2/source/draw.po2
-rw-r--r--translations/source/et/scp2/source/ooo.po4
-rw-r--r--translations/source/et/sfx2/source/doc.po106
-rw-r--r--translations/source/et/svtools/source/dialogs.po70
-rw-r--r--translations/source/et/svx/source/stbctrls.po2
-rw-r--r--translations/source/eu/cui/source/dialogs.po14
-rw-r--r--translations/source/eu/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/eu/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/eu/helpcontent2/source/text/schart/01.po4
-rw-r--r--translations/source/eu/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/eu/helpcontent2/source/text/shared/02.po51
-rw-r--r--translations/source/eu/helpcontent2/source/text/shared/guide.po8
-rw-r--r--translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/eu/sc/source/ui/src.po73
-rw-r--r--translations/source/eu/sfx2/source/doc.po100
-rw-r--r--translations/source/eu/svtools/source/dialogs.po70
-rw-r--r--translations/source/fa/avmedia/source/framework.po10
-rw-r--r--translations/source/fa/cui/source/dialogs.po20
-rw-r--r--translations/source/fa/cui/source/options.po5
-rw-r--r--translations/source/fa/dbaccess/source/ui/dlg.po4
-rw-r--r--translations/source/fa/fpicker/source/office.po36
-rw-r--r--translations/source/fa/mysqlc/source.po6
-rw-r--r--translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/fa/sc/source/ui/src.po78
-rw-r--r--translations/source/fa/sfx2/source/doc.po82
-rw-r--r--translations/source/fa/svtools/source/dialogs.po70
-rw-r--r--translations/source/fa/sw/source/ui/app.po7
-rw-r--r--translations/source/fa/sw/source/ui/misc.po4
-rw-r--r--translations/source/fi/avmedia/source/viewer.po12
-rw-r--r--translations/source/fi/basctl/source/basicide.po6
-rw-r--r--translations/source/fi/chart2/source/controller/dialogs.po24
-rw-r--r--translations/source/fi/connectivity/registry/ado/org/openoffice/Office/DataAccess.po17
-rw-r--r--translations/source/fi/connectivity/registry/calc/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/fi/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/fi/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po17
-rw-r--r--translations/source/fi/connectivity/registry/flat/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/fi/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/fi/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po15
-rw-r--r--translations/source/fi/connectivity/registry/kab/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/fi/connectivity/registry/macab/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/fi/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po21
-rw-r--r--translations/source/fi/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po17
-rw-r--r--translations/source/fi/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po17
-rw-r--r--translations/source/fi/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/fi/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/fi/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po13
-rw-r--r--translations/source/fi/cui/source/dialogs.po49
-rw-r--r--translations/source/fi/cui/source/options.po43
-rw-r--r--translations/source/fi/cui/source/tabpages.po16
-rw-r--r--translations/source/fi/dictionaries/de.po6
-rw-r--r--translations/source/fi/editeng/source/editeng.po8
-rw-r--r--translations/source/fi/extensions/source/update/check.po26
-rw-r--r--translations/source/fi/extensions/source/update/check/org/openoffice/Office.po13
-rw-r--r--translations/source/fi/filter/source/config/fragments/filters.po40
-rw-r--r--translations/source/fi/filter/source/pdf.po12
-rw-r--r--translations/source/fi/filter/source/xsltdialog.po10
-rw-r--r--translations/source/fi/formula/source/core/resource.po6
-rw-r--r--translations/source/fi/fpicker/source/office.po65
-rw-r--r--translations/source/fi/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--translations/source/fi/helpcontent2/source/text/scalc/00.po8
-rw-r--r--translations/source/fi/helpcontent2/source/text/scalc/01.po190
-rw-r--r--translations/source/fi/helpcontent2/source/text/scalc/04.po30
-rw-r--r--translations/source/fi/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/fi/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/fi/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/fi/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/fi/helpcontent2/source/text/shared/optionen.po55
-rw-r--r--translations/source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po29
-rw-r--r--translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po36
-rw-r--r--translations/source/fi/padmin/source.po13
-rw-r--r--translations/source/fi/readlicense_oo/docs/readme.po10
-rw-r--r--translations/source/fi/sc/source/ui/dbgui.po8
-rw-r--r--translations/source/fi/sc/source/ui/optdlg.po21
-rw-r--r--translations/source/fi/sc/source/ui/src.po212
-rw-r--r--translations/source/fi/scaddins/source/analysis.po53
-rw-r--r--translations/source/fi/scp2/source/draw.po14
-rw-r--r--translations/source/fi/scp2/source/ooo.po22
-rw-r--r--translations/source/fi/scp2/source/stdlibs.po15
-rw-r--r--translations/source/fi/scp2/source/tde.po15
-rw-r--r--translations/source/fi/sd/source/ui/animations.po11
-rw-r--r--translations/source/fi/sd/source/ui/app.po37
-rw-r--r--translations/source/fi/sd/source/ui/dlg.po8
-rw-r--r--translations/source/fi/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po16
-rw-r--r--translations/source/fi/sfx2/source/appl.po20
-rw-r--r--translations/source/fi/sfx2/source/doc.po106
-rw-r--r--translations/source/fi/starmath/source.po20
-rw-r--r--translations/source/fi/svtools/source/dialogs.po70
-rw-r--r--translations/source/fi/svtools/source/java.po8
-rw-r--r--translations/source/fi/svtools/source/misc.po23
-rw-r--r--translations/source/fi/svx/source/src.po15
-rw-r--r--translations/source/fi/svx/source/stbctrls.po24
-rw-r--r--translations/source/fi/sw/source/ui/app.po10
-rw-r--r--translations/source/fi/sw/source/ui/config.po18
-rw-r--r--translations/source/fi/sw/source/ui/dbui.po8
-rw-r--r--translations/source/fi/sw/source/ui/envelp.po18
-rw-r--r--translations/source/fi/sw/source/ui/lingu.po12
-rw-r--r--translations/source/fi/sw/source/ui/ribbar.po10
-rw-r--r--translations/source/fi/sysui/desktop/share.po33
-rw-r--r--translations/source/fi/vcl/source/src.po14
-rw-r--r--translations/source/fr/cui/source/dialogs.po25
-rw-r--r--translations/source/fr/cui/source/options.po1
-rw-r--r--translations/source/fr/dictionaries/de.po3
-rw-r--r--translations/source/fr/helpcontent2/source/text/sbasic/guide.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/sbasic/shared.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/sbasic/shared/01.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/scalc.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/scalc/01.po122
-rw-r--r--translations/source/fr/helpcontent2/source/text/scalc/04.po3
-rw-r--r--translations/source/fr/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--translations/source/fr/helpcontent2/source/text/schart/01.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/sdraw.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/sdraw/04.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/sdraw/guide.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/00.po3
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/01.po18
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/02.po59
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/04.po403
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/05.po4
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/07.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/autokorr.po4
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/autopi.po4
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/guide.po22
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/optionen.po291
-rw-r--r--translations/source/fr/helpcontent2/source/text/simpress.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/simpress/00.po4
-rw-r--r--translations/source/fr/helpcontent2/source/text/simpress/01.po4
-rw-r--r--translations/source/fr/helpcontent2/source/text/simpress/02.po4
-rw-r--r--translations/source/fr/helpcontent2/source/text/simpress/04.po5
-rw-r--r--translations/source/fr/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--translations/source/fr/helpcontent2/source/text/smath.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/smath/00.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/smath/01.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/smath/02.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/smath/04.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/smath/guide.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/swriter.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/swriter/00.po2
-rw-r--r--translations/source/fr/helpcontent2/source/text/swriter/01.po5
-rw-r--r--translations/source/fr/helpcontent2/source/text/swriter/02.po5
-rw-r--r--translations/source/fr/helpcontent2/source/text/swriter/04.po5
-rw-r--r--translations/source/fr/helpcontent2/source/text/swriter/guide.po5
-rw-r--r--translations/source/fr/instsetoo_native/inc_openoffice/windows/msi_languages.po1
-rw-r--r--translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/fr/reportdesign/source/ui/inspection.po2
-rw-r--r--translations/source/fr/sc/source/ui/optdlg.po3
-rw-r--r--translations/source/fr/sc/source/ui/src.po638
-rw-r--r--translations/source/fr/sc/source/ui/styleui.po2
-rw-r--r--translations/source/fr/scaddins/source/analysis.po153
-rw-r--r--translations/source/fr/scaddins/source/datefunc.po2
-rw-r--r--translations/source/fr/sccomp/source/solver.po2
-rw-r--r--translations/source/fr/scp2/source/accessories.po4
-rw-r--r--translations/source/fr/scp2/source/activex.po2
-rw-r--r--translations/source/fr/scp2/source/base.po2
-rw-r--r--translations/source/fr/scp2/source/binfilter.po2
-rw-r--r--translations/source/fr/scp2/source/calc.po2
-rw-r--r--translations/source/fr/scp2/source/draw.po15
-rw-r--r--translations/source/fr/scp2/source/extensions.po2
-rw-r--r--translations/source/fr/scp2/source/gnome.po2
-rw-r--r--translations/source/fr/scp2/source/graphicfilter.po2
-rw-r--r--translations/source/fr/scp2/source/impress.po2
-rw-r--r--translations/source/fr/scp2/source/javafilter.po2
-rw-r--r--translations/source/fr/scp2/source/kde.po2
-rw-r--r--translations/source/fr/scp2/source/math.po2
-rw-r--r--translations/source/fr/scp2/source/onlineupdate.po2
-rw-r--r--translations/source/fr/scp2/source/ooo.po3
-rw-r--r--translations/source/fr/scp2/source/python.po2
-rw-r--r--translations/source/fr/scp2/source/quickstart.po2
-rw-r--r--translations/source/fr/scp2/source/sdkoo.po2
-rw-r--r--translations/source/fr/scp2/source/smoketest.po2
-rw-r--r--translations/source/fr/scp2/source/stdlibs.po3
-rw-r--r--translations/source/fr/scp2/source/tde.po5
-rw-r--r--translations/source/fr/scp2/source/winexplorerext.po2
-rw-r--r--translations/source/fr/scp2/source/writer.po2
-rw-r--r--translations/source/fr/scp2/source/xsltfilter.po2
-rw-r--r--translations/source/fr/scripting/source/pyprov.po2
-rw-r--r--translations/source/fr/sd/source/core.po2
-rw-r--r--translations/source/fr/sd/source/filter/html.po2
-rw-r--r--translations/source/fr/sd/source/ui/accessibility.po2
-rw-r--r--translations/source/fr/sd/source/ui/animations.po3
-rw-r--r--translations/source/fr/sd/source/ui/annotations.po2
-rw-r--r--translations/source/fr/sd/source/ui/app.po5
-rw-r--r--translations/source/fr/sd/source/ui/dlg.po5
-rw-r--r--translations/source/fr/sd/source/ui/slideshow.po2
-rw-r--r--translations/source/fr/sd/source/ui/table.po2
-rw-r--r--translations/source/fr/sd/source/ui/view.po2
-rw-r--r--translations/source/fr/sdext/source/minimizer.po2
-rw-r--r--translations/source/fr/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/fr/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po5
-rw-r--r--translations/source/fr/sdext/source/pdfimport.po2
-rw-r--r--translations/source/fr/sdext/source/presenter.po2
-rw-r--r--translations/source/fr/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po2
-rw-r--r--translations/source/fr/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/fr/setup_native/source/mac.po2
-rw-r--r--translations/source/fr/sfx2/source/appl.po5
-rw-r--r--translations/source/fr/sfx2/source/bastyp.po2
-rw-r--r--translations/source/fr/sfx2/source/dialog.po2
-rw-r--r--translations/source/fr/sfx2/source/doc.po107
-rw-r--r--translations/source/fr/sfx2/source/menu.po2
-rw-r--r--translations/source/fr/sfx2/source/view.po4
-rw-r--r--translations/source/fr/shell/source/win32/shlxthandler/res.po2
-rw-r--r--translations/source/fr/starmath/source.po3
-rw-r--r--translations/source/fr/svl/source/items.po2
-rw-r--r--translations/source/fr/svl/source/misc.po2
-rw-r--r--translations/source/fr/svtools/source/contnr.po2
-rw-r--r--translations/source/fr/svtools/source/control.po2
-rw-r--r--translations/source/fr/svtools/source/dialogs.po72
-rw-r--r--translations/source/fr/svtools/source/filter.po4
-rw-r--r--translations/source/fr/svtools/source/java.po5
-rw-r--r--translations/source/fr/svtools/source/misc.po5
-rw-r--r--translations/source/fr/svtools/source/toolpanel.po2
-rw-r--r--translations/source/fr/svtools/workben/unodialog.po2
-rw-r--r--translations/source/fr/svx/inc.po2
-rw-r--r--translations/source/fr/svx/source/accessibility.po4
-rw-r--r--translations/source/fr/svx/source/dialog.po4
-rw-r--r--translations/source/fr/svx/source/engine3d.po4
-rw-r--r--translations/source/fr/svx/source/fmcomp.po2
-rw-r--r--translations/source/fr/svx/source/form.po2
-rw-r--r--translations/source/fr/svx/source/gallery2.po2
-rw-r--r--translations/source/fr/svx/source/items.po4
-rw-r--r--translations/source/fr/svx/source/src.po5
-rw-r--r--translations/source/fr/svx/source/stbctrls.po5
-rw-r--r--translations/source/fr/svx/source/svdraw.po4
-rw-r--r--translations/source/fr/svx/source/table.po2
-rw-r--r--translations/source/fr/svx/source/tbxctrls.po2
-rw-r--r--translations/source/fr/svx/source/toolbars.po2
-rw-r--r--translations/source/fr/svx/source/unodialogs/textconversiondlgs.po4
-rw-r--r--translations/source/fr/sw/source/core/layout.po2
-rw-r--r--translations/source/fr/sw/source/core/undo.po2
-rw-r--r--translations/source/fr/sw/source/core/unocore.po2
-rw-r--r--translations/source/fr/sw/source/ui/app.po5
-rw-r--r--translations/source/fr/sw/source/ui/chrdlg.po2
-rw-r--r--translations/source/fr/sw/source/ui/config.po5
-rw-r--r--translations/source/fr/sw/source/ui/dbui.po5
-rw-r--r--translations/source/fr/sw/source/ui/dialog.po2
-rw-r--r--translations/source/fr/sw/source/ui/dochdl.po2
-rw-r--r--translations/source/fr/sw/source/ui/docvw.po2
-rw-r--r--translations/source/fr/sw/source/ui/envelp.po5
-rw-r--r--translations/source/fr/sw/source/ui/fldui.po2
-rw-r--r--translations/source/fr/sw/source/ui/fmtui.po2
-rw-r--r--translations/source/fr/sw/source/ui/frmdlg.po2
-rw-r--r--translations/source/fr/sw/source/ui/globdoc.po2
-rw-r--r--translations/source/fr/sw/source/ui/index.po4
-rw-r--r--translations/source/fr/sw/source/ui/lingu.po5
-rw-r--r--translations/source/fr/sw/source/ui/misc.po2
-rw-r--r--translations/source/fr/sw/source/ui/ribbar.po5
-rw-r--r--translations/source/fr/sw/source/ui/shells.po2
-rw-r--r--translations/source/fr/sw/source/ui/smartmenu.po2
-rw-r--r--translations/source/fr/sw/source/ui/table.po4
-rw-r--r--translations/source/fr/sw/source/ui/uiview.po2
-rw-r--r--translations/source/fr/sw/source/ui/utlui.po4
-rw-r--r--translations/source/fr/sw/source/ui/web.po2
-rw-r--r--translations/source/fr/sw/source/ui/wrtsh.po2
-rw-r--r--translations/source/fr/swext/mediawiki/help.po2
-rw-r--r--translations/source/fr/swext/mediawiki/src.po2
-rw-r--r--translations/source/fr/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/fr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--translations/source/fr/sysui/desktop/share.po5
-rw-r--r--translations/source/fr/uui/source.po4
-rw-r--r--translations/source/fr/vcl/source/src.po5
-rw-r--r--translations/source/fr/wizards/source/euro.po2
-rw-r--r--translations/source/fr/wizards/source/formwizard.po2
-rw-r--r--translations/source/fr/wizards/source/importwizard.po2
-rw-r--r--translations/source/fr/wizards/source/schedule.po2
-rw-r--r--translations/source/fr/wizards/source/template.po2
-rw-r--r--translations/source/fr/xmlsecurity/source/component.po2
-rw-r--r--translations/source/fr/xmlsecurity/source/dialogs.po2
-rw-r--r--translations/source/ga/accessibility/source/helper.po4
-rw-r--r--translations/source/ga/avmedia/source/framework.po4
-rw-r--r--translations/source/ga/avmedia/source/viewer.po4
-rw-r--r--translations/source/ga/basctl/source/basicide.po4
-rw-r--r--translations/source/ga/basctl/source/dlged.po4
-rw-r--r--translations/source/ga/basic/source/classes.po4
-rw-r--r--translations/source/ga/basic/source/sbx.po4
-rw-r--r--translations/source/ga/chart2/source/controller/dialogs.po4
-rw-r--r--translations/source/ga/connectivity/registry/ado/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/calc/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/flat/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/kab/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/macab/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/connectivity/source/resource.po4
-rw-r--r--translations/source/ga/cui/source/customize.po4
-rw-r--r--translations/source/ga/cui/source/dialogs.po18
-rw-r--r--translations/source/ga/cui/source/options.po4
-rw-r--r--translations/source/ga/cui/source/tabpages.po4
-rw-r--r--translations/source/ga/dbaccess/source/core/resource.po4
-rw-r--r--translations/source/ga/dbaccess/source/ext/macromigration.po4
-rw-r--r--translations/source/ga/dbaccess/source/sdbtools/resource.po4
-rw-r--r--translations/source/ga/dbaccess/source/ui/app.po4
-rw-r--r--translations/source/ga/dbaccess/source/ui/browser.po4
-rw-r--r--translations/source/ga/dbaccess/source/ui/control.po4
-rw-r--r--translations/source/ga/dbaccess/source/ui/dlg.po4
-rw-r--r--translations/source/ga/dbaccess/source/ui/inc.po4
-rw-r--r--translations/source/ga/dbaccess/source/ui/misc.po4
-rw-r--r--translations/source/ga/dbaccess/source/ui/querydesign.po4
-rw-r--r--translations/source/ga/dbaccess/source/ui/relationdesign.po4
-rw-r--r--translations/source/ga/dbaccess/source/ui/tabledesign.po4
-rw-r--r--translations/source/ga/dbaccess/source/ui/uno.po4
-rw-r--r--translations/source/ga/desktop/source/app.po4
-rw-r--r--translations/source/ga/desktop/source/deployment/gui.po4
-rw-r--r--translations/source/ga/desktop/source/deployment/manager.po4
-rw-r--r--translations/source/ga/desktop/source/deployment/misc.po4
-rw-r--r--translations/source/ga/desktop/source/deployment/registry.po4
-rw-r--r--translations/source/ga/desktop/source/deployment/registry/component.po4
-rw-r--r--translations/source/ga/desktop/source/deployment/registry/configuration.po4
-rw-r--r--translations/source/ga/desktop/source/deployment/registry/help.po4
-rw-r--r--translations/source/ga/desktop/source/deployment/registry/package.po4
-rw-r--r--translations/source/ga/desktop/source/deployment/registry/script.po4
-rw-r--r--translations/source/ga/desktop/source/deployment/registry/sfwk.po4
-rw-r--r--translations/source/ga/desktop/source/deployment/unopkg.po4
-rw-r--r--translations/source/ga/dictionaries/af_ZA.po4
-rw-r--r--translations/source/ga/dictionaries/an_ES.po4
-rw-r--r--translations/source/ga/dictionaries/ar.po4
-rw-r--r--translations/source/ga/dictionaries/be_BY.po4
-rw-r--r--translations/source/ga/dictionaries/bg_BG.po4
-rw-r--r--translations/source/ga/dictionaries/bn_BD.po4
-rw-r--r--translations/source/ga/dictionaries/br_FR.po4
-rw-r--r--translations/source/ga/dictionaries/ca.po4
-rw-r--r--translations/source/ga/dictionaries/cs_CZ.po4
-rw-r--r--translations/source/ga/dictionaries/da_DK.po4
-rw-r--r--translations/source/ga/dictionaries/de.po4
-rw-r--r--translations/source/ga/dictionaries/el_GR.po4
-rw-r--r--translations/source/ga/dictionaries/en.po4
-rw-r--r--translations/source/ga/dictionaries/en/dialog.po4
-rw-r--r--translations/source/ga/dictionaries/es_ES.po4
-rw-r--r--translations/source/ga/dictionaries/et_EE.po4
-rw-r--r--translations/source/ga/dictionaries/fr_FR.po4
-rw-r--r--translations/source/ga/dictionaries/gd_GB.po4
-rw-r--r--translations/source/ga/dictionaries/gl.po4
-rw-r--r--translations/source/ga/dictionaries/gu_IN.po4
-rw-r--r--translations/source/ga/dictionaries/he_IL.po4
-rw-r--r--translations/source/ga/dictionaries/hi_IN.po4
-rw-r--r--translations/source/ga/dictionaries/hr_HR.po4
-rw-r--r--translations/source/ga/dictionaries/hu_HU.po4
-rw-r--r--translations/source/ga/dictionaries/hu_HU/dialog.po4
-rw-r--r--translations/source/ga/dictionaries/it_IT.po4
-rw-r--r--translations/source/ga/dictionaries/ku_TR.po4
-rw-r--r--translations/source/ga/dictionaries/lt_LT.po4
-rw-r--r--translations/source/ga/dictionaries/lv_LV.po4
-rw-r--r--translations/source/ga/dictionaries/ne_NP.po4
-rw-r--r--translations/source/ga/dictionaries/nl_NL.po4
-rw-r--r--translations/source/ga/dictionaries/no.po4
-rw-r--r--translations/source/ga/dictionaries/oc_FR.po4
-rw-r--r--translations/source/ga/dictionaries/pl_PL.po4
-rw-r--r--translations/source/ga/dictionaries/pt_BR.po4
-rw-r--r--translations/source/ga/dictionaries/pt_PT.po4
-rw-r--r--translations/source/ga/dictionaries/ro.po4
-rw-r--r--translations/source/ga/dictionaries/ru_RU.po4
-rw-r--r--translations/source/ga/dictionaries/ru_RU/dialog.po4
-rw-r--r--translations/source/ga/dictionaries/si_LK.po4
-rw-r--r--translations/source/ga/dictionaries/sk_SK.po4
-rw-r--r--translations/source/ga/dictionaries/sl_SI.po4
-rw-r--r--translations/source/ga/dictionaries/sr.po4
-rw-r--r--translations/source/ga/dictionaries/sv_SE.po4
-rw-r--r--translations/source/ga/dictionaries/sw_TZ.po4
-rw-r--r--translations/source/ga/dictionaries/te_IN.po4
-rw-r--r--translations/source/ga/dictionaries/th_TH.po4
-rw-r--r--translations/source/ga/dictionaries/uk_UA.po4
-rw-r--r--translations/source/ga/dictionaries/vi.po4
-rw-r--r--translations/source/ga/dictionaries/zu_ZA.po4
-rw-r--r--translations/source/ga/editeng/source/accessibility.po4
-rw-r--r--translations/source/ga/editeng/source/editeng.po4
-rw-r--r--translations/source/ga/editeng/source/items.po4
-rw-r--r--translations/source/ga/editeng/source/misc.po4
-rw-r--r--translations/source/ga/editeng/source/outliner.po4
-rw-r--r--translations/source/ga/extensions/source/abpilot.po4
-rw-r--r--translations/source/ga/extensions/source/bibliography.po4
-rw-r--r--translations/source/ga/extensions/source/dbpilots.po4
-rw-r--r--translations/source/ga/extensions/source/propctrlr.po4
-rw-r--r--translations/source/ga/extensions/source/scanner.po4
-rw-r--r--translations/source/ga/extensions/source/update/check.po4
-rw-r--r--translations/source/ga/extensions/source/update/check/org/openoffice/Office.po4
-rw-r--r--translations/source/ga/filter/source/config/fragments/filters.po4
-rw-r--r--translations/source/ga/filter/source/config/fragments/internalgraphicfilters.po4
-rw-r--r--translations/source/ga/filter/source/config/fragments/types.po4
-rw-r--r--translations/source/ga/filter/source/flash.po4
-rw-r--r--translations/source/ga/filter/source/graphicfilter/eps.po4
-rw-r--r--translations/source/ga/filter/source/pdf.po4
-rw-r--r--translations/source/ga/filter/source/t602.po4
-rw-r--r--translations/source/ga/filter/source/xsltdialog.po4
-rw-r--r--translations/source/ga/forms/source/resource.po4
-rw-r--r--translations/source/ga/formula/source/core/resource.po4
-rw-r--r--translations/source/ga/formula/source/ui/dlg.po4
-rw-r--r--translations/source/ga/fpicker/source/office.po4
-rw-r--r--translations/source/ga/framework/source/classes.po4
-rw-r--r--translations/source/ga/framework/source/services.po4
-rw-r--r--translations/source/ga/instsetoo_native/inc_openoffice/windows/msi_languages.po4
-rw-r--r--translations/source/ga/mysqlc/source.po4
-rw-r--r--translations/source/ga/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/ga/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po4
-rw-r--r--translations/source/ga/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po4
-rw-r--r--translations/source/ga/nlpsolver/src/locale.po4
-rw-r--r--translations/source/ga/officecfg/registry/data/org/openoffice/Office.po4
-rw-r--r--translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/ga/padmin/source.po4
-rw-r--r--translations/source/ga/readlicense_oo/docs/readme.po4
-rw-r--r--translations/source/ga/reportbuilder/java/com/sun/star/report/function/metadata.po4
-rw-r--r--translations/source/ga/reportbuilder/registry/data/org/openoffice/Office.po4
-rw-r--r--translations/source/ga/reportbuilder/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--translations/source/ga/reportbuilder/registry/data/org/openoffice/TypeDetection.po4
-rw-r--r--translations/source/ga/reportbuilder/util.po4
-rw-r--r--translations/source/ga/reportdesign/source/core/resource.po4
-rw-r--r--translations/source/ga/reportdesign/source/ui/dlg.po4
-rw-r--r--translations/source/ga/reportdesign/source/ui/inspection.po4
-rw-r--r--translations/source/ga/reportdesign/source/ui/report.po4
-rw-r--r--translations/source/ga/sc/source/core/src.po4
-rw-r--r--translations/source/ga/sc/source/ui/cctrl.po4
-rw-r--r--translations/source/ga/sc/source/ui/dbgui.po4
-rw-r--r--translations/source/ga/sc/source/ui/docshell.po4
-rw-r--r--translations/source/ga/sc/source/ui/drawfunc.po4
-rw-r--r--translations/source/ga/sc/source/ui/formdlg.po4
-rw-r--r--translations/source/ga/sc/source/ui/miscdlgs.po4
-rw-r--r--translations/source/ga/sc/source/ui/navipi.po4
-rw-r--r--translations/source/ga/sc/source/ui/optdlg.po4
-rw-r--r--translations/source/ga/sc/source/ui/pagedlg.po4
-rw-r--r--translations/source/ga/sc/source/ui/src.po78
-rw-r--r--translations/source/ga/sc/source/ui/styleui.po4
-rw-r--r--translations/source/ga/scaddins/source/analysis.po4
-rw-r--r--translations/source/ga/scaddins/source/datefunc.po4
-rw-r--r--translations/source/ga/sccomp/source/solver.po4
-rw-r--r--translations/source/ga/scp2/source/accessories.po4
-rw-r--r--translations/source/ga/scp2/source/activex.po4
-rw-r--r--translations/source/ga/scp2/source/base.po4
-rw-r--r--translations/source/ga/scp2/source/binfilter.po4
-rw-r--r--translations/source/ga/scp2/source/calc.po4
-rw-r--r--translations/source/ga/scp2/source/draw.po4
-rw-r--r--translations/source/ga/scp2/source/extensions.po4
-rw-r--r--translations/source/ga/scp2/source/gnome.po4
-rw-r--r--translations/source/ga/scp2/source/graphicfilter.po4
-rw-r--r--translations/source/ga/scp2/source/impress.po4
-rw-r--r--translations/source/ga/scp2/source/javafilter.po4
-rw-r--r--translations/source/ga/scp2/source/kde.po4
-rw-r--r--translations/source/ga/scp2/source/math.po4
-rw-r--r--translations/source/ga/scp2/source/onlineupdate.po4
-rw-r--r--translations/source/ga/scp2/source/ooo.po4
-rw-r--r--translations/source/ga/scp2/source/python.po4
-rw-r--r--translations/source/ga/scp2/source/quickstart.po4
-rw-r--r--translations/source/ga/scp2/source/sdkoo.po4
-rw-r--r--translations/source/ga/scp2/source/smoketest.po4
-rw-r--r--translations/source/ga/scp2/source/stdlibs.po4
-rw-r--r--translations/source/ga/scp2/source/tde.po4
-rw-r--r--translations/source/ga/scp2/source/winexplorerext.po4
-rw-r--r--translations/source/ga/scp2/source/writer.po4
-rw-r--r--translations/source/ga/scp2/source/xsltfilter.po4
-rw-r--r--translations/source/ga/scripting/source/pyprov.po4
-rw-r--r--translations/source/ga/sd/source/core.po4
-rw-r--r--translations/source/ga/sd/source/filter/html.po4
-rw-r--r--translations/source/ga/sd/source/ui/accessibility.po4
-rw-r--r--translations/source/ga/sd/source/ui/animations.po4
-rw-r--r--translations/source/ga/sd/source/ui/annotations.po4
-rw-r--r--translations/source/ga/sd/source/ui/app.po4
-rw-r--r--translations/source/ga/sd/source/ui/dlg.po4
-rw-r--r--translations/source/ga/sd/source/ui/slideshow.po4
-rw-r--r--translations/source/ga/sd/source/ui/table.po4
-rw-r--r--translations/source/ga/sd/source/ui/view.po4
-rw-r--r--translations/source/ga/sdext/source/minimizer.po4
-rw-r--r--translations/source/ga/sdext/source/minimizer/registry/data/org/openoffice/Office.po4
-rw-r--r--translations/source/ga/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po4
-rw-r--r--translations/source/ga/sdext/source/pdfimport.po4
-rw-r--r--translations/source/ga/sdext/source/presenter.po4
-rw-r--r--translations/source/ga/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po4
-rw-r--r--translations/source/ga/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po4
-rw-r--r--translations/source/ga/setup_native/source/mac.po4
-rw-r--r--translations/source/ga/sfx2/source/appl.po4
-rw-r--r--translations/source/ga/sfx2/source/bastyp.po4
-rw-r--r--translations/source/ga/sfx2/source/dialog.po4
-rw-r--r--translations/source/ga/sfx2/source/doc.po106
-rw-r--r--translations/source/ga/sfx2/source/menu.po4
-rw-r--r--translations/source/ga/sfx2/source/view.po4
-rw-r--r--translations/source/ga/shell/source/win32/shlxthandler/res.po4
-rw-r--r--translations/source/ga/starmath/source.po4
-rw-r--r--translations/source/ga/svl/source/items.po4
-rw-r--r--translations/source/ga/svl/source/misc.po4
-rw-r--r--translations/source/ga/svtools/source/contnr.po4
-rw-r--r--translations/source/ga/svtools/source/control.po4
-rw-r--r--translations/source/ga/svtools/source/dialogs.po74
-rw-r--r--translations/source/ga/svtools/source/filter.po4
-rw-r--r--translations/source/ga/svtools/source/java.po4
-rw-r--r--translations/source/ga/svtools/source/misc.po4
-rw-r--r--translations/source/ga/svtools/source/toolpanel.po4
-rw-r--r--translations/source/ga/svtools/workben/unodialog.po4
-rw-r--r--translations/source/ga/svx/inc.po4
-rw-r--r--translations/source/ga/svx/source/accessibility.po4
-rw-r--r--translations/source/ga/svx/source/dialog.po4
-rw-r--r--translations/source/ga/svx/source/engine3d.po4
-rw-r--r--translations/source/ga/svx/source/fmcomp.po4
-rw-r--r--translations/source/ga/svx/source/form.po4
-rw-r--r--translations/source/ga/svx/source/gallery2.po4
-rw-r--r--translations/source/ga/svx/source/items.po4
-rw-r--r--translations/source/ga/svx/source/src.po4
-rw-r--r--translations/source/ga/svx/source/stbctrls.po4
-rw-r--r--translations/source/ga/svx/source/svdraw.po4
-rw-r--r--translations/source/ga/svx/source/table.po4
-rw-r--r--translations/source/ga/svx/source/tbxctrls.po4
-rw-r--r--translations/source/ga/svx/source/toolbars.po4
-rw-r--r--translations/source/ga/svx/source/unodialogs/textconversiondlgs.po4
-rw-r--r--translations/source/ga/sw/source/core/layout.po4
-rw-r--r--translations/source/ga/sw/source/core/undo.po4
-rw-r--r--translations/source/ga/sw/source/core/unocore.po4
-rw-r--r--translations/source/ga/sw/source/ui/app.po4
-rw-r--r--translations/source/ga/sw/source/ui/chrdlg.po4
-rw-r--r--translations/source/ga/sw/source/ui/config.po4
-rw-r--r--translations/source/ga/sw/source/ui/dbui.po4
-rw-r--r--translations/source/ga/sw/source/ui/dialog.po4
-rw-r--r--translations/source/ga/sw/source/ui/dochdl.po4
-rw-r--r--translations/source/ga/sw/source/ui/docvw.po4
-rw-r--r--translations/source/ga/sw/source/ui/envelp.po4
-rw-r--r--translations/source/ga/sw/source/ui/fldui.po4
-rw-r--r--translations/source/ga/sw/source/ui/fmtui.po4
-rw-r--r--translations/source/ga/sw/source/ui/frmdlg.po4
-rw-r--r--translations/source/ga/sw/source/ui/globdoc.po4
-rw-r--r--translations/source/ga/sw/source/ui/index.po4
-rw-r--r--translations/source/ga/sw/source/ui/lingu.po4
-rw-r--r--translations/source/ga/sw/source/ui/misc.po4
-rw-r--r--translations/source/ga/sw/source/ui/ribbar.po4
-rw-r--r--translations/source/ga/sw/source/ui/shells.po4
-rw-r--r--translations/source/ga/sw/source/ui/smartmenu.po4
-rw-r--r--translations/source/ga/sw/source/ui/table.po4
-rw-r--r--translations/source/ga/sw/source/ui/uiview.po4
-rw-r--r--translations/source/ga/sw/source/ui/utlui.po4
-rw-r--r--translations/source/ga/sw/source/ui/web.po4
-rw-r--r--translations/source/ga/sw/source/ui/wrtsh.po4
-rw-r--r--translations/source/ga/swext/mediawiki/help.po4
-rw-r--r--translations/source/ga/swext/mediawiki/src.po4
-rw-r--r--translations/source/ga/swext/mediawiki/src/registry/data/org/openoffice/Office.po4
-rw-r--r--translations/source/ga/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po4
-rw-r--r--translations/source/ga/sysui/desktop/share.po4
-rw-r--r--translations/source/ga/uui/source.po4
-rw-r--r--translations/source/ga/vcl/source/src.po4
-rw-r--r--translations/source/ga/wizards/source/euro.po4
-rw-r--r--translations/source/ga/wizards/source/formwizard.po4
-rw-r--r--translations/source/ga/wizards/source/importwizard.po4
-rw-r--r--translations/source/ga/wizards/source/schedule.po4
-rw-r--r--translations/source/ga/wizards/source/template.po4
-rw-r--r--translations/source/ga/xmlsecurity/source/component.po4
-rw-r--r--translations/source/ga/xmlsecurity/source/dialogs.po4
-rw-r--r--translations/source/gd/cui/source/dialogs.po16
-rw-r--r--translations/source/gd/cui/source/options.po2
-rw-r--r--translations/source/gd/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/gd/readlicense_oo/docs/readme.po4
-rw-r--r--translations/source/gd/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/gd/sc/source/ui/src.po73
-rw-r--r--translations/source/gd/scp2/source/draw.po2
-rw-r--r--translations/source/gd/sfx2/source/doc.po106
-rw-r--r--translations/source/gd/starmath/source.po6
-rw-r--r--translations/source/gd/svtools/source/dialogs.po70
-rw-r--r--translations/source/gd/svx/source/items.po10
-rw-r--r--translations/source/gl/cui/source/dialogs.po16
-rw-r--r--translations/source/gl/cui/source/options.po2
-rw-r--r--translations/source/gl/helpcontent2/source/text/sbasic/guide.po4
-rw-r--r--translations/source/gl/helpcontent2/source/text/scalc/01.po18
-rw-r--r--translations/source/gl/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/gl/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/gl/helpcontent2/source/text/shared/02.po42
-rw-r--r--translations/source/gl/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/gl/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/gl/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/gl/sc/source/ui/src.po73
-rw-r--r--translations/source/gl/scp2/source/draw.po2
-rw-r--r--translations/source/gl/sfx2/source/doc.po106
-rw-r--r--translations/source/gl/svtools/source/dialogs.po70
-rw-r--r--translations/source/gu/cui/source/dialogs.po14
-rw-r--r--translations/source/gu/helpcontent2/source/text/scalc/01.po21
-rw-r--r--translations/source/gu/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/gu/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/gu/helpcontent2/source/text/shared/02.po46
-rw-r--r--translations/source/gu/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/gu/sc/source/ui/src.po73
-rw-r--r--translations/source/gu/sfx2/source/doc.po100
-rw-r--r--translations/source/gu/svtools/source/dialogs.po70
-rw-r--r--translations/source/he/cui/source/dialogs.po16
-rw-r--r--translations/source/he/cui/source/options.po2
-rw-r--r--translations/source/he/cui/source/tabpages.po6
-rw-r--r--translations/source/he/dbaccess/source/core/resource.po8
-rw-r--r--translations/source/he/helpcontent2/source/text/scalc/01.po23
-rw-r--r--translations/source/he/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/he/helpcontent2/source/text/shared/01.po8
-rw-r--r--translations/source/he/helpcontent2/source/text/shared/02.po46
-rw-r--r--translations/source/he/helpcontent2/source/text/shared/guide.po8
-rw-r--r--translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--translations/source/he/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/he/sc/source/ui/src.po73
-rw-r--r--translations/source/he/scaddins/source/analysis.po156
-rw-r--r--translations/source/he/scp2/source/draw.po2
-rw-r--r--translations/source/he/scp2/source/ooo.po2
-rw-r--r--translations/source/he/scp2/source/stdlibs.po2
-rw-r--r--translations/source/he/scp2/source/tde.po2
-rw-r--r--translations/source/he/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/he/sfx2/source/appl.po2
-rw-r--r--translations/source/he/sfx2/source/doc.po108
-rw-r--r--translations/source/he/starmath/source.po4
-rw-r--r--translations/source/he/svtools/source/dialogs.po70
-rw-r--r--translations/source/he/svtools/source/java.po2
-rw-r--r--translations/source/he/svtools/source/misc.po2
-rw-r--r--translations/source/he/svx/source/src.po2
-rw-r--r--translations/source/he/svx/source/stbctrls.po2
-rw-r--r--translations/source/he/sw/source/ui/table.po4
-rw-r--r--translations/source/he/wizards/source/formwizard.po4
-rw-r--r--translations/source/hi/cui/source/dialogs.po14
-rw-r--r--translations/source/hi/helpcontent2/source/text/scalc/01.po18
-rw-r--r--translations/source/hi/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/hi/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/hi/helpcontent2/source/text/shared/02.po38
-rw-r--r--translations/source/hi/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/hi/sc/source/ui/src.po73
-rw-r--r--translations/source/hi/sfx2/source/doc.po86
-rw-r--r--translations/source/hi/svtools/source/dialogs.po70
-rw-r--r--translations/source/hr/cui/source/dialogs.po14
-rw-r--r--translations/source/hr/helpcontent2/source/text/scalc/01.po18
-rw-r--r--translations/source/hr/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/hr/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/hr/helpcontent2/source/text/shared/02.po36
-rw-r--r--translations/source/hr/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/hr/sc/source/ui/src.po73
-rw-r--r--translations/source/hr/sfx2/source/doc.po86
-rw-r--r--translations/source/hr/svtools/source/dialogs.po70
-rw-r--r--translations/source/hu/accessibility/source/helper.po2
-rw-r--r--translations/source/hu/avmedia/source/framework.po2
-rw-r--r--translations/source/hu/avmedia/source/viewer.po2
-rw-r--r--translations/source/hu/basctl/source/basicide.po2
-rw-r--r--translations/source/hu/basctl/source/dlged.po2
-rw-r--r--translations/source/hu/basic/source/classes.po2
-rw-r--r--translations/source/hu/basic/source/sbx.po2
-rw-r--r--translations/source/hu/chart2/source/controller/dialogs.po2
-rw-r--r--translations/source/hu/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/connectivity/source/resource.po2
-rw-r--r--translations/source/hu/cui/source/customize.po2
-rw-r--r--translations/source/hu/cui/source/dialogs.po16
-rw-r--r--translations/source/hu/cui/source/options.po2
-rw-r--r--translations/source/hu/cui/source/tabpages.po2
-rw-r--r--translations/source/hu/dbaccess/source/core/resource.po2
-rw-r--r--translations/source/hu/dbaccess/source/ext/macromigration.po2
-rw-r--r--translations/source/hu/dbaccess/source/sdbtools/resource.po2
-rw-r--r--translations/source/hu/dbaccess/source/ui/app.po2
-rw-r--r--translations/source/hu/dbaccess/source/ui/browser.po2
-rw-r--r--translations/source/hu/dbaccess/source/ui/control.po2
-rw-r--r--translations/source/hu/dbaccess/source/ui/dlg.po2
-rw-r--r--translations/source/hu/dbaccess/source/ui/inc.po2
-rw-r--r--translations/source/hu/dbaccess/source/ui/misc.po2
-rw-r--r--translations/source/hu/dbaccess/source/ui/querydesign.po2
-rw-r--r--translations/source/hu/dbaccess/source/ui/relationdesign.po2
-rw-r--r--translations/source/hu/dbaccess/source/ui/tabledesign.po2
-rw-r--r--translations/source/hu/dbaccess/source/ui/uno.po2
-rw-r--r--translations/source/hu/desktop/source/app.po2
-rw-r--r--translations/source/hu/desktop/source/deployment/gui.po2
-rw-r--r--translations/source/hu/desktop/source/deployment/manager.po2
-rw-r--r--translations/source/hu/desktop/source/deployment/misc.po2
-rw-r--r--translations/source/hu/desktop/source/deployment/registry.po2
-rw-r--r--translations/source/hu/desktop/source/deployment/registry/component.po2
-rw-r--r--translations/source/hu/desktop/source/deployment/registry/configuration.po2
-rw-r--r--translations/source/hu/desktop/source/deployment/registry/help.po2
-rw-r--r--translations/source/hu/desktop/source/deployment/registry/package.po2
-rw-r--r--translations/source/hu/desktop/source/deployment/registry/script.po2
-rw-r--r--translations/source/hu/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--translations/source/hu/desktop/source/deployment/unopkg.po2
-rw-r--r--translations/source/hu/dictionaries/af_ZA.po2
-rw-r--r--translations/source/hu/dictionaries/an_ES.po2
-rw-r--r--translations/source/hu/dictionaries/ar.po2
-rw-r--r--translations/source/hu/dictionaries/be_BY.po2
-rw-r--r--translations/source/hu/dictionaries/bg_BG.po2
-rw-r--r--translations/source/hu/dictionaries/bn_BD.po2
-rw-r--r--translations/source/hu/dictionaries/br_FR.po2
-rw-r--r--translations/source/hu/dictionaries/ca.po2
-rw-r--r--translations/source/hu/dictionaries/cs_CZ.po2
-rw-r--r--translations/source/hu/dictionaries/da_DK.po2
-rw-r--r--translations/source/hu/dictionaries/de.po4
-rw-r--r--translations/source/hu/dictionaries/el_GR.po2
-rw-r--r--translations/source/hu/dictionaries/en.po2
-rw-r--r--translations/source/hu/dictionaries/en/dialog.po2
-rw-r--r--translations/source/hu/dictionaries/es_ES.po2
-rw-r--r--translations/source/hu/dictionaries/et_EE.po2
-rw-r--r--translations/source/hu/dictionaries/fr_FR.po2
-rw-r--r--translations/source/hu/dictionaries/gd_GB.po2
-rw-r--r--translations/source/hu/dictionaries/gl.po2
-rw-r--r--translations/source/hu/dictionaries/gu_IN.po2
-rw-r--r--translations/source/hu/dictionaries/he_IL.po2
-rw-r--r--translations/source/hu/dictionaries/hi_IN.po2
-rw-r--r--translations/source/hu/dictionaries/hr_HR.po2
-rw-r--r--translations/source/hu/dictionaries/hu_HU.po2
-rw-r--r--translations/source/hu/dictionaries/hu_HU/dialog.po2
-rw-r--r--translations/source/hu/dictionaries/it_IT.po2
-rw-r--r--translations/source/hu/dictionaries/ku_TR.po2
-rw-r--r--translations/source/hu/dictionaries/lt_LT.po2
-rw-r--r--translations/source/hu/dictionaries/lv_LV.po2
-rw-r--r--translations/source/hu/dictionaries/ne_NP.po2
-rw-r--r--translations/source/hu/dictionaries/nl_NL.po2
-rw-r--r--translations/source/hu/dictionaries/no.po2
-rw-r--r--translations/source/hu/dictionaries/oc_FR.po2
-rw-r--r--translations/source/hu/dictionaries/pl_PL.po2
-rw-r--r--translations/source/hu/dictionaries/pt_BR.po2
-rw-r--r--translations/source/hu/dictionaries/pt_PT.po2
-rw-r--r--translations/source/hu/dictionaries/ro.po2
-rw-r--r--translations/source/hu/dictionaries/ru_RU.po2
-rw-r--r--translations/source/hu/dictionaries/ru_RU/dialog.po2
-rw-r--r--translations/source/hu/dictionaries/si_LK.po2
-rw-r--r--translations/source/hu/dictionaries/sk_SK.po2
-rw-r--r--translations/source/hu/dictionaries/sl_SI.po2
-rw-r--r--translations/source/hu/dictionaries/sr.po2
-rw-r--r--translations/source/hu/dictionaries/sv_SE.po2
-rw-r--r--translations/source/hu/dictionaries/sw_TZ.po2
-rw-r--r--translations/source/hu/dictionaries/te_IN.po2
-rw-r--r--translations/source/hu/dictionaries/th_TH.po2
-rw-r--r--translations/source/hu/dictionaries/uk_UA.po2
-rw-r--r--translations/source/hu/dictionaries/vi.po2
-rw-r--r--translations/source/hu/dictionaries/zu_ZA.po2
-rw-r--r--translations/source/hu/editeng/source/accessibility.po2
-rw-r--r--translations/source/hu/editeng/source/editeng.po2
-rw-r--r--translations/source/hu/editeng/source/items.po2
-rw-r--r--translations/source/hu/editeng/source/misc.po2
-rw-r--r--translations/source/hu/editeng/source/outliner.po2
-rw-r--r--translations/source/hu/extensions/source/abpilot.po2
-rw-r--r--translations/source/hu/extensions/source/bibliography.po2
-rw-r--r--translations/source/hu/extensions/source/dbpilots.po2
-rw-r--r--translations/source/hu/extensions/source/propctrlr.po2
-rw-r--r--translations/source/hu/extensions/source/scanner.po2
-rw-r--r--translations/source/hu/extensions/source/update/check.po4
-rw-r--r--translations/source/hu/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--translations/source/hu/filter/source/config/fragments/filters.po2
-rw-r--r--translations/source/hu/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--translations/source/hu/filter/source/config/fragments/types.po2
-rw-r--r--translations/source/hu/filter/source/flash.po2
-rw-r--r--translations/source/hu/filter/source/graphicfilter/eps.po2
-rw-r--r--translations/source/hu/filter/source/pdf.po2
-rw-r--r--translations/source/hu/filter/source/t602.po2
-rw-r--r--translations/source/hu/filter/source/xsltdialog.po2
-rw-r--r--translations/source/hu/forms/source/resource.po2
-rw-r--r--translations/source/hu/formula/source/core/resource.po2
-rw-r--r--translations/source/hu/formula/source/ui/dlg.po2
-rw-r--r--translations/source/hu/fpicker/source/office.po2
-rw-r--r--translations/source/hu/framework/source/classes.po2
-rw-r--r--translations/source/hu/framework/source/services.po2
-rw-r--r--translations/source/hu/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/hu/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/hu/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/hu/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/hu/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/hu/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/hu/mysqlc/source.po2
-rw-r--r--translations/source/hu/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/hu/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--translations/source/hu/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--translations/source/hu/nlpsolver/src/locale.po2
-rw-r--r--translations/source/hu/officecfg/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--translations/source/hu/padmin/source.po2
-rw-r--r--translations/source/hu/readlicense_oo/docs/readme.po2
-rw-r--r--translations/source/hu/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--translations/source/hu/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/hu/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--translations/source/hu/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--translations/source/hu/reportbuilder/util.po2
-rw-r--r--translations/source/hu/reportdesign/source/core/resource.po2
-rw-r--r--translations/source/hu/reportdesign/source/ui/dlg.po2
-rw-r--r--translations/source/hu/reportdesign/source/ui/inspection.po2
-rw-r--r--translations/source/hu/reportdesign/source/ui/report.po2
-rw-r--r--translations/source/hu/sc/source/core/src.po2
-rw-r--r--translations/source/hu/sc/source/ui/cctrl.po2
-rw-r--r--translations/source/hu/sc/source/ui/dbgui.po2
-rw-r--r--translations/source/hu/sc/source/ui/docshell.po2
-rw-r--r--translations/source/hu/sc/source/ui/drawfunc.po2
-rw-r--r--translations/source/hu/sc/source/ui/formdlg.po2
-rw-r--r--translations/source/hu/sc/source/ui/miscdlgs.po2
-rw-r--r--translations/source/hu/sc/source/ui/navipi.po2
-rw-r--r--translations/source/hu/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/hu/sc/source/ui/pagedlg.po2
-rw-r--r--translations/source/hu/sc/source/ui/src.po73
-rw-r--r--translations/source/hu/sc/source/ui/styleui.po2
-rw-r--r--translations/source/hu/scaddins/source/analysis.po2
-rw-r--r--translations/source/hu/scaddins/source/datefunc.po2
-rw-r--r--translations/source/hu/sccomp/source/solver.po2
-rw-r--r--translations/source/hu/scp2/source/accessories.po2
-rw-r--r--translations/source/hu/scp2/source/activex.po2
-rw-r--r--translations/source/hu/scp2/source/base.po2
-rw-r--r--translations/source/hu/scp2/source/binfilter.po2
-rw-r--r--translations/source/hu/scp2/source/calc.po2
-rw-r--r--translations/source/hu/scp2/source/draw.po2
-rw-r--r--translations/source/hu/scp2/source/extensions.po2
-rw-r--r--translations/source/hu/scp2/source/gnome.po2
-rw-r--r--translations/source/hu/scp2/source/graphicfilter.po2
-rw-r--r--translations/source/hu/scp2/source/impress.po2
-rw-r--r--translations/source/hu/scp2/source/javafilter.po2
-rw-r--r--translations/source/hu/scp2/source/kde.po2
-rw-r--r--translations/source/hu/scp2/source/math.po2
-rw-r--r--translations/source/hu/scp2/source/onlineupdate.po2
-rw-r--r--translations/source/hu/scp2/source/ooo.po2
-rw-r--r--translations/source/hu/scp2/source/python.po2
-rw-r--r--translations/source/hu/scp2/source/quickstart.po2
-rw-r--r--translations/source/hu/scp2/source/sdkoo.po2
-rw-r--r--translations/source/hu/scp2/source/smoketest.po2
-rw-r--r--translations/source/hu/scp2/source/stdlibs.po2
-rw-r--r--translations/source/hu/scp2/source/tde.po2
-rw-r--r--translations/source/hu/scp2/source/winexplorerext.po2
-rw-r--r--translations/source/hu/scp2/source/writer.po2
-rw-r--r--translations/source/hu/scp2/source/xsltfilter.po2
-rw-r--r--translations/source/hu/scripting/source/pyprov.po2
-rw-r--r--translations/source/hu/sd/source/core.po2
-rw-r--r--translations/source/hu/sd/source/filter/html.po2
-rw-r--r--translations/source/hu/sd/source/ui/accessibility.po2
-rw-r--r--translations/source/hu/sd/source/ui/animations.po2
-rw-r--r--translations/source/hu/sd/source/ui/annotations.po2
-rw-r--r--translations/source/hu/sd/source/ui/app.po2
-rw-r--r--translations/source/hu/sd/source/ui/dlg.po2
-rw-r--r--translations/source/hu/sd/source/ui/slideshow.po2
-rw-r--r--translations/source/hu/sd/source/ui/table.po2
-rw-r--r--translations/source/hu/sd/source/ui/view.po2
-rw-r--r--translations/source/hu/sdext/source/minimizer.po2
-rw-r--r--translations/source/hu/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/hu/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/hu/sdext/source/pdfimport.po2
-rw-r--r--translations/source/hu/sdext/source/presenter.po2
-rw-r--r--translations/source/hu/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po2
-rw-r--r--translations/source/hu/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/hu/setup_native/source/mac.po2
-rw-r--r--translations/source/hu/sfx2/source/appl.po2
-rw-r--r--translations/source/hu/sfx2/source/bastyp.po2
-rw-r--r--translations/source/hu/sfx2/source/dialog.po2
-rw-r--r--translations/source/hu/sfx2/source/doc.po102
-rw-r--r--translations/source/hu/sfx2/source/menu.po2
-rw-r--r--translations/source/hu/sfx2/source/view.po2
-rw-r--r--translations/source/hu/shell/source/win32/shlxthandler/res.po2
-rw-r--r--translations/source/hu/starmath/source.po2
-rw-r--r--translations/source/hu/svl/source/items.po2
-rw-r--r--translations/source/hu/svl/source/misc.po2
-rw-r--r--translations/source/hu/svtools/source/contnr.po2
-rw-r--r--translations/source/hu/svtools/source/control.po2
-rw-r--r--translations/source/hu/svtools/source/dialogs.po70
-rw-r--r--translations/source/hu/svtools/source/filter.po2
-rw-r--r--translations/source/hu/svtools/source/java.po10
-rw-r--r--translations/source/hu/svtools/source/misc.po21
-rw-r--r--translations/source/hu/svtools/source/toolpanel.po2
-rw-r--r--translations/source/hu/svtools/workben/unodialog.po2
-rw-r--r--translations/source/hu/svx/inc.po2
-rw-r--r--translations/source/hu/svx/source/accessibility.po2
-rw-r--r--translations/source/hu/svx/source/dialog.po2
-rw-r--r--translations/source/hu/svx/source/engine3d.po2
-rw-r--r--translations/source/hu/svx/source/fmcomp.po2
-rw-r--r--translations/source/hu/svx/source/form.po2
-rw-r--r--translations/source/hu/svx/source/gallery2.po2
-rw-r--r--translations/source/hu/svx/source/items.po2
-rw-r--r--translations/source/hu/svx/source/src.po9
-rw-r--r--translations/source/hu/svx/source/stbctrls.po2
-rw-r--r--translations/source/hu/svx/source/svdraw.po2
-rw-r--r--translations/source/hu/svx/source/table.po2
-rw-r--r--translations/source/hu/svx/source/tbxctrls.po2
-rw-r--r--translations/source/hu/svx/source/toolbars.po2
-rw-r--r--translations/source/hu/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--translations/source/hu/sw/source/core/layout.po2
-rw-r--r--translations/source/hu/sw/source/core/undo.po2
-rw-r--r--translations/source/hu/sw/source/core/unocore.po2
-rw-r--r--translations/source/hu/sw/source/ui/app.po4
-rw-r--r--translations/source/hu/sw/source/ui/chrdlg.po2
-rw-r--r--translations/source/hu/sw/source/ui/config.po14
-rw-r--r--translations/source/hu/sw/source/ui/dbui.po6
-rw-r--r--translations/source/hu/sw/source/ui/dialog.po2
-rw-r--r--translations/source/hu/sw/source/ui/dochdl.po2
-rw-r--r--translations/source/hu/sw/source/ui/docvw.po2
-rw-r--r--translations/source/hu/sw/source/ui/envelp.po12
-rw-r--r--translations/source/hu/sw/source/ui/fldui.po2
-rw-r--r--translations/source/hu/sw/source/ui/fmtui.po2
-rw-r--r--translations/source/hu/sw/source/ui/frmdlg.po2
-rw-r--r--translations/source/hu/sw/source/ui/globdoc.po2
-rw-r--r--translations/source/hu/sw/source/ui/index.po2
-rw-r--r--translations/source/hu/sw/source/ui/lingu.po6
-rw-r--r--translations/source/hu/sw/source/ui/misc.po2
-rw-r--r--translations/source/hu/sw/source/ui/ribbar.po12
-rw-r--r--translations/source/hu/sw/source/ui/shells.po2
-rw-r--r--translations/source/hu/sw/source/ui/smartmenu.po2
-rw-r--r--translations/source/hu/sw/source/ui/table.po2
-rw-r--r--translations/source/hu/sw/source/ui/uiview.po2
-rw-r--r--translations/source/hu/sw/source/ui/utlui.po2
-rw-r--r--translations/source/hu/sw/source/ui/web.po2
-rw-r--r--translations/source/hu/sw/source/ui/wrtsh.po2
-rw-r--r--translations/source/hu/swext/mediawiki/help.po2
-rw-r--r--translations/source/hu/swext/mediawiki/src.po2
-rw-r--r--translations/source/hu/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/hu/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--translations/source/hu/sysui/desktop/share.po2
-rw-r--r--translations/source/hu/uui/source.po2
-rw-r--r--translations/source/hu/vcl/source/src.po2
-rw-r--r--translations/source/hu/wizards/source/euro.po2
-rw-r--r--translations/source/hu/wizards/source/formwizard.po2
-rw-r--r--translations/source/hu/wizards/source/importwizard.po2
-rw-r--r--translations/source/hu/wizards/source/schedule.po2
-rw-r--r--translations/source/hu/wizards/source/template.po2
-rw-r--r--translations/source/hu/xmlsecurity/source/component.po2
-rw-r--r--translations/source/hu/xmlsecurity/source/dialogs.po2
-rw-r--r--translations/source/id/cui/source/dialogs.po16
-rw-r--r--translations/source/id/cui/source/options.po2
-rw-r--r--translations/source/id/cui/source/tabpages.po2
-rw-r--r--translations/source/id/dbaccess/source/ui/dlg.po2
-rw-r--r--translations/source/id/desktop/source/app.po2
-rw-r--r--translations/source/id/desktop/source/deployment/gui.po2
-rw-r--r--translations/source/id/desktop/source/deployment/manager.po2
-rw-r--r--translations/source/id/filter/source/config/fragments/filters.po2
-rw-r--r--translations/source/id/filter/source/pdf.po2
-rw-r--r--translations/source/id/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--translations/source/id/helpcontent2/source/text/scalc/01.po18
-rw-r--r--translations/source/id/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/id/helpcontent2/source/text/sdraw.po4
-rw-r--r--translations/source/id/helpcontent2/source/text/shared.po4
-rw-r--r--translations/source/id/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/id/helpcontent2/source/text/shared/02.po36
-rw-r--r--translations/source/id/helpcontent2/source/text/shared/05.po16
-rw-r--r--translations/source/id/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/id/helpcontent2/source/text/smath.po6
-rw-r--r--translations/source/id/helpcontent2/source/text/smath/01.po142
-rw-r--r--translations/source/id/helpcontent2/source/text/swriter.po8
-rw-r--r--translations/source/id/helpcontent2/source/text/swriter/00.po34
-rw-r--r--translations/source/id/helpcontent2/source/text/swriter/01.po138
-rw-r--r--translations/source/id/helpcontent2/source/text/swriter/02.po4
-rw-r--r--translations/source/id/helpcontent2/source/text/swriter/guide.po62
-rw-r--r--translations/source/id/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/id/officecfg/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--translations/source/id/padmin/source.po2
-rw-r--r--translations/source/id/readlicense_oo/docs/readme.po2
-rw-r--r--translations/source/id/sc/source/ui/dbgui.po2
-rw-r--r--translations/source/id/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/id/sc/source/ui/src.po73
-rw-r--r--translations/source/id/scaddins/source/analysis.po2
-rw-r--r--translations/source/id/scp2/source/draw.po2
-rw-r--r--translations/source/id/scp2/source/ooo.po4
-rw-r--r--translations/source/id/sd/source/ui/app.po2
-rw-r--r--translations/source/id/sd/source/ui/view.po2
-rw-r--r--translations/source/id/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/id/sfx2/source/doc.po104
-rw-r--r--translations/source/id/starmath/source.po2
-rw-r--r--translations/source/id/svtools/source/dialogs.po72
-rw-r--r--translations/source/id/svx/source/dialog.po2
-rw-r--r--translations/source/id/svx/source/form.po2
-rw-r--r--translations/source/id/svx/source/items.po2
-rw-r--r--translations/source/id/svx/source/svdraw.po2
-rw-r--r--translations/source/id/sw/source/ui/config.po2
-rw-r--r--translations/source/id/sw/source/ui/docvw.po2
-rw-r--r--translations/source/id/sw/source/ui/index.po2
-rw-r--r--translations/source/id/sw/source/ui/uiview.po2
-rw-r--r--translations/source/id/sw/source/ui/utlui.po2
-rw-r--r--translations/source/id/swext/mediawiki/help.po2
-rw-r--r--translations/source/id/uui/source.po2
-rw-r--r--translations/source/id/wizards/source/formwizard.po2
-rw-r--r--translations/source/is/cui/source/dialogs.po24
-rw-r--r--translations/source/is/extensions/source/update/check.po5
-rw-r--r--translations/source/is/extensions/source/update/check/org/openoffice/Office.po7
-rw-r--r--translations/source/is/filter/source/config/fragments/filters.po34
-rw-r--r--translations/source/is/filter/source/pdf.po8
-rw-r--r--translations/source/is/filter/source/xsltdialog.po8
-rw-r--r--translations/source/is/helpcontent2/source/text/scalc/01.po18
-rw-r--r--translations/source/is/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/is/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/is/helpcontent2/source/text/shared/02.po38
-rw-r--r--translations/source/is/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/is/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/is/readlicense_oo/docs/readme.po6
-rw-r--r--translations/source/is/sc/source/ui/src.po68
-rw-r--r--translations/source/is/sfx2/source/doc.po102
-rw-r--r--translations/source/is/svtools/source/dialogs.po70
-rw-r--r--translations/source/it/cui/source/dialogs.po14
-rw-r--r--translations/source/it/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/it/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/it/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/it/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/it/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/it/helpcontent2/source/text/simpress/04.po114
-rw-r--r--translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/it/sc/source/ui/src.po74
-rw-r--r--translations/source/it/sfx2/source/doc.po102
-rw-r--r--translations/source/it/svtools/source/dialogs.po70
-rw-r--r--translations/source/ja/basctl/source/basicide.po12
-rw-r--r--translations/source/ja/basic/source/classes.po2
-rw-r--r--translations/source/ja/chart2/source/controller/dialogs.po2
-rw-r--r--translations/source/ja/connectivity/source/resource.po10
-rw-r--r--translations/source/ja/cui/source/customize.po2
-rw-r--r--translations/source/ja/cui/source/dialogs.po18
-rw-r--r--translations/source/ja/cui/source/options.po10
-rw-r--r--translations/source/ja/cui/source/tabpages.po8
-rw-r--r--translations/source/ja/dbaccess/source/core/resource.po12
-rw-r--r--translations/source/ja/dbaccess/source/ui/app.po8
-rw-r--r--translations/source/ja/dbaccess/source/ui/browser.po8
-rw-r--r--translations/source/ja/dbaccess/source/ui/control.po2
-rw-r--r--translations/source/ja/dbaccess/source/ui/dlg.po10
-rw-r--r--translations/source/ja/dbaccess/source/ui/querydesign.po2
-rw-r--r--translations/source/ja/dbaccess/source/ui/tabledesign.po8
-rw-r--r--translations/source/ja/dbaccess/source/ui/uno.po6
-rw-r--r--translations/source/ja/desktop/source/app.po2
-rw-r--r--translations/source/ja/desktop/source/deployment/gui.po6
-rw-r--r--translations/source/ja/dictionaries/ru_RU/dialog.po8
-rw-r--r--translations/source/ja/editeng/source/items.po24
-rw-r--r--translations/source/ja/extensions/source/bibliography.po10
-rw-r--r--translations/source/ja/extensions/source/propctrlr.po8
-rw-r--r--translations/source/ja/extensions/source/scanner.po6
-rw-r--r--translations/source/ja/extensions/source/update/check.po4
-rw-r--r--translations/source/ja/filter/source/pdf.po2
-rw-r--r--translations/source/ja/filter/source/xsltdialog.po42
-rw-r--r--translations/source/ja/forms/source/resource.po6
-rw-r--r--translations/source/ja/fpicker/source/office.po10
-rw-r--r--translations/source/ja/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--translations/source/ja/helpcontent2/source/text/sbasic/shared.po130
-rw-r--r--translations/source/ja/helpcontent2/source/text/sbasic/shared/01.po8
-rw-r--r--translations/source/ja/helpcontent2/source/text/sbasic/shared/02.po8
-rw-r--r--translations/source/ja/helpcontent2/source/text/scalc.po14
-rw-r--r--translations/source/ja/helpcontent2/source/text/scalc/00.po24
-rw-r--r--translations/source/ja/helpcontent2/source/text/scalc/01.po370
-rw-r--r--translations/source/ja/helpcontent2/source/text/scalc/02.po6
-rw-r--r--translations/source/ja/helpcontent2/source/text/scalc/04.po18
-rw-r--r--translations/source/ja/helpcontent2/source/text/scalc/05.po8
-rw-r--r--translations/source/ja/helpcontent2/source/text/scalc/guide.po178
-rw-r--r--translations/source/ja/helpcontent2/source/text/schart/01.po22
-rw-r--r--translations/source/ja/helpcontent2/source/text/sdraw.po8
-rw-r--r--translations/source/ja/helpcontent2/source/text/sdraw/04.po8
-rw-r--r--translations/source/ja/helpcontent2/source/text/sdraw/guide.po16
-rw-r--r--translations/source/ja/helpcontent2/source/text/shared.po18
-rw-r--r--translations/source/ja/helpcontent2/source/text/shared/00.po113
-rw-r--r--translations/source/ja/helpcontent2/source/text/shared/01.po380
-rw-r--r--translations/source/ja/helpcontent2/source/text/shared/02.po297
-rw-r--r--translations/source/ja/helpcontent2/source/text/shared/04.po56
-rw-r--r--translations/source/ja/helpcontent2/source/text/shared/05.po12
-rw-r--r--translations/source/ja/helpcontent2/source/text/shared/autokorr.po2
-rw-r--r--translations/source/ja/helpcontent2/source/text/shared/autopi.po16
-rw-r--r--translations/source/ja/helpcontent2/source/text/shared/explorer/database.po136
-rw-r--r--translations/source/ja/helpcontent2/source/text/shared/guide.po479
-rw-r--r--translations/source/ja/helpcontent2/source/text/shared/optionen.po171
-rw-r--r--translations/source/ja/helpcontent2/source/text/simpress.po8
-rw-r--r--translations/source/ja/helpcontent2/source/text/simpress/01.po42
-rw-r--r--translations/source/ja/helpcontent2/source/text/simpress/02.po34
-rw-r--r--translations/source/ja/helpcontent2/source/text/simpress/04.po5
-rw-r--r--translations/source/ja/helpcontent2/source/text/simpress/guide.po24
-rw-r--r--translations/source/ja/helpcontent2/source/text/smath.po8
-rw-r--r--translations/source/ja/helpcontent2/source/text/smath/01.po6
-rw-r--r--translations/source/ja/helpcontent2/source/text/smath/04.po2
-rw-r--r--translations/source/ja/helpcontent2/source/text/smath/guide.po8
-rw-r--r--translations/source/ja/helpcontent2/source/text/swriter.po10
-rw-r--r--translations/source/ja/helpcontent2/source/text/swriter/00.po8
-rw-r--r--translations/source/ja/helpcontent2/source/text/swriter/01.po119
-rw-r--r--translations/source/ja/helpcontent2/source/text/swriter/02.po10
-rw-r--r--translations/source/ja/helpcontent2/source/text/swriter/04.po60
-rw-r--r--translations/source/ja/helpcontent2/source/text/swriter/guide.po155
-rw-r--r--translations/source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.po56
-rw-r--r--translations/source/ja/mysqlc/source.po2
-rw-r--r--translations/source/ja/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--translations/source/ja/officecfg/registry/data/org/openoffice/Office.po14
-rw-r--r--translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po120
-rw-r--r--translations/source/ja/padmin/source.po64
-rw-r--r--translations/source/ja/readlicense_oo/docs/readme.po12
-rw-r--r--translations/source/ja/reportbuilder/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ja/reportbuilder/util.po4
-rw-r--r--translations/source/ja/reportdesign/source/ui/dlg.po6
-rw-r--r--translations/source/ja/reportdesign/source/ui/inspection.po8
-rw-r--r--translations/source/ja/reportdesign/source/ui/report.po4
-rw-r--r--translations/source/ja/sc/source/ui/dbgui.po10
-rw-r--r--translations/source/ja/sc/source/ui/miscdlgs.po6
-rw-r--r--translations/source/ja/sc/source/ui/navipi.po6
-rw-r--r--translations/source/ja/sc/source/ui/optdlg.po8
-rw-r--r--translations/source/ja/sc/source/ui/src.po176
-rw-r--r--translations/source/ja/scaddins/source/analysis.po23
-rw-r--r--translations/source/ja/scp2/source/accessories.po2
-rw-r--r--translations/source/ja/scp2/source/binfilter.po8
-rw-r--r--translations/source/ja/scp2/source/draw.po2
-rw-r--r--translations/source/ja/scp2/source/graphicfilter.po38
-rw-r--r--translations/source/ja/scp2/source/javafilter.po14
-rw-r--r--translations/source/ja/scp2/source/ooo.po2
-rw-r--r--translations/source/ja/scp2/source/stdlibs.po2
-rw-r--r--translations/source/ja/scp2/source/winexplorerext.po10
-rw-r--r--translations/source/ja/scp2/source/writer.po6
-rw-r--r--translations/source/ja/scp2/source/xsltfilter.po8
-rw-r--r--translations/source/ja/scripting/source/pyprov.po4
-rw-r--r--translations/source/ja/sd/source/filter/html.po2
-rw-r--r--translations/source/ja/sd/source/ui/app.po10
-rw-r--r--translations/source/ja/sd/source/ui/dlg.po18
-rw-r--r--translations/source/ja/sd/source/ui/slideshow.po4
-rw-r--r--translations/source/ja/sdext/source/minimizer.po6
-rw-r--r--translations/source/ja/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po10
-rw-r--r--translations/source/ja/setup_native/source/mac.po6
-rw-r--r--translations/source/ja/sfx2/source/appl.po8
-rw-r--r--translations/source/ja/sfx2/source/bastyp.po8
-rw-r--r--translations/source/ja/sfx2/source/dialog.po14
-rw-r--r--translations/source/ja/sfx2/source/doc.po110
-rw-r--r--translations/source/ja/sfx2/source/view.po18
-rw-r--r--translations/source/ja/svl/source/misc.po2
-rw-r--r--translations/source/ja/svtools/source/contnr.po2
-rw-r--r--translations/source/ja/svtools/source/control.po6
-rw-r--r--translations/source/ja/svtools/source/dialogs.po80
-rw-r--r--translations/source/ja/svtools/source/misc.po10
-rw-r--r--translations/source/ja/svx/source/dialog.po13
-rw-r--r--translations/source/ja/svx/source/engine3d.po6
-rw-r--r--translations/source/ja/svx/source/form.po12
-rw-r--r--translations/source/ja/svx/source/gallery2.po14
-rw-r--r--translations/source/ja/svx/source/src.po8
-rw-r--r--translations/source/ja/svx/source/stbctrls.po2
-rw-r--r--translations/source/ja/svx/source/tbxctrls.po6
-rw-r--r--translations/source/ja/svx/source/unodialogs/textconversiondlgs.po12
-rw-r--r--translations/source/ja/sw/source/ui/app.po4
-rw-r--r--translations/source/ja/sw/source/ui/config.po10
-rw-r--r--translations/source/ja/sw/source/ui/dbui.po8
-rw-r--r--translations/source/ja/sw/source/ui/dialog.po6
-rw-r--r--translations/source/ja/sw/source/ui/envelp.po18
-rw-r--r--translations/source/ja/sw/source/ui/fldui.po2
-rw-r--r--translations/source/ja/sw/source/ui/shells.po4
-rw-r--r--translations/source/ja/sw/source/ui/uiview.po4
-rw-r--r--translations/source/ja/sw/source/ui/utlui.po8
-rw-r--r--translations/source/ja/swext/mediawiki/help.po6
-rw-r--r--translations/source/ja/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po6
-rw-r--r--translations/source/ja/sysui/desktop/share.po6
-rw-r--r--translations/source/ja/uui/source.po12
-rw-r--r--translations/source/ja/vcl/source/src.po12
-rw-r--r--translations/source/ja/wizards/source/formwizard.po2
-rw-r--r--translations/source/ja/wizards/source/template.po2
-rw-r--r--translations/source/ka/cui/source/dialogs.po14
-rw-r--r--translations/source/ka/helpcontent2/source/text/scalc/01.po21
-rw-r--r--translations/source/ka/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/ka/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/ka/helpcontent2/source/text/shared/02.po36
-rw-r--r--translations/source/ka/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ka/sc/source/ui/src.po75
-rw-r--r--translations/source/ka/sfx2/source/doc.po84
-rw-r--r--translations/source/ka/svtools/source/dialogs.po70
-rw-r--r--translations/source/kk/cui/source/dialogs.po14
-rw-r--r--translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/kk/sc/source/ui/src.po70
-rw-r--r--translations/source/kk/sfx2/source/doc.po84
-rw-r--r--translations/source/kk/svtools/source/dialogs.po70
-rw-r--r--translations/source/km/cui/source/dialogs.po14
-rw-r--r--translations/source/km/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/km/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/km/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/km/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/km/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/km/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/km/sc/source/ui/src.po73
-rw-r--r--translations/source/km/sfx2/source/doc.po102
-rw-r--r--translations/source/km/svtools/source/dialogs.po70
-rw-r--r--translations/source/kn/cui/source/dialogs.po14
-rw-r--r--translations/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/kn/sc/source/ui/src.po73
-rw-r--r--translations/source/kn/sfx2/source/doc.po86
-rw-r--r--translations/source/kn/svtools/source/dialogs.po70
-rw-r--r--translations/source/ko/cui/source/dialogs.po14
-rw-r--r--translations/source/ko/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/ko/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/ko/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/ko/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/ko/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ko/sc/source/ui/src.po73
-rw-r--r--translations/source/ko/sfx2/source/doc.po86
-rw-r--r--translations/source/ko/svtools/source/dialogs.po70
-rw-r--r--translations/source/ko/swext/mediawiki/help.po4
-rw-r--r--translations/source/kok/cui/source/dialogs.po14
-rw-r--r--translations/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/kok/sc/source/ui/src.po72
-rw-r--r--translations/source/kok/sfx2/source/doc.po84
-rw-r--r--translations/source/kok/svtools/source/dialogs.po70
-rw-r--r--translations/source/ks/cui/source/dialogs.po14
-rw-r--r--translations/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ks/sc/source/ui/src.po72
-rw-r--r--translations/source/ks/sfx2/source/doc.po84
-rw-r--r--translations/source/ks/svtools/source/dialogs.po70
-rw-r--r--translations/source/ku/cui/source/dialogs.po14
-rw-r--r--translations/source/ku/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ku/sc/source/ui/src.po70
-rw-r--r--translations/source/ku/sfx2/source/doc.po86
-rw-r--r--translations/source/ku/svtools/source/dialogs.po70
-rw-r--r--translations/source/lb/cui/source/dialogs.po14
-rw-r--r--translations/source/lb/helpcontent2/source/text/scalc/01.po18
-rw-r--r--translations/source/lb/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/lb/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/lb/helpcontent2/source/text/shared/02.po36
-rw-r--r--translations/source/lb/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/lb/sc/source/ui/src.po71
-rw-r--r--translations/source/lb/sfx2/source/doc.po82
-rw-r--r--translations/source/lb/svtools/source/dialogs.po70
-rw-r--r--translations/source/lo/cui/source/dialogs.po14
-rw-r--r--translations/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/lo/sc/source/ui/src.po73
-rw-r--r--translations/source/lo/sfx2/source/doc.po84
-rw-r--r--translations/source/lo/svtools/source/dialogs.po70
-rw-r--r--translations/source/lt/cui/source/dialogs.po14
-rw-r--r--translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/lt/sc/source/ui/src.po73
-rw-r--r--translations/source/lt/sfx2/source/doc.po86
-rw-r--r--translations/source/lt/svtools/source/dialogs.po70
-rw-r--r--translations/source/lv/basic/source/classes.po2
-rw-r--r--translations/source/lv/cui/source/dialogs.po16
-rw-r--r--translations/source/lv/cui/source/options.po2
-rw-r--r--translations/source/lv/cui/source/tabpages.po2
-rw-r--r--translations/source/lv/dbaccess/source/ui/querydesign.po2
-rw-r--r--translations/source/lv/filter/source/config/fragments/types.po2
-rw-r--r--translations/source/lv/forms/source/resource.po2
-rw-r--r--translations/source/lv/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--translations/source/lv/sc/source/ui/dbgui.po2
-rw-r--r--translations/source/lv/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/lv/sc/source/ui/src.po69
-rw-r--r--translations/source/lv/scp2/source/accessories.po2
-rw-r--r--translations/source/lv/scp2/source/draw.po2
-rw-r--r--translations/source/lv/sfx2/source/doc.po102
-rw-r--r--translations/source/lv/svl/source/misc.po2
-rw-r--r--translations/source/lv/svtools/source/dialogs.po70
-rw-r--r--translations/source/lv/svx/source/dialog.po2
-rw-r--r--translations/source/lv/svx/source/gallery2.po2
-rw-r--r--translations/source/lv/svx/source/items.po2
-rw-r--r--translations/source/lv/svx/source/src.po2
-rw-r--r--translations/source/lv/sw/source/ui/shells.po2
-rw-r--r--translations/source/lv/wizards/source/template.po2
-rw-r--r--translations/source/mai/cui/source/dialogs.po14
-rw-r--r--translations/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/mai/sc/source/ui/src.po72
-rw-r--r--translations/source/mai/sfx2/source/doc.po84
-rw-r--r--translations/source/mai/svtools/source/dialogs.po70
-rw-r--r--translations/source/mk/cui/source/dialogs.po14
-rw-r--r--translations/source/mk/helpcontent2/source/text/scalc/01.po25
-rw-r--r--translations/source/mk/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/mk/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/mk/helpcontent2/source/text/shared/02.po51
-rw-r--r--translations/source/mk/helpcontent2/source/text/shared/guide.po8
-rw-r--r--translations/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/mk/sc/source/ui/src.po73
-rw-r--r--translations/source/mk/sfx2/source/doc.po84
-rw-r--r--translations/source/mk/svtools/source/dialogs.po70
-rw-r--r--translations/source/ml/cui/source/dialogs.po14
-rw-r--r--translations/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ml/sc/source/ui/src.po73
-rw-r--r--translations/source/ml/sfx2/source/doc.po102
-rw-r--r--translations/source/ml/svtools/source/dialogs.po70
-rw-r--r--translations/source/mn/cui/source/dialogs.po14
-rw-r--r--translations/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/mn/sc/source/ui/src.po73
-rw-r--r--translations/source/mn/sfx2/source/doc.po84
-rw-r--r--translations/source/mn/svtools/source/dialogs.po70
-rw-r--r--translations/source/mni/cui/source/dialogs.po14
-rw-r--r--translations/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/mni/sc/source/ui/src.po72
-rw-r--r--translations/source/mni/sfx2/source/doc.po84
-rw-r--r--translations/source/mni/svtools/source/dialogs.po70
-rw-r--r--translations/source/mr/cui/source/dialogs.po14
-rw-r--r--translations/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/mr/sc/source/ui/src.po73
-rw-r--r--translations/source/mr/sfx2/source/doc.po86
-rw-r--r--translations/source/mr/svtools/source/dialogs.po70
-rw-r--r--translations/source/my/cui/source/dialogs.po14
-rw-r--r--translations/source/my/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/my/sc/source/ui/src.po72
-rw-r--r--translations/source/my/sfx2/source/doc.po86
-rw-r--r--translations/source/my/svtools/source/dialogs.po70
-rw-r--r--translations/source/nb/cui/source/dialogs.po16
-rw-r--r--translations/source/nb/cui/source/options.po2
-rw-r--r--translations/source/nb/dictionaries/hu_HU/dialog.po24
-rw-r--r--translations/source/nb/dictionaries/ru_RU/dialog.po16
-rw-r--r--translations/source/nb/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/nb/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/nb/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/nb/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/nb/helpcontent2/source/text/shared/guide.po8
-rw-r--r--translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/nb/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/nb/sc/source/ui/src.po73
-rw-r--r--translations/source/nb/scp2/source/draw.po2
-rw-r--r--translations/source/nb/scp2/source/ooo.po6
-rw-r--r--translations/source/nb/sfx2/source/doc.po108
-rw-r--r--translations/source/nb/svtools/source/dialogs.po70
-rw-r--r--translations/source/nb/svx/source/stbctrls.po6
-rw-r--r--translations/source/ne/cui/source/dialogs.po14
-rw-r--r--translations/source/ne/helpcontent2/source/text/scalc/01.po25
-rw-r--r--translations/source/ne/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/ne/helpcontent2/source/text/shared/01.po8
-rw-r--r--translations/source/ne/helpcontent2/source/text/shared/02.po51
-rw-r--r--translations/source/ne/helpcontent2/source/text/shared/guide.po8
-rw-r--r--translations/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ne/sc/source/ui/src.po72
-rw-r--r--translations/source/ne/sfx2/source/doc.po84
-rw-r--r--translations/source/ne/svtools/source/dialogs.po70
-rw-r--r--translations/source/nl/cui/source/dialogs.po22
-rw-r--r--translations/source/nl/cui/source/options.po15
-rw-r--r--translations/source/nl/dictionaries/de.po4
-rw-r--r--translations/source/nl/editeng/source/editeng.po4
-rw-r--r--translations/source/nl/extensions/source/update/check/org/openoffice/Office.po9
-rw-r--r--translations/source/nl/filter/source/xsltdialog.po8
-rw-r--r--translations/source/nl/formula/source/core/resource.po8
-rw-r--r--translations/source/nl/fpicker/source/office.po30
-rw-r--r--translations/source/nl/helpcontent2/source/text/scalc/01.po247
-rw-r--r--translations/source/nl/helpcontent2/source/text/scalc/05.po10
-rw-r--r--translations/source/nl/helpcontent2/source/text/scalc/guide.po122
-rw-r--r--translations/source/nl/helpcontent2/source/text/sdraw/04.po10
-rw-r--r--translations/source/nl/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--translations/source/nl/helpcontent2/source/text/shared/00.po12
-rw-r--r--translations/source/nl/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/nl/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/nl/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/nl/helpcontent2/source/text/simpress/00.po24
-rw-r--r--translations/source/nl/helpcontent2/source/text/simpress/04.po12
-rw-r--r--translations/source/nl/helpcontent2/source/text/swriter/00.po8
-rw-r--r--translations/source/nl/helpcontent2/source/text/swriter/01.po32
-rw-r--r--translations/source/nl/helpcontent2/source/text/swriter/04.po12
-rw-r--r--translations/source/nl/helpcontent2/source/text/swriter/guide.po50
-rw-r--r--translations/source/nl/instsetoo_native/inc_openoffice/windows/msi_languages.po25
-rw-r--r--translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--translations/source/nl/padmin/source.po7
-rw-r--r--translations/source/nl/sc/source/ui/dbgui.po10
-rw-r--r--translations/source/nl/sc/source/ui/optdlg.po13
-rw-r--r--translations/source/nl/sc/source/ui/src.po170
-rw-r--r--translations/source/nl/scaddins/source/analysis.po6
-rw-r--r--translations/source/nl/sfx2/source/doc.po102
-rw-r--r--translations/source/nl/svtools/source/dialogs.po70
-rw-r--r--translations/source/nl/sysui/desktop/share.po18
-rw-r--r--translations/source/nl/vcl/source/src.po14
-rw-r--r--translations/source/nn/cui/source/dialogs.po14
-rw-r--r--translations/source/nn/helpcontent2/source/text/scalc/01.po18
-rw-r--r--translations/source/nn/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/nn/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/nn/helpcontent2/source/text/shared/02.po51
-rw-r--r--translations/source/nn/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/nn/sc/source/ui/src.po73
-rw-r--r--translations/source/nn/sfx2/source/doc.po84
-rw-r--r--translations/source/nn/svtools/source/dialogs.po70
-rw-r--r--translations/source/nr/cui/source/dialogs.po14
-rw-r--r--translations/source/nr/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/nr/sc/source/ui/src.po74
-rw-r--r--translations/source/nr/sfx2/source/doc.po86
-rw-r--r--translations/source/nr/svtools/source/dialogs.po70
-rw-r--r--translations/source/nso/cui/source/dialogs.po14
-rw-r--r--translations/source/nso/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/nso/sc/source/ui/src.po70
-rw-r--r--translations/source/nso/sfx2/source/doc.po86
-rw-r--r--translations/source/nso/svtools/source/dialogs.po70
-rw-r--r--translations/source/oc/cui/source/dialogs.po14
-rw-r--r--translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/oc/sc/source/ui/src.po71
-rw-r--r--translations/source/oc/sfx2/source/doc.po86
-rw-r--r--translations/source/oc/svtools/source/dialogs.po70
-rw-r--r--translations/source/om/cui/source/dialogs.po14
-rw-r--r--translations/source/om/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/om/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/om/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/om/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/om/helpcontent2/source/text/shared/guide.po8
-rw-r--r--translations/source/om/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/om/sc/source/ui/src.po73
-rw-r--r--translations/source/om/sfx2/source/doc.po84
-rw-r--r--translations/source/om/svtools/source/dialogs.po70
-rw-r--r--translations/source/or/cui/source/dialogs.po14
-rw-r--r--translations/source/or/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/or/sc/source/ui/src.po72
-rw-r--r--translations/source/or/sfx2/source/doc.po86
-rw-r--r--translations/source/or/svtools/source/dialogs.po70
-rw-r--r--translations/source/pa-IN/cui/source/dialogs.po14
-rw-r--r--translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/pa-IN/sc/source/ui/src.po73
-rw-r--r--translations/source/pa-IN/sfx2/source/doc.po102
-rw-r--r--translations/source/pa-IN/svtools/source/dialogs.po70
-rw-r--r--translations/source/pl/basctl/source/dlged.po2
-rw-r--r--translations/source/pl/chart2/source/controller/dialogs.po2
-rw-r--r--translations/source/pl/cui/source/dialogs.po16
-rw-r--r--translations/source/pl/cui/source/options.po2
-rw-r--r--translations/source/pl/formula/source/core/resource.po2
-rw-r--r--translations/source/pl/helpcontent2/source/text/sbasic/guide.po6
-rw-r--r--translations/source/pl/helpcontent2/source/text/sbasic/shared.po9
-rw-r--r--translations/source/pl/helpcontent2/source/text/scalc/01.po84
-rw-r--r--translations/source/pl/helpcontent2/source/text/scalc/02.po5
-rw-r--r--translations/source/pl/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/pl/helpcontent2/source/text/scalc/05.po5
-rw-r--r--translations/source/pl/helpcontent2/source/text/scalc/guide.po53
-rw-r--r--translations/source/pl/helpcontent2/source/text/schart.po5
-rw-r--r--translations/source/pl/helpcontent2/source/text/schart/00.po30
-rw-r--r--translations/source/pl/helpcontent2/source/text/schart/01.po72
-rw-r--r--translations/source/pl/helpcontent2/source/text/schart/02.po11
-rw-r--r--translations/source/pl/helpcontent2/source/text/schart/04.po8
-rw-r--r--translations/source/pl/helpcontent2/source/text/sdraw.po4
-rw-r--r--translations/source/pl/helpcontent2/source/text/shared.po240
-rw-r--r--translations/source/pl/helpcontent2/source/text/shared/00.po65
-rw-r--r--translations/source/pl/helpcontent2/source/text/shared/01.po145
-rw-r--r--translations/source/pl/helpcontent2/source/text/shared/02.po122
-rw-r--r--translations/source/pl/helpcontent2/source/text/shared/04.po66
-rw-r--r--translations/source/pl/helpcontent2/source/text/shared/05.po13
-rw-r--r--translations/source/pl/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--translations/source/pl/helpcontent2/source/text/shared/guide.po36
-rw-r--r--translations/source/pl/helpcontent2/source/text/shared/optionen.po150
-rw-r--r--translations/source/pl/helpcontent2/source/text/simpress.po98
-rw-r--r--translations/source/pl/helpcontent2/source/text/simpress/01.po2
-rw-r--r--translations/source/pl/helpcontent2/source/text/simpress/04.po16
-rw-r--r--translations/source/pl/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--translations/source/pl/helpcontent2/source/text/smath/01.po14
-rw-r--r--translations/source/pl/helpcontent2/source/text/swriter.po6
-rw-r--r--translations/source/pl/helpcontent2/source/text/swriter/00.po4
-rw-r--r--translations/source/pl/helpcontent2/source/text/swriter/01.po30
-rw-r--r--translations/source/pl/helpcontent2/source/text/swriter/02.po26
-rw-r--r--translations/source/pl/helpcontent2/source/text/swriter/04.po2
-rw-r--r--translations/source/pl/helpcontent2/source/text/swriter/guide.po23
-rw-r--r--translations/source/pl/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/pl/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/pl/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/pl/sc/source/ui/src.po91
-rw-r--r--translations/source/pl/scaddins/source/analysis.po14
-rw-r--r--translations/source/pl/scp2/source/draw.po2
-rw-r--r--translations/source/pl/sdext/source/pdfimport.po2
-rw-r--r--translations/source/pl/sfx2/source/appl.po2
-rw-r--r--translations/source/pl/sfx2/source/doc.po106
-rw-r--r--translations/source/pl/sfx2/source/view.po2
-rw-r--r--translations/source/pl/starmath/source.po14
-rw-r--r--translations/source/pl/svtools/source/dialogs.po70
-rw-r--r--translations/source/pl/sw/source/ui/fldui.po2
-rw-r--r--translations/source/pt-BR/cui/source/dialogs.po16
-rw-r--r--translations/source/pt-BR/cui/source/options.po2
-rw-r--r--translations/source/pt-BR/helpcontent2/source/text/scalc/01.po30
-rw-r--r--translations/source/pt-BR/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/pt-BR/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--translations/source/pt-BR/helpcontent2/source/text/shared/00.po2
-rw-r--r--translations/source/pt-BR/helpcontent2/source/text/shared/01.po12
-rw-r--r--translations/source/pt-BR/helpcontent2/source/text/shared/02.po54
-rw-r--r--translations/source/pt-BR/helpcontent2/source/text/shared/guide.po14
-rw-r--r--translations/source/pt-BR/helpcontent2/source/text/shared/optionen.po2
-rw-r--r--translations/source/pt-BR/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/pt-BR/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/pt-BR/sc/source/ui/src.po79
-rw-r--r--translations/source/pt-BR/scp2/source/draw.po2
-rw-r--r--translations/source/pt-BR/scp2/source/ooo.po4
-rw-r--r--translations/source/pt-BR/sfx2/source/doc.po106
-rw-r--r--translations/source/pt-BR/svtools/source/dialogs.po70
-rw-r--r--translations/source/pt-BR/svx/inc.po6
-rw-r--r--translations/source/pt-BR/sw/source/ui/app.po8
-rw-r--r--translations/source/pt-BR/wizards/source/formwizard.po6
-rw-r--r--translations/source/pt/connectivity/source/resource.po6
-rw-r--r--translations/source/pt/cui/source/dialogs.po18
-rw-r--r--translations/source/pt/cui/source/options.po2
-rw-r--r--translations/source/pt/cui/source/tabpages.po4
-rw-r--r--translations/source/pt/dbaccess/source/ui/dlg.po6
-rw-r--r--translations/source/pt/dbaccess/source/ui/querydesign.po6
-rw-r--r--translations/source/pt/extensions/source/abpilot.po6
-rw-r--r--translations/source/pt/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--translations/source/pt/helpcontent2/source/text/scalc/01.po84
-rw-r--r--translations/source/pt/helpcontent2/source/text/scalc/04.po9
-rw-r--r--translations/source/pt/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/00.po6
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/01.po18
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/02.po70
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/explorer/database.po12
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/guide.po14
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/optionen.po77
-rw-r--r--translations/source/pt/helpcontent2/source/text/smath/01.po24
-rw-r--r--translations/source/pt/helpcontent2/source/text/swriter/01.po42
-rw-r--r--translations/source/pt/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--translations/source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--translations/source/pt/reportdesign/source/ui/dlg.po20
-rw-r--r--translations/source/pt/reportdesign/source/ui/inspection.po6
-rw-r--r--translations/source/pt/sc/source/ui/dbgui.po18
-rw-r--r--translations/source/pt/sc/source/ui/optdlg.po6
-rw-r--r--translations/source/pt/sc/source/ui/src.po99
-rw-r--r--translations/source/pt/scp2/source/draw.po2
-rw-r--r--translations/source/pt/sd/source/ui/app.po6
-rw-r--r--translations/source/pt/sfx2/source/appl.po2
-rw-r--r--translations/source/pt/sfx2/source/doc.po106
-rw-r--r--translations/source/pt/starmath/source.po14
-rw-r--r--translations/source/pt/svtools/source/dialogs.po70
-rw-r--r--translations/source/pt/svx/source/dialog.po10
-rw-r--r--translations/source/pt/sw/source/ui/dbui.po8
-rw-r--r--translations/source/pt/sw/source/ui/ribbar.po10
-rw-r--r--translations/source/pt/wizards/source/formwizard.po6
-rw-r--r--translations/source/ro/connectivity/source/resource.po573
-rw-r--r--translations/source/ro/cui/source/dialogs.po16
-rw-r--r--translations/source/ro/cui/source/options.po6
-rw-r--r--translations/source/ro/instsetoo_native/inc_openoffice/windows/msi_languages.po18
-rw-r--r--translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ro/sc/source/ui/optdlg.po4
-rw-r--r--translations/source/ro/sc/source/ui/src.po73
-rw-r--r--translations/source/ro/scp2/source/draw.po10
-rw-r--r--translations/source/ro/sfx2/source/doc.po84
-rw-r--r--translations/source/ro/svtools/source/dialogs.po71
-rw-r--r--translations/source/ro/svtools/source/misc.po10
-rw-r--r--translations/source/ru/cui/source/dialogs.po22
-rw-r--r--translations/source/ru/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/ru/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/ru/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/ru/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/ru/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/ru/sc/source/ui/src.po634
-rw-r--r--translations/source/ru/sc/source/ui/styleui.po2
-rw-r--r--translations/source/ru/scaddins/source/analysis.po2
-rw-r--r--translations/source/ru/scaddins/source/datefunc.po2
-rw-r--r--translations/source/ru/sccomp/source/solver.po2
-rw-r--r--translations/source/ru/scp2/source/accessories.po2
-rw-r--r--translations/source/ru/scp2/source/activex.po2
-rw-r--r--translations/source/ru/scp2/source/base.po2
-rw-r--r--translations/source/ru/scp2/source/binfilter.po2
-rw-r--r--translations/source/ru/scp2/source/calc.po2
-rw-r--r--translations/source/ru/scp2/source/draw.po16
-rw-r--r--translations/source/ru/scp2/source/extensions.po2
-rw-r--r--translations/source/ru/scp2/source/gnome.po2
-rw-r--r--translations/source/ru/scp2/source/graphicfilter.po2
-rw-r--r--translations/source/ru/scp2/source/impress.po2
-rw-r--r--translations/source/ru/scp2/source/javafilter.po2
-rw-r--r--translations/source/ru/scp2/source/kde.po2
-rw-r--r--translations/source/ru/scp2/source/math.po2
-rw-r--r--translations/source/ru/scp2/source/onlineupdate.po2
-rw-r--r--translations/source/ru/scp2/source/ooo.po2
-rw-r--r--translations/source/ru/scp2/source/python.po2
-rw-r--r--translations/source/ru/scp2/source/quickstart.po2
-rw-r--r--translations/source/ru/scp2/source/sdkoo.po2
-rw-r--r--translations/source/ru/scp2/source/smoketest.po2
-rw-r--r--translations/source/ru/scp2/source/stdlibs.po2
-rw-r--r--translations/source/ru/scp2/source/tde.po2
-rw-r--r--translations/source/ru/scp2/source/winexplorerext.po2
-rw-r--r--translations/source/ru/scp2/source/writer.po2
-rw-r--r--translations/source/ru/scp2/source/xsltfilter.po2
-rw-r--r--translations/source/ru/scripting/source/pyprov.po2
-rw-r--r--translations/source/ru/sd/source/core.po2
-rw-r--r--translations/source/ru/sd/source/filter/html.po2
-rw-r--r--translations/source/ru/sd/source/ui/accessibility.po2
-rw-r--r--translations/source/ru/sd/source/ui/animations.po2
-rw-r--r--translations/source/ru/sd/source/ui/annotations.po2
-rw-r--r--translations/source/ru/sd/source/ui/app.po2
-rw-r--r--translations/source/ru/sd/source/ui/dlg.po2
-rw-r--r--translations/source/ru/sd/source/ui/slideshow.po2
-rw-r--r--translations/source/ru/sd/source/ui/table.po2
-rw-r--r--translations/source/ru/sd/source/ui/view.po2
-rw-r--r--translations/source/ru/sdext/source/minimizer.po2
-rw-r--r--translations/source/ru/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/ru/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/ru/sdext/source/pdfimport.po2
-rw-r--r--translations/source/ru/sdext/source/presenter.po2
-rw-r--r--translations/source/ru/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po2
-rw-r--r--translations/source/ru/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/ru/setup_native/source/mac.po2
-rw-r--r--translations/source/ru/sfx2/source/appl.po2
-rw-r--r--translations/source/ru/sfx2/source/bastyp.po2
-rw-r--r--translations/source/ru/sfx2/source/dialog.po2
-rw-r--r--translations/source/ru/sfx2/source/doc.po106
-rw-r--r--translations/source/ru/sfx2/source/menu.po2
-rw-r--r--translations/source/ru/sfx2/source/view.po2
-rw-r--r--translations/source/ru/shell/source/win32/shlxthandler/res.po2
-rw-r--r--translations/source/ru/starmath/source.po2
-rw-r--r--translations/source/ru/svl/source/items.po2
-rw-r--r--translations/source/ru/svl/source/misc.po2
-rw-r--r--translations/source/ru/svtools/source/contnr.po2
-rw-r--r--translations/source/ru/svtools/source/control.po2
-rw-r--r--translations/source/ru/svtools/source/dialogs.po70
-rw-r--r--translations/source/ru/svtools/source/filter.po2
-rw-r--r--translations/source/ru/svtools/source/java.po2
-rw-r--r--translations/source/ru/svtools/source/misc.po2
-rw-r--r--translations/source/ru/svtools/source/toolpanel.po2
-rw-r--r--translations/source/ru/svtools/workben/unodialog.po2
-rw-r--r--translations/source/ru/svx/inc.po2
-rw-r--r--translations/source/ru/svx/source/accessibility.po2
-rw-r--r--translations/source/ru/svx/source/dialog.po2
-rw-r--r--translations/source/ru/svx/source/engine3d.po2
-rw-r--r--translations/source/ru/svx/source/fmcomp.po2
-rw-r--r--translations/source/ru/svx/source/form.po2
-rw-r--r--translations/source/ru/svx/source/gallery2.po2
-rw-r--r--translations/source/ru/svx/source/items.po2
-rw-r--r--translations/source/ru/svx/source/src.po2
-rw-r--r--translations/source/ru/svx/source/stbctrls.po2
-rw-r--r--translations/source/ru/svx/source/svdraw.po2
-rw-r--r--translations/source/ru/svx/source/table.po2
-rw-r--r--translations/source/ru/svx/source/tbxctrls.po2
-rw-r--r--translations/source/ru/svx/source/toolbars.po2
-rw-r--r--translations/source/ru/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--translations/source/ru/sw/source/core/layout.po2
-rw-r--r--translations/source/ru/sw/source/core/undo.po2
-rw-r--r--translations/source/ru/sw/source/core/unocore.po2
-rw-r--r--translations/source/ru/sw/source/ui/app.po2
-rw-r--r--translations/source/ru/sw/source/ui/chrdlg.po2
-rw-r--r--translations/source/ru/sw/source/ui/config.po2
-rw-r--r--translations/source/ru/sw/source/ui/dbui.po2
-rw-r--r--translations/source/ru/sw/source/ui/dialog.po2
-rw-r--r--translations/source/ru/sw/source/ui/dochdl.po2
-rw-r--r--translations/source/ru/sw/source/ui/docvw.po2
-rw-r--r--translations/source/ru/sw/source/ui/envelp.po2
-rw-r--r--translations/source/ru/sw/source/ui/fldui.po2
-rw-r--r--translations/source/ru/sw/source/ui/fmtui.po2
-rw-r--r--translations/source/ru/sw/source/ui/frmdlg.po2
-rw-r--r--translations/source/ru/sw/source/ui/globdoc.po2
-rw-r--r--translations/source/ru/sw/source/ui/index.po2
-rw-r--r--translations/source/ru/sw/source/ui/lingu.po2
-rw-r--r--translations/source/ru/sw/source/ui/misc.po2
-rw-r--r--translations/source/ru/sw/source/ui/ribbar.po2
-rw-r--r--translations/source/ru/sw/source/ui/shells.po2
-rw-r--r--translations/source/ru/sw/source/ui/smartmenu.po2
-rw-r--r--translations/source/ru/sw/source/ui/table.po2
-rw-r--r--translations/source/ru/sw/source/ui/uiview.po2
-rw-r--r--translations/source/ru/sw/source/ui/utlui.po2
-rw-r--r--translations/source/ru/sw/source/ui/web.po2
-rw-r--r--translations/source/ru/sw/source/ui/wrtsh.po2
-rw-r--r--translations/source/ru/swext/mediawiki/help.po2
-rw-r--r--translations/source/ru/swext/mediawiki/src.po2
-rw-r--r--translations/source/ru/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/ru/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--translations/source/ru/sysui/desktop/share.po2
-rw-r--r--translations/source/ru/uui/source.po2
-rw-r--r--translations/source/ru/vcl/source/src.po2
-rw-r--r--translations/source/ru/wizards/source/euro.po2
-rw-r--r--translations/source/ru/wizards/source/formwizard.po2
-rw-r--r--translations/source/ru/wizards/source/importwizard.po2
-rw-r--r--translations/source/ru/wizards/source/schedule.po2
-rw-r--r--translations/source/ru/wizards/source/template.po2
-rw-r--r--translations/source/ru/xmlsecurity/source/component.po2
-rw-r--r--translations/source/ru/xmlsecurity/source/dialogs.po2
-rw-r--r--translations/source/rw/cui/source/dialogs.po14
-rw-r--r--translations/source/rw/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/rw/sc/source/ui/src.po72
-rw-r--r--translations/source/rw/sfx2/source/doc.po84
-rw-r--r--translations/source/rw/svtools/source/dialogs.po70
-rw-r--r--translations/source/sa-IN/cui/source/dialogs.po14
-rw-r--r--translations/source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/sa-IN/sc/source/ui/src.po73
-rw-r--r--translations/source/sa-IN/sfx2/source/doc.po84
-rw-r--r--translations/source/sa-IN/svtools/source/dialogs.po70
-rw-r--r--translations/source/sat/cui/source/dialogs.po14
-rw-r--r--translations/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/sat/sc/source/ui/src.po72
-rw-r--r--translations/source/sat/sfx2/source/doc.po82
-rw-r--r--translations/source/sat/svtools/source/dialogs.po70
-rw-r--r--translations/source/sd/cui/source/dialogs.po14
-rw-r--r--translations/source/sd/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/sd/sc/source/ui/src.po72
-rw-r--r--translations/source/sd/sfx2/source/doc.po84
-rw-r--r--translations/source/sd/svtools/source/dialogs.po70
-rw-r--r--translations/source/sh/avmedia/source/viewer.po2
-rw-r--r--translations/source/sh/basctl/source/basicide.po2
-rw-r--r--translations/source/sh/chart2/source/controller/dialogs.po10
-rw-r--r--translations/source/sh/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/sh/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/sh/cui/source/customize.po12
-rw-r--r--translations/source/sh/cui/source/dialogs.po20
-rw-r--r--translations/source/sh/cui/source/options.po14
-rw-r--r--translations/source/sh/cui/source/tabpages.po2
-rw-r--r--translations/source/sh/dbaccess/source/ext/macromigration.po2
-rw-r--r--translations/source/sh/dbaccess/source/ui/app.po2
-rw-r--r--translations/source/sh/dbaccess/source/ui/dlg.po6
-rw-r--r--translations/source/sh/dbaccess/source/ui/relationdesign.po2
-rw-r--r--translations/source/sh/desktop/source/deployment/gui.po24
-rw-r--r--translations/source/sh/desktop/source/deployment/misc.po2
-rw-r--r--translations/source/sh/dictionaries/de.po8
-rw-r--r--translations/source/sh/dictionaries/en/dialog.po29
-rw-r--r--translations/source/sh/dictionaries/es_ES.po2
-rw-r--r--translations/source/sh/dictionaries/hu_HU/dialog.po12
-rw-r--r--translations/source/sh/dictionaries/ru_RU/dialog.po2
-rw-r--r--translations/source/sh/editeng/source/accessibility.po5
-rw-r--r--translations/source/sh/editeng/source/editeng.po2
-rw-r--r--translations/source/sh/editeng/source/misc.po11
-rw-r--r--translations/source/sh/extensions/source/abpilot.po9
-rw-r--r--translations/source/sh/extensions/source/propctrlr.po10
-rw-r--r--translations/source/sh/extensions/source/update/check.po2
-rw-r--r--translations/source/sh/filter/source/config/fragments/filters.po2
-rw-r--r--translations/source/sh/filter/source/pdf.po6
-rw-r--r--translations/source/sh/formula/source/core/resource.po2
-rw-r--r--translations/source/sh/fpicker/source/office.po2
-rw-r--r--translations/source/sh/instsetoo_native/inc_openoffice/windows/msi_languages.po26
-rw-r--r--translations/source/sh/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--translations/source/sh/padmin/source.po2
-rw-r--r--translations/source/sh/sc/source/ui/dbgui.po2
-rw-r--r--translations/source/sh/sc/source/ui/miscdlgs.po6
-rw-r--r--translations/source/sh/sc/source/ui/navipi.po2
-rw-r--r--translations/source/sh/sc/source/ui/optdlg.po6
-rw-r--r--translations/source/sh/sc/source/ui/src.po632
-rw-r--r--translations/source/sh/scaddins/source/analysis.po154
-rw-r--r--translations/source/sh/scp2/source/draw.po18
-rw-r--r--translations/source/sh/scp2/source/extensions.po2
-rw-r--r--translations/source/sh/scp2/source/ooo.po8
-rw-r--r--translations/source/sh/scripting/source/pyprov.po2
-rw-r--r--translations/source/sh/sd/source/core.po2
-rw-r--r--translations/source/sh/sd/source/filter/html.po12
-rw-r--r--translations/source/sh/sd/source/ui/animations.po2
-rw-r--r--translations/source/sh/sd/source/ui/app.po6
-rw-r--r--translations/source/sh/sd/source/ui/dlg.po2
-rw-r--r--translations/source/sh/sd/source/ui/slideshow.po2
-rw-r--r--translations/source/sh/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/sh/sfx2/source/appl.po6
-rw-r--r--translations/source/sh/sfx2/source/dialog.po12
-rw-r--r--translations/source/sh/sfx2/source/doc.po104
-rw-r--r--translations/source/sh/starmath/source.po2
-rw-r--r--translations/source/sh/svtools/source/dialogs.po70
-rw-r--r--translations/source/sh/svtools/source/java.po2
-rw-r--r--translations/source/sh/svtools/source/misc.po2
-rw-r--r--translations/source/sh/svx/source/dialog.po42
-rw-r--r--translations/source/sh/svx/source/form.po14
-rw-r--r--translations/source/sh/svx/source/src.po2
-rw-r--r--translations/source/sh/sw/source/core/undo.po14
-rw-r--r--translations/source/sh/sw/source/ui/config.po2
-rw-r--r--translations/source/sh/sw/source/ui/dbui.po2
-rw-r--r--translations/source/sh/sw/source/ui/dialog.po2
-rw-r--r--translations/source/sh/sw/source/ui/docvw.po2
-rw-r--r--translations/source/sh/sw/source/ui/envelp.po2
-rw-r--r--translations/source/sh/sw/source/ui/index.po2
-rw-r--r--translations/source/sh/sw/source/ui/lingu.po2
-rw-r--r--translations/source/sh/sw/source/ui/ribbar.po2
-rw-r--r--translations/source/sh/sw/source/ui/table.po2
-rw-r--r--translations/source/sh/sw/source/ui/utlui.po2
-rw-r--r--translations/source/sh/swext/mediawiki/help.po20
-rw-r--r--translations/source/sh/swext/mediawiki/src.po5
-rw-r--r--translations/source/sh/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po7
-rw-r--r--translations/source/sh/sysui/desktop/share.po2
-rw-r--r--translations/source/sh/wizards/source/formwizard.po12
-rw-r--r--translations/source/si/cui/source/dialogs.po14
-rw-r--r--translations/source/si/helpcontent2/source/text/scalc/01.po18
-rw-r--r--translations/source/si/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/si/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/si/helpcontent2/source/text/shared/02.po48
-rw-r--r--translations/source/si/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/si/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/si/sc/source/ui/src.po73
-rw-r--r--translations/source/si/sfx2/source/doc.po86
-rw-r--r--translations/source/si/svtools/source/dialogs.po70
-rw-r--r--translations/source/sk/cui/source/dialogs.po16
-rw-r--r--translations/source/sk/cui/source/options.po2
-rw-r--r--translations/source/sk/cui/source/tabpages.po2
-rw-r--r--translations/source/sk/extensions/source/update/check.po8
-rw-r--r--translations/source/sk/extensions/source/update/check/org/openoffice/Office.po9
-rw-r--r--translations/source/sk/filter/source/config/fragments/filters.po2
-rw-r--r--translations/source/sk/fpicker/source/office.po26
-rw-r--r--translations/source/sk/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/sk/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/sk/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/sk/helpcontent2/source/text/shared/02.po36
-rw-r--r--translations/source/sk/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/sk/instsetoo_native/inc_openoffice/windows/msi_languages.po25
-rw-r--r--translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/sk/sc/source/ui/dbgui.po8
-rw-r--r--translations/source/sk/sc/source/ui/optdlg.po17
-rw-r--r--translations/source/sk/sc/source/ui/src.po212
-rw-r--r--translations/source/sk/scaddins/source/analysis.po45
-rw-r--r--translations/source/sk/scp2/source/draw.po8
-rw-r--r--translations/source/sk/scp2/source/ooo.po22
-rw-r--r--translations/source/sk/scp2/source/stdlibs.po11
-rw-r--r--translations/source/sk/scp2/source/tde.po11
-rw-r--r--translations/source/sk/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po10
-rw-r--r--translations/source/sk/sfx2/source/appl.po14
-rw-r--r--translations/source/sk/sfx2/source/doc.po106
-rw-r--r--translations/source/sk/svtools/source/dialogs.po70
-rw-r--r--translations/source/sk/svtools/source/java.po7
-rw-r--r--translations/source/sk/sysui/desktop/share.po2
-rw-r--r--translations/source/sl/accessibility/source/helper.po2
-rw-r--r--translations/source/sl/avmedia/source/framework.po2
-rw-r--r--translations/source/sl/avmedia/source/viewer.po2
-rw-r--r--translations/source/sl/basctl/source/basicide.po2
-rw-r--r--translations/source/sl/basctl/source/dlged.po2
-rw-r--r--translations/source/sl/basic/source/classes.po2
-rw-r--r--translations/source/sl/basic/source/sbx.po2
-rw-r--r--translations/source/sl/chart2/source/controller/dialogs.po2
-rw-r--r--translations/source/sl/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/connectivity/source/resource.po2
-rw-r--r--translations/source/sl/cui/source/customize.po2
-rw-r--r--translations/source/sl/cui/source/dialogs.po14
-rw-r--r--translations/source/sl/cui/source/options.po2
-rw-r--r--translations/source/sl/cui/source/tabpages.po2
-rw-r--r--translations/source/sl/dbaccess/source/core/resource.po2
-rw-r--r--translations/source/sl/dbaccess/source/ext/macromigration.po2
-rw-r--r--translations/source/sl/dbaccess/source/sdbtools/resource.po2
-rw-r--r--translations/source/sl/dbaccess/source/ui/app.po2
-rw-r--r--translations/source/sl/dbaccess/source/ui/browser.po2
-rw-r--r--translations/source/sl/dbaccess/source/ui/control.po2
-rw-r--r--translations/source/sl/dbaccess/source/ui/dlg.po2
-rw-r--r--translations/source/sl/dbaccess/source/ui/inc.po2
-rw-r--r--translations/source/sl/dbaccess/source/ui/misc.po2
-rw-r--r--translations/source/sl/dbaccess/source/ui/querydesign.po2
-rw-r--r--translations/source/sl/dbaccess/source/ui/relationdesign.po2
-rw-r--r--translations/source/sl/dbaccess/source/ui/tabledesign.po2
-rw-r--r--translations/source/sl/dbaccess/source/ui/uno.po2
-rw-r--r--translations/source/sl/desktop/source/app.po2
-rw-r--r--translations/source/sl/desktop/source/deployment/gui.po2
-rw-r--r--translations/source/sl/desktop/source/deployment/manager.po2
-rw-r--r--translations/source/sl/desktop/source/deployment/misc.po2
-rw-r--r--translations/source/sl/desktop/source/deployment/registry.po2
-rw-r--r--translations/source/sl/desktop/source/deployment/registry/component.po6
-rw-r--r--translations/source/sl/desktop/source/deployment/registry/configuration.po2
-rw-r--r--translations/source/sl/desktop/source/deployment/registry/help.po2
-rw-r--r--translations/source/sl/desktop/source/deployment/registry/package.po2
-rw-r--r--translations/source/sl/desktop/source/deployment/registry/script.po2
-rw-r--r--translations/source/sl/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--translations/source/sl/desktop/source/deployment/unopkg.po14
-rw-r--r--translations/source/sl/dictionaries/af_ZA.po2
-rw-r--r--translations/source/sl/dictionaries/an_ES.po2
-rw-r--r--translations/source/sl/dictionaries/ar.po2
-rw-r--r--translations/source/sl/dictionaries/be_BY.po2
-rw-r--r--translations/source/sl/dictionaries/bg_BG.po2
-rw-r--r--translations/source/sl/dictionaries/bn_BD.po2
-rw-r--r--translations/source/sl/dictionaries/br_FR.po2
-rw-r--r--translations/source/sl/dictionaries/ca.po2
-rw-r--r--translations/source/sl/dictionaries/cs_CZ.po2
-rw-r--r--translations/source/sl/dictionaries/da_DK.po2
-rw-r--r--translations/source/sl/dictionaries/de.po2
-rw-r--r--translations/source/sl/dictionaries/el_GR.po2
-rw-r--r--translations/source/sl/dictionaries/en.po2
-rw-r--r--translations/source/sl/dictionaries/en/dialog.po2
-rw-r--r--translations/source/sl/dictionaries/es_ES.po2
-rw-r--r--translations/source/sl/dictionaries/et_EE.po2
-rw-r--r--translations/source/sl/dictionaries/fr_FR.po2
-rw-r--r--translations/source/sl/dictionaries/gd_GB.po2
-rw-r--r--translations/source/sl/dictionaries/gl.po2
-rw-r--r--translations/source/sl/dictionaries/gu_IN.po2
-rw-r--r--translations/source/sl/dictionaries/he_IL.po2
-rw-r--r--translations/source/sl/dictionaries/hi_IN.po2
-rw-r--r--translations/source/sl/dictionaries/hr_HR.po2
-rw-r--r--translations/source/sl/dictionaries/hu_HU.po2
-rw-r--r--translations/source/sl/dictionaries/hu_HU/dialog.po2
-rw-r--r--translations/source/sl/dictionaries/it_IT.po2
-rw-r--r--translations/source/sl/dictionaries/ku_TR.po2
-rw-r--r--translations/source/sl/dictionaries/lt_LT.po2
-rw-r--r--translations/source/sl/dictionaries/lv_LV.po2
-rw-r--r--translations/source/sl/dictionaries/ne_NP.po2
-rw-r--r--translations/source/sl/dictionaries/nl_NL.po2
-rw-r--r--translations/source/sl/dictionaries/no.po2
-rw-r--r--translations/source/sl/dictionaries/oc_FR.po2
-rw-r--r--translations/source/sl/dictionaries/pl_PL.po2
-rw-r--r--translations/source/sl/dictionaries/pt_BR.po2
-rw-r--r--translations/source/sl/dictionaries/pt_PT.po2
-rw-r--r--translations/source/sl/dictionaries/ro.po2
-rw-r--r--translations/source/sl/dictionaries/ru_RU.po2
-rw-r--r--translations/source/sl/dictionaries/ru_RU/dialog.po2
-rw-r--r--translations/source/sl/dictionaries/si_LK.po2
-rw-r--r--translations/source/sl/dictionaries/sk_SK.po2
-rw-r--r--translations/source/sl/dictionaries/sl_SI.po2
-rw-r--r--translations/source/sl/dictionaries/sr.po2
-rw-r--r--translations/source/sl/dictionaries/sv_SE.po2
-rw-r--r--translations/source/sl/dictionaries/sw_TZ.po2
-rw-r--r--translations/source/sl/dictionaries/te_IN.po2
-rw-r--r--translations/source/sl/dictionaries/th_TH.po2
-rw-r--r--translations/source/sl/dictionaries/uk_UA.po2
-rw-r--r--translations/source/sl/dictionaries/vi.po2
-rw-r--r--translations/source/sl/dictionaries/zu_ZA.po2
-rw-r--r--translations/source/sl/editeng/source/accessibility.po2
-rw-r--r--translations/source/sl/editeng/source/editeng.po2
-rw-r--r--translations/source/sl/editeng/source/items.po2
-rw-r--r--translations/source/sl/editeng/source/misc.po2
-rw-r--r--translations/source/sl/editeng/source/outliner.po2
-rw-r--r--translations/source/sl/extensions/source/abpilot.po2
-rw-r--r--translations/source/sl/extensions/source/bibliography.po2
-rw-r--r--translations/source/sl/extensions/source/dbpilots.po2
-rw-r--r--translations/source/sl/extensions/source/propctrlr.po2
-rw-r--r--translations/source/sl/extensions/source/scanner.po2
-rw-r--r--translations/source/sl/extensions/source/update/check.po2
-rw-r--r--translations/source/sl/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--translations/source/sl/filter/source/config/fragments/filters.po2
-rw-r--r--translations/source/sl/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--translations/source/sl/filter/source/config/fragments/types.po2
-rw-r--r--translations/source/sl/filter/source/flash.po6
-rw-r--r--translations/source/sl/filter/source/graphicfilter/eps.po2
-rw-r--r--translations/source/sl/filter/source/pdf.po2
-rw-r--r--translations/source/sl/filter/source/t602.po2
-rw-r--r--translations/source/sl/filter/source/xsltdialog.po2
-rw-r--r--translations/source/sl/forms/source/resource.po2
-rw-r--r--translations/source/sl/formula/source/core/resource.po2
-rw-r--r--translations/source/sl/formula/source/ui/dlg.po2
-rw-r--r--translations/source/sl/fpicker/source/office.po2
-rw-r--r--translations/source/sl/framework/source/classes.po2
-rw-r--r--translations/source/sl/framework/source/services.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/sbasic/guide.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/sbasic/shared.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/sbasic/shared/01.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/sbasic/shared/02.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/scalc.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/scalc/00.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/scalc/01.po30
-rw-r--r--translations/source/sl/helpcontent2/source/text/scalc/02.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/scalc/05.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/sl/helpcontent2/source/text/schart.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/schart/00.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/schart/01.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/schart/02.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/schart/04.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/sdraw.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/sdraw/00.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/sdraw/01.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/sdraw/04.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/sdraw/guide.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/shared.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/shared/00.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/shared/01.po40
-rw-r--r--translations/source/sl/helpcontent2/source/text/shared/02.po52
-rw-r--r--translations/source/sl/helpcontent2/source/text/shared/04.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/shared/05.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/shared/07.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/shared/autokorr.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/shared/autopi.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--translations/source/sl/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/sl/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--translations/source/sl/helpcontent2/source/text/simpress.po4
-rw-r--r--translations/source/sl/helpcontent2/source/text/simpress/00.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/simpress/01.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/simpress/02.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/simpress/04.po4
-rw-r--r--translations/source/sl/helpcontent2/source/text/simpress/guide.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/smath.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/smath/00.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/smath/01.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/smath/02.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/smath/04.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/smath/guide.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/swriter.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/swriter/00.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/swriter/01.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/swriter/02.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/swriter/04.po2
-rw-r--r--translations/source/sl/helpcontent2/source/text/swriter/guide.po2
-rw-r--r--translations/source/sl/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/sl/mysqlc/source.po2
-rw-r--r--translations/source/sl/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--translations/source/sl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--translations/source/sl/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--translations/source/sl/nlpsolver/src/locale.po2
-rw-r--r--translations/source/sl/officecfg/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/sl/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/sl/padmin/source.po2
-rw-r--r--translations/source/sl/readlicense_oo/docs/readme.po2
-rw-r--r--translations/source/sl/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--translations/source/sl/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/sl/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--translations/source/sl/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--translations/source/sl/reportbuilder/util.po2
-rw-r--r--translations/source/sl/reportdesign/source/core/resource.po2
-rw-r--r--translations/source/sl/reportdesign/source/ui/dlg.po4
-rw-r--r--translations/source/sl/reportdesign/source/ui/inspection.po2
-rw-r--r--translations/source/sl/reportdesign/source/ui/report.po2
-rw-r--r--translations/source/sl/sc/source/core/src.po2
-rw-r--r--translations/source/sl/sc/source/ui/cctrl.po2
-rw-r--r--translations/source/sl/sc/source/ui/dbgui.po2
-rw-r--r--translations/source/sl/sc/source/ui/docshell.po2
-rw-r--r--translations/source/sl/sc/source/ui/drawfunc.po2
-rw-r--r--translations/source/sl/sc/source/ui/formdlg.po2
-rw-r--r--translations/source/sl/sc/source/ui/miscdlgs.po2
-rw-r--r--translations/source/sl/sc/source/ui/navipi.po2
-rw-r--r--translations/source/sl/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/sl/sc/source/ui/pagedlg.po2
-rw-r--r--translations/source/sl/sc/source/ui/src.po89
-rw-r--r--translations/source/sl/sc/source/ui/styleui.po2
-rw-r--r--translations/source/sl/scaddins/source/analysis.po2
-rw-r--r--translations/source/sl/scaddins/source/datefunc.po2
-rw-r--r--translations/source/sl/sccomp/source/solver.po2
-rw-r--r--translations/source/sl/scp2/source/accessories.po2
-rw-r--r--translations/source/sl/scp2/source/activex.po2
-rw-r--r--translations/source/sl/scp2/source/base.po2
-rw-r--r--translations/source/sl/scp2/source/binfilter.po2
-rw-r--r--translations/source/sl/scp2/source/calc.po2
-rw-r--r--translations/source/sl/scp2/source/draw.po2
-rw-r--r--translations/source/sl/scp2/source/extensions.po2
-rw-r--r--translations/source/sl/scp2/source/gnome.po2
-rw-r--r--translations/source/sl/scp2/source/graphicfilter.po2
-rw-r--r--translations/source/sl/scp2/source/impress.po2
-rw-r--r--translations/source/sl/scp2/source/javafilter.po2
-rw-r--r--translations/source/sl/scp2/source/kde.po2
-rw-r--r--translations/source/sl/scp2/source/math.po2
-rw-r--r--translations/source/sl/scp2/source/onlineupdate.po2
-rw-r--r--translations/source/sl/scp2/source/ooo.po2
-rw-r--r--translations/source/sl/scp2/source/python.po2
-rw-r--r--translations/source/sl/scp2/source/quickstart.po2
-rw-r--r--translations/source/sl/scp2/source/sdkoo.po2
-rw-r--r--translations/source/sl/scp2/source/smoketest.po2
-rw-r--r--translations/source/sl/scp2/source/stdlibs.po2
-rw-r--r--translations/source/sl/scp2/source/tde.po2
-rw-r--r--translations/source/sl/scp2/source/winexplorerext.po2
-rw-r--r--translations/source/sl/scp2/source/writer.po2
-rw-r--r--translations/source/sl/scp2/source/xsltfilter.po2
-rw-r--r--translations/source/sl/scripting/source/pyprov.po2
-rw-r--r--translations/source/sl/sd/source/core.po2
-rw-r--r--translations/source/sl/sd/source/filter/html.po2
-rw-r--r--translations/source/sl/sd/source/ui/accessibility.po2
-rw-r--r--translations/source/sl/sd/source/ui/animations.po2
-rw-r--r--translations/source/sl/sd/source/ui/annotations.po2
-rw-r--r--translations/source/sl/sd/source/ui/app.po2
-rw-r--r--translations/source/sl/sd/source/ui/dlg.po2
-rw-r--r--translations/source/sl/sd/source/ui/slideshow.po2
-rw-r--r--translations/source/sl/sd/source/ui/table.po2
-rw-r--r--translations/source/sl/sd/source/ui/view.po2
-rw-r--r--translations/source/sl/sdext/source/minimizer.po2
-rw-r--r--translations/source/sl/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/sl/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/sl/sdext/source/pdfimport.po2
-rw-r--r--translations/source/sl/sdext/source/presenter.po2
-rw-r--r--translations/source/sl/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po2
-rw-r--r--translations/source/sl/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/sl/setup_native/source/mac.po2
-rw-r--r--translations/source/sl/sfx2/source/appl.po2
-rw-r--r--translations/source/sl/sfx2/source/bastyp.po2
-rw-r--r--translations/source/sl/sfx2/source/dialog.po2
-rw-r--r--translations/source/sl/sfx2/source/doc.po102
-rw-r--r--translations/source/sl/sfx2/source/menu.po2
-rw-r--r--translations/source/sl/sfx2/source/view.po2
-rw-r--r--translations/source/sl/shell/source/win32/shlxthandler/res.po2
-rw-r--r--translations/source/sl/starmath/source.po2
-rw-r--r--translations/source/sl/svl/source/items.po2
-rw-r--r--translations/source/sl/svl/source/misc.po2
-rw-r--r--translations/source/sl/svtools/source/contnr.po2
-rw-r--r--translations/source/sl/svtools/source/control.po2
-rw-r--r--translations/source/sl/svtools/source/dialogs.po70
-rw-r--r--translations/source/sl/svtools/source/filter.po2
-rw-r--r--translations/source/sl/svtools/source/java.po2
-rw-r--r--translations/source/sl/svtools/source/misc.po2
-rw-r--r--translations/source/sl/svtools/source/toolpanel.po2
-rw-r--r--translations/source/sl/svtools/workben/unodialog.po2
-rw-r--r--translations/source/sl/svx/inc.po2
-rw-r--r--translations/source/sl/svx/source/accessibility.po2
-rw-r--r--translations/source/sl/svx/source/dialog.po2
-rw-r--r--translations/source/sl/svx/source/engine3d.po2
-rw-r--r--translations/source/sl/svx/source/fmcomp.po2
-rw-r--r--translations/source/sl/svx/source/form.po2
-rw-r--r--translations/source/sl/svx/source/gallery2.po2
-rw-r--r--translations/source/sl/svx/source/items.po2
-rw-r--r--translations/source/sl/svx/source/src.po2
-rw-r--r--translations/source/sl/svx/source/stbctrls.po2
-rw-r--r--translations/source/sl/svx/source/svdraw.po2
-rw-r--r--translations/source/sl/svx/source/table.po2
-rw-r--r--translations/source/sl/svx/source/tbxctrls.po2
-rw-r--r--translations/source/sl/svx/source/toolbars.po2
-rw-r--r--translations/source/sl/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--translations/source/sl/sw/source/core/layout.po2
-rw-r--r--translations/source/sl/sw/source/core/undo.po2
-rw-r--r--translations/source/sl/sw/source/core/unocore.po2
-rw-r--r--translations/source/sl/sw/source/ui/app.po2
-rw-r--r--translations/source/sl/sw/source/ui/chrdlg.po2
-rw-r--r--translations/source/sl/sw/source/ui/config.po2
-rw-r--r--translations/source/sl/sw/source/ui/dbui.po2
-rw-r--r--translations/source/sl/sw/source/ui/dialog.po2
-rw-r--r--translations/source/sl/sw/source/ui/dochdl.po2
-rw-r--r--translations/source/sl/sw/source/ui/docvw.po2
-rw-r--r--translations/source/sl/sw/source/ui/envelp.po2
-rw-r--r--translations/source/sl/sw/source/ui/fldui.po2
-rw-r--r--translations/source/sl/sw/source/ui/fmtui.po2
-rw-r--r--translations/source/sl/sw/source/ui/frmdlg.po2
-rw-r--r--translations/source/sl/sw/source/ui/globdoc.po2
-rw-r--r--translations/source/sl/sw/source/ui/index.po2
-rw-r--r--translations/source/sl/sw/source/ui/lingu.po2
-rw-r--r--translations/source/sl/sw/source/ui/misc.po2
-rw-r--r--translations/source/sl/sw/source/ui/ribbar.po2
-rw-r--r--translations/source/sl/sw/source/ui/shells.po2
-rw-r--r--translations/source/sl/sw/source/ui/smartmenu.po2
-rw-r--r--translations/source/sl/sw/source/ui/table.po2
-rw-r--r--translations/source/sl/sw/source/ui/uiview.po2
-rw-r--r--translations/source/sl/sw/source/ui/utlui.po2
-rw-r--r--translations/source/sl/sw/source/ui/web.po2
-rw-r--r--translations/source/sl/sw/source/ui/wrtsh.po2
-rw-r--r--translations/source/sl/swext/mediawiki/help.po2
-rw-r--r--translations/source/sl/swext/mediawiki/src.po2
-rw-r--r--translations/source/sl/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/sl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--translations/source/sl/sysui/desktop/share.po2
-rw-r--r--translations/source/sl/uui/source.po2
-rw-r--r--translations/source/sl/vcl/source/src.po2
-rw-r--r--translations/source/sl/wizards/source/euro.po2
-rw-r--r--translations/source/sl/wizards/source/formwizard.po2
-rw-r--r--translations/source/sl/wizards/source/importwizard.po2
-rw-r--r--translations/source/sl/wizards/source/schedule.po2
-rw-r--r--translations/source/sl/wizards/source/template.po2
-rw-r--r--translations/source/sl/xmlsecurity/source/component.po2
-rw-r--r--translations/source/sl/xmlsecurity/source/dialogs.po2
-rw-r--r--translations/source/sq/cui/source/dialogs.po14
-rw-r--r--translations/source/sq/helpcontent2/source/text/scalc/01.po21
-rw-r--r--translations/source/sq/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/sq/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/sq/helpcontent2/source/text/shared/02.po40
-rw-r--r--translations/source/sq/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/sq/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/sq/sc/source/ui/src.po73
-rw-r--r--translations/source/sq/sfx2/source/doc.po82
-rw-r--r--translations/source/sq/svtools/source/dialogs.po70
-rw-r--r--translations/source/sr/avmedia/source/viewer.po2
-rw-r--r--translations/source/sr/basctl/source/basicide.po2
-rw-r--r--translations/source/sr/chart2/source/controller/dialogs.po10
-rw-r--r--translations/source/sr/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/sr/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po4
-rw-r--r--translations/source/sr/cui/source/customize.po12
-rw-r--r--translations/source/sr/cui/source/dialogs.po20
-rw-r--r--translations/source/sr/cui/source/options.po14
-rw-r--r--translations/source/sr/cui/source/tabpages.po2
-rw-r--r--translations/source/sr/dbaccess/source/ext/macromigration.po2
-rw-r--r--translations/source/sr/dbaccess/source/ui/app.po2
-rw-r--r--translations/source/sr/dbaccess/source/ui/dlg.po6
-rw-r--r--translations/source/sr/dbaccess/source/ui/relationdesign.po2
-rw-r--r--translations/source/sr/desktop/source/deployment/gui.po24
-rw-r--r--translations/source/sr/desktop/source/deployment/misc.po2
-rw-r--r--translations/source/sr/dictionaries/de.po8
-rw-r--r--translations/source/sr/dictionaries/en/dialog.po29
-rw-r--r--translations/source/sr/dictionaries/es_ES.po2
-rw-r--r--translations/source/sr/dictionaries/hu_HU/dialog.po12
-rw-r--r--translations/source/sr/dictionaries/ru_RU/dialog.po2
-rw-r--r--translations/source/sr/editeng/source/accessibility.po5
-rw-r--r--translations/source/sr/editeng/source/editeng.po2
-rw-r--r--translations/source/sr/editeng/source/misc.po11
-rw-r--r--translations/source/sr/extensions/source/abpilot.po9
-rw-r--r--translations/source/sr/extensions/source/propctrlr.po10
-rw-r--r--translations/source/sr/extensions/source/update/check.po2
-rw-r--r--translations/source/sr/filter/source/config/fragments/filters.po2
-rw-r--r--translations/source/sr/filter/source/pdf.po6
-rw-r--r--translations/source/sr/formula/source/core/resource.po2
-rw-r--r--translations/source/sr/fpicker/source/office.po2
-rw-r--r--translations/source/sr/instsetoo_native/inc_openoffice/windows/msi_languages.po26
-rw-r--r--translations/source/sr/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--translations/source/sr/padmin/source.po2
-rw-r--r--translations/source/sr/sc/source/ui/dbgui.po2
-rw-r--r--translations/source/sr/sc/source/ui/miscdlgs.po6
-rw-r--r--translations/source/sr/sc/source/ui/navipi.po2
-rw-r--r--translations/source/sr/sc/source/ui/optdlg.po6
-rw-r--r--translations/source/sr/sc/source/ui/src.po632
-rw-r--r--translations/source/sr/scaddins/source/analysis.po154
-rw-r--r--translations/source/sr/scp2/source/draw.po18
-rw-r--r--translations/source/sr/scp2/source/extensions.po2
-rw-r--r--translations/source/sr/scp2/source/ooo.po8
-rw-r--r--translations/source/sr/scripting/source/pyprov.po2
-rw-r--r--translations/source/sr/sd/source/core.po2
-rw-r--r--translations/source/sr/sd/source/filter/html.po12
-rw-r--r--translations/source/sr/sd/source/ui/animations.po2
-rw-r--r--translations/source/sr/sd/source/ui/app.po6
-rw-r--r--translations/source/sr/sd/source/ui/dlg.po2
-rw-r--r--translations/source/sr/sd/source/ui/slideshow.po2
-rw-r--r--translations/source/sr/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/sr/sfx2/source/appl.po6
-rw-r--r--translations/source/sr/sfx2/source/dialog.po12
-rw-r--r--translations/source/sr/sfx2/source/doc.po104
-rw-r--r--translations/source/sr/starmath/source.po2
-rw-r--r--translations/source/sr/svtools/source/dialogs.po70
-rw-r--r--translations/source/sr/svtools/source/java.po2
-rw-r--r--translations/source/sr/svtools/source/misc.po2
-rw-r--r--translations/source/sr/svx/source/dialog.po44
-rw-r--r--translations/source/sr/svx/source/form.po14
-rw-r--r--translations/source/sr/svx/source/src.po2
-rw-r--r--translations/source/sr/sw/source/core/undo.po14
-rw-r--r--translations/source/sr/sw/source/ui/config.po2
-rw-r--r--translations/source/sr/sw/source/ui/dbui.po2
-rw-r--r--translations/source/sr/sw/source/ui/dialog.po2
-rw-r--r--translations/source/sr/sw/source/ui/docvw.po2
-rw-r--r--translations/source/sr/sw/source/ui/envelp.po2
-rw-r--r--translations/source/sr/sw/source/ui/index.po2
-rw-r--r--translations/source/sr/sw/source/ui/lingu.po2
-rw-r--r--translations/source/sr/sw/source/ui/ribbar.po2
-rw-r--r--translations/source/sr/sw/source/ui/table.po2
-rw-r--r--translations/source/sr/sw/source/ui/utlui.po2
-rw-r--r--translations/source/sr/swext/mediawiki/help.po20
-rw-r--r--translations/source/sr/swext/mediawiki/src.po5
-rw-r--r--translations/source/sr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po7
-rw-r--r--translations/source/sr/sysui/desktop/share.po2
-rw-r--r--translations/source/sr/wizards/source/formwizard.po12
-rw-r--r--translations/source/ss/cui/source/dialogs.po14
-rw-r--r--translations/source/ss/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ss/sc/source/ui/src.po71
-rw-r--r--translations/source/ss/sfx2/source/doc.po86
-rw-r--r--translations/source/ss/svtools/source/dialogs.po70
-rw-r--r--translations/source/st/cui/source/dialogs.po14
-rw-r--r--translations/source/st/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/st/sc/source/ui/src.po74
-rw-r--r--translations/source/st/sfx2/source/doc.po86
-rw-r--r--translations/source/st/svtools/source/dialogs.po70
-rw-r--r--translations/source/sv/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po6
-rw-r--r--translations/source/sv/cui/source/dialogs.po23
-rw-r--r--translations/source/sv/cui/source/options.po37
-rw-r--r--translations/source/sv/cui/source/tabpages.po10
-rw-r--r--translations/source/sv/dictionaries/en/dialog.po20
-rw-r--r--translations/source/sv/extensions/source/update/check.po8
-rw-r--r--translations/source/sv/filter/source/config/fragments/filters.po9
-rw-r--r--translations/source/sv/filter/source/xsltdialog.po4
-rw-r--r--translations/source/sv/formula/source/core/resource.po3
-rw-r--r--translations/source/sv/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/sv/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/sv/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/sv/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/sv/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/sv/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/sv/sc/source/ui/src.po78
-rw-r--r--translations/source/sv/scaddins/source/analysis.po68
-rw-r--r--translations/source/sv/sfx2/source/doc.po102
-rw-r--r--translations/source/sv/svtools/source/dialogs.po70
-rw-r--r--translations/source/sv/svtools/source/misc.po16
-rw-r--r--translations/source/sv/svx/source/src.po7
-rw-r--r--translations/source/sv/svx/source/unodialogs/textconversiondlgs.po61
-rw-r--r--translations/source/sv/sysui/desktop/share.po8
-rw-r--r--translations/source/sw-TZ/cui/source/dialogs.po14
-rw-r--r--translations/source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/sw-TZ/sc/source/ui/src.po73
-rw-r--r--translations/source/sw-TZ/sfx2/source/doc.po84
-rw-r--r--translations/source/sw-TZ/svtools/source/dialogs.po70
-rw-r--r--translations/source/ta/cui/source/dialogs.po14
-rw-r--r--translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ta/sc/source/ui/src.po73
-rw-r--r--translations/source/ta/sfx2/source/doc.po96
-rw-r--r--translations/source/ta/svtools/source/dialogs.po70
-rw-r--r--translations/source/te/cui/source/dialogs.po14
-rw-r--r--translations/source/te/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/te/sc/source/ui/src.po73
-rw-r--r--translations/source/te/sfx2/source/doc.po86
-rw-r--r--translations/source/te/svtools/source/dialogs.po70
-rw-r--r--translations/source/tg/avmedia/source/viewer.po6
-rw-r--r--translations/source/tg/cui/source/dialogs.po14
-rw-r--r--translations/source/tg/helpcontent2/source/text/scalc/01.po21
-rw-r--r--translations/source/tg/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/tg/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/tg/helpcontent2/source/text/shared/02.po36
-rw-r--r--translations/source/tg/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/tg/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/tg/sc/source/ui/src.po73
-rw-r--r--translations/source/tg/sfx2/source/doc.po84
-rw-r--r--translations/source/tg/svtools/source/dialogs.po70
-rw-r--r--translations/source/th/cui/source/dialogs.po14
-rw-r--r--translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/th/sc/source/ui/src.po73
-rw-r--r--translations/source/th/sfx2/source/doc.po84
-rw-r--r--translations/source/th/svtools/source/dialogs.po70
-rw-r--r--translations/source/tn/cui/source/dialogs.po14
-rw-r--r--translations/source/tn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/tn/sc/source/ui/src.po71
-rw-r--r--translations/source/tn/sfx2/source/doc.po84
-rw-r--r--translations/source/tn/svtools/source/dialogs.po70
-rw-r--r--translations/source/tr/chart2/source/controller/dialogs.po2
-rw-r--r--translations/source/tr/connectivity/source/resource.po8
-rw-r--r--translations/source/tr/cui/source/dialogs.po20
-rw-r--r--translations/source/tr/cui/source/options.po10
-rw-r--r--translations/source/tr/cui/source/tabpages.po2
-rw-r--r--translations/source/tr/dbaccess/source/core/resource.po2
-rw-r--r--translations/source/tr/dbaccess/source/ui/dlg.po2
-rw-r--r--translations/source/tr/dbaccess/source/ui/querydesign.po2
-rw-r--r--translations/source/tr/dbaccess/source/ui/relationdesign.po2
-rw-r--r--translations/source/tr/dbaccess/source/ui/tabledesign.po2
-rw-r--r--translations/source/tr/desktop/source/app.po2
-rw-r--r--translations/source/tr/desktop/source/deployment/gui.po2
-rw-r--r--translations/source/tr/editeng/source/items.po8
-rw-r--r--translations/source/tr/extensions/source/abpilot.po2
-rw-r--r--translations/source/tr/extensions/source/update/check.po2
-rw-r--r--translations/source/tr/framework/source/classes.po2
-rw-r--r--translations/source/tr/helpcontent2/source/text/sbasic/shared.po176
-rw-r--r--translations/source/tr/helpcontent2/source/text/scalc/01.po53
-rw-r--r--translations/source/tr/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--translations/source/tr/helpcontent2/source/text/sdraw/guide.po30
-rw-r--r--translations/source/tr/helpcontent2/source/text/shared/00.po55
-rw-r--r--translations/source/tr/helpcontent2/source/text/shared/01.po19
-rw-r--r--translations/source/tr/helpcontent2/source/text/shared/02.po139
-rw-r--r--translations/source/tr/helpcontent2/source/text/shared/04.po6
-rw-r--r--translations/source/tr/helpcontent2/source/text/shared/autopi.po14
-rw-r--r--translations/source/tr/helpcontent2/source/text/shared/explorer/database.po120
-rw-r--r--translations/source/tr/helpcontent2/source/text/shared/guide.po413
-rw-r--r--translations/source/tr/helpcontent2/source/text/shared/optionen.po974
-rw-r--r--translations/source/tr/helpcontent2/source/text/simpress/01.po6
-rw-r--r--translations/source/tr/helpcontent2/source/text/smath/01.po8
-rw-r--r--translations/source/tr/helpcontent2/source/text/swriter/01.po517
-rw-r--r--translations/source/tr/helpcontent2/source/text/swriter/guide.po28
-rw-r--r--translations/source/tr/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--translations/source/tr/padmin/source.po2
-rw-r--r--translations/source/tr/readlicense_oo/docs/readme.po6
-rw-r--r--translations/source/tr/reportbuilder/util.po2
-rw-r--r--translations/source/tr/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/tr/sc/source/ui/src.po73
-rw-r--r--translations/source/tr/sc/source/ui/styleui.po8
-rw-r--r--translations/source/tr/scaddins/source/analysis.po2
-rw-r--r--translations/source/tr/scp2/source/accessories.po2
-rw-r--r--translations/source/tr/scp2/source/calc.po2
-rw-r--r--translations/source/tr/scp2/source/draw.po2
-rw-r--r--translations/source/tr/scp2/source/ooo.po2
-rw-r--r--translations/source/tr/sd/source/core.po2
-rw-r--r--translations/source/tr/sd/source/ui/app.po2
-rw-r--r--translations/source/tr/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/tr/sfx2/source/dialog.po2
-rw-r--r--translations/source/tr/sfx2/source/doc.po108
-rw-r--r--translations/source/tr/sfx2/source/view.po2
-rw-r--r--translations/source/tr/svtools/source/dialogs.po70
-rw-r--r--translations/source/tr/svtools/source/java.po2
-rw-r--r--translations/source/tr/svx/source/dialog.po2
-rw-r--r--translations/source/tr/svx/source/items.po2
-rw-r--r--translations/source/tr/svx/source/src.po2
-rw-r--r--translations/source/tr/sw/source/ui/config.po2
-rw-r--r--translations/source/tr/sw/source/ui/envelp.po2
-rw-r--r--translations/source/tr/sw/source/ui/fldui.po2
-rw-r--r--translations/source/tr/sw/source/ui/frmdlg.po2
-rw-r--r--translations/source/tr/swext/mediawiki/help.po2
-rw-r--r--translations/source/tr/swext/mediawiki/src.po2
-rw-r--r--translations/source/tr/uui/source.po2
-rw-r--r--translations/source/tr/vcl/source/src.po2
-rw-r--r--translations/source/tr/xmlsecurity/source/dialogs.po2
-rw-r--r--translations/source/ts/cui/source/dialogs.po14
-rw-r--r--translations/source/ts/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ts/sc/source/ui/src.po74
-rw-r--r--translations/source/ts/sfx2/source/doc.po86
-rw-r--r--translations/source/ts/svtools/source/dialogs.po70
-rw-r--r--translations/source/tt/cui/source/dialogs.po14
-rw-r--r--translations/source/tt/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/tt/sc/source/ui/src.po67
-rw-r--r--translations/source/tt/sfx2/source/doc.po82
-rw-r--r--translations/source/tt/svtools/source/dialogs.po70
-rw-r--r--translations/source/ug/accessibility/source/helper.po2
-rw-r--r--translations/source/ug/avmedia/source/framework.po2
-rw-r--r--translations/source/ug/basctl/source/basicide.po8
-rw-r--r--translations/source/ug/basic/source/classes.po2
-rw-r--r--translations/source/ug/chart2/source/controller/dialogs.po12
-rw-r--r--translations/source/ug/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po8
-rw-r--r--translations/source/ug/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po8
-rw-r--r--translations/source/ug/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po4
-rw-r--r--translations/source/ug/connectivity/source/resource.po10
-rw-r--r--translations/source/ug/cui/source/customize.po8
-rw-r--r--translations/source/ug/cui/source/dialogs.po20
-rw-r--r--translations/source/ug/cui/source/options.po14
-rw-r--r--translations/source/ug/cui/source/tabpages.po12
-rw-r--r--translations/source/ug/dbaccess/source/core/resource.po6
-rw-r--r--translations/source/ug/dbaccess/source/ext/macromigration.po2
-rw-r--r--translations/source/ug/dbaccess/source/ui/browser.po2
-rw-r--r--translations/source/ug/dbaccess/source/ui/dlg.po6
-rw-r--r--translations/source/ug/dbaccess/source/ui/inc.po2
-rw-r--r--translations/source/ug/dbaccess/source/ui/misc.po2
-rw-r--r--translations/source/ug/dbaccess/source/ui/querydesign.po2
-rw-r--r--translations/source/ug/dbaccess/source/ui/tabledesign.po2
-rw-r--r--translations/source/ug/dbaccess/source/ui/uno.po2
-rw-r--r--translations/source/ug/desktop/source/app.po8
-rw-r--r--translations/source/ug/desktop/source/deployment/gui.po5
-rw-r--r--translations/source/ug/dictionaries/en/dialog.po4
-rw-r--r--translations/source/ug/dictionaries/hu_HU/dialog.po4
-rw-r--r--translations/source/ug/editeng/source/editeng.po4
-rw-r--r--translations/source/ug/editeng/source/items.po2
-rw-r--r--translations/source/ug/editeng/source/misc.po2
-rw-r--r--translations/source/ug/extensions/source/bibliography.po2
-rw-r--r--translations/source/ug/extensions/source/dbpilots.po2
-rw-r--r--translations/source/ug/extensions/source/propctrlr.po2
-rw-r--r--translations/source/ug/extensions/source/scanner.po6
-rw-r--r--translations/source/ug/filter/source/config/fragments/filters.po2
-rw-r--r--translations/source/ug/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--translations/source/ug/filter/source/pdf.po6
-rw-r--r--translations/source/ug/filter/source/t602.po2
-rw-r--r--translations/source/ug/filter/source/xsltdialog.po6
-rw-r--r--translations/source/ug/fpicker/source/office.po2
-rw-r--r--translations/source/ug/framework/source/classes.po2
-rw-r--r--translations/source/ug/framework/source/services.po2
-rw-r--r--translations/source/ug/helpcontent2/source/text/scalc/01.po18
-rw-r--r--translations/source/ug/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/ug/helpcontent2/source/text/shared.po6
-rw-r--r--translations/source/ug/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/ug/helpcontent2/source/text/shared/02.po36
-rw-r--r--translations/source/ug/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/ug/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--translations/source/ug/nlpsolver/src/locale.po2
-rw-r--r--translations/source/ug/officecfg/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/ug/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--translations/source/ug/padmin/source.po5
-rw-r--r--translations/source/ug/readlicense_oo/docs/readme.po16
-rw-r--r--translations/source/ug/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--translations/source/ug/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--translations/source/ug/reportbuilder/util.po4
-rw-r--r--translations/source/ug/reportdesign/source/core/resource.po2
-rw-r--r--translations/source/ug/reportdesign/source/ui/dlg.po2
-rw-r--r--translations/source/ug/reportdesign/source/ui/inspection.po2
-rw-r--r--translations/source/ug/reportdesign/source/ui/report.po2
-rw-r--r--translations/source/ug/sc/source/ui/cctrl.po2
-rw-r--r--translations/source/ug/sc/source/ui/dbgui.po2
-rw-r--r--translations/source/ug/sc/source/ui/miscdlgs.po2
-rw-r--r--translations/source/ug/sc/source/ui/navipi.po2
-rw-r--r--translations/source/ug/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/ug/sc/source/ui/pagedlg.po2
-rw-r--r--translations/source/ug/sc/source/ui/src.po72
-rw-r--r--translations/source/ug/scaddins/source/analysis.po2
-rw-r--r--translations/source/ug/scaddins/source/datefunc.po2
-rw-r--r--translations/source/ug/scp2/source/accessories.po2
-rw-r--r--translations/source/ug/scp2/source/activex.po2
-rw-r--r--translations/source/ug/scp2/source/binfilter.po2
-rw-r--r--translations/source/ug/scp2/source/draw.po2
-rw-r--r--translations/source/ug/scp2/source/extensions.po2
-rw-r--r--translations/source/ug/scp2/source/gnome.po2
-rw-r--r--translations/source/ug/scp2/source/graphicfilter.po2
-rw-r--r--translations/source/ug/scp2/source/javafilter.po2
-rw-r--r--translations/source/ug/scp2/source/kde.po2
-rw-r--r--translations/source/ug/scp2/source/onlineupdate.po2
-rw-r--r--translations/source/ug/scp2/source/ooo.po2
-rw-r--r--translations/source/ug/scp2/source/winexplorerext.po2
-rw-r--r--translations/source/ug/scripting/source/pyprov.po4
-rw-r--r--translations/source/ug/sd/source/core.po2
-rw-r--r--translations/source/ug/sd/source/filter/html.po2
-rw-r--r--translations/source/ug/sd/source/ui/animations.po2
-rw-r--r--translations/source/ug/sd/source/ui/app.po8
-rw-r--r--translations/source/ug/sd/source/ui/dlg.po2
-rw-r--r--translations/source/ug/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--translations/source/ug/sfx2/source/appl.po12
-rw-r--r--translations/source/ug/sfx2/source/dialog.po2
-rw-r--r--translations/source/ug/sfx2/source/doc.po104
-rw-r--r--translations/source/ug/sfx2/source/view.po2
-rw-r--r--translations/source/ug/starmath/source.po2
-rw-r--r--translations/source/ug/svtools/source/contnr.po2
-rw-r--r--translations/source/ug/svtools/source/dialogs.po72
-rw-r--r--translations/source/ug/svtools/source/filter.po2
-rw-r--r--translations/source/ug/svx/source/dialog.po8
-rw-r--r--translations/source/ug/svx/source/fmcomp.po2
-rw-r--r--translations/source/ug/svx/source/form.po2
-rw-r--r--translations/source/ug/svx/source/items.po2
-rw-r--r--translations/source/ug/svx/source/src.po2
-rw-r--r--translations/source/ug/svx/source/svdraw.po2
-rw-r--r--translations/source/ug/svx/source/tbxctrls.po2
-rw-r--r--translations/source/ug/sw/source/core/undo.po2
-rw-r--r--translations/source/ug/sw/source/core/unocore.po2
-rw-r--r--translations/source/ug/sw/source/ui/app.po2
-rw-r--r--translations/source/ug/sw/source/ui/chrdlg.po2
-rw-r--r--translations/source/ug/sw/source/ui/config.po2
-rw-r--r--translations/source/ug/sw/source/ui/dbui.po2
-rw-r--r--translations/source/ug/sw/source/ui/dialog.po2
-rw-r--r--translations/source/ug/sw/source/ui/dochdl.po2
-rw-r--r--translations/source/ug/sw/source/ui/docvw.po2
-rw-r--r--translations/source/ug/sw/source/ui/envelp.po2
-rw-r--r--translations/source/ug/sw/source/ui/fldui.po2
-rw-r--r--translations/source/ug/sw/source/ui/fmtui.po2
-rw-r--r--translations/source/ug/sw/source/ui/frmdlg.po2
-rw-r--r--translations/source/ug/sw/source/ui/index.po2
-rw-r--r--translations/source/ug/sw/source/ui/misc.po6
-rw-r--r--translations/source/ug/sw/source/ui/shells.po2
-rw-r--r--translations/source/ug/sw/source/ui/table.po2
-rw-r--r--translations/source/ug/sw/source/ui/uiview.po2
-rw-r--r--translations/source/ug/sw/source/ui/utlui.po2
-rw-r--r--translations/source/ug/swext/mediawiki/help.po2
-rw-r--r--translations/source/ug/sysui/desktop/share.po2
-rw-r--r--translations/source/ug/uui/source.po2
-rw-r--r--translations/source/ug/wizards/source/formwizard.po2
-rw-r--r--translations/source/ug/wizards/source/template.po2
-rw-r--r--translations/source/ug/xmlsecurity/source/dialogs.po2
-rw-r--r--translations/source/uk/cui/source/dialogs.po14
-rw-r--r--translations/source/uk/helpcontent2/source/text/scalc/01.po18
-rw-r--r--translations/source/uk/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--translations/source/uk/helpcontent2/source/text/shared/01.po6
-rw-r--r--translations/source/uk/helpcontent2/source/text/shared/02.po36
-rw-r--r--translations/source/uk/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/uk/sc/source/ui/src.po72
-rw-r--r--translations/source/uk/sfx2/source/doc.po84
-rw-r--r--translations/source/uk/svtools/source/dialogs.po70
-rw-r--r--translations/source/uz/cui/source/dialogs.po14
-rw-r--r--translations/source/uz/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/uz/sc/source/ui/src.po73
-rw-r--r--translations/source/uz/sfx2/source/doc.po84
-rw-r--r--translations/source/uz/svtools/source/dialogs.po70
-rw-r--r--translations/source/ve/cui/source/dialogs.po14
-rw-r--r--translations/source/ve/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/ve/sc/source/ui/src.po74
-rw-r--r--translations/source/ve/sfx2/source/doc.po86
-rw-r--r--translations/source/ve/svtools/source/dialogs.po70
-rw-r--r--translations/source/vi/cui/source/dialogs.po22
-rw-r--r--translations/source/vi/cui/source/options.po2
-rw-r--r--translations/source/vi/dictionaries/de.po2
-rw-r--r--translations/source/vi/dictionaries/en/dialog.po2
-rw-r--r--translations/source/vi/dictionaries/es_ES.po2
-rw-r--r--translations/source/vi/dictionaries/et_EE.po2
-rw-r--r--translations/source/vi/dictionaries/gd_GB.po2
-rw-r--r--translations/source/vi/dictionaries/gl.po2
-rw-r--r--translations/source/vi/dictionaries/gu_IN.po2
-rw-r--r--translations/source/vi/dictionaries/he_IL.po2
-rw-r--r--translations/source/vi/dictionaries/hi_IN.po2
-rw-r--r--translations/source/vi/dictionaries/hr_HR.po2
-rw-r--r--translations/source/vi/dictionaries/hu_HU.po2
-rw-r--r--translations/source/vi/dictionaries/hu_HU/dialog.po2
-rw-r--r--translations/source/vi/dictionaries/it_IT.po2
-rw-r--r--translations/source/vi/dictionaries/ku_TR.po2
-rw-r--r--translations/source/vi/dictionaries/lt_LT.po2
-rw-r--r--translations/source/vi/dictionaries/lv_LV.po2
-rw-r--r--translations/source/vi/dictionaries/ne_NP.po2
-rw-r--r--translations/source/vi/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/vi/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/vi/helpcontent2/source/text/shared/01.po8
-rw-r--r--translations/source/vi/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/vi/helpcontent2/source/text/shared/guide.po6
-rw-r--r--translations/source/vi/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--translations/source/vi/nlpsolver/src/com/NLPSolver.po22
-rw-r--r--translations/source/vi/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/vi/padmin/source.po4
-rw-r--r--translations/source/vi/readlicense_oo/docs/readme.po12
-rw-r--r--translations/source/vi/sc/source/ui/miscdlgs.po4
-rw-r--r--translations/source/vi/sc/source/ui/src.po72
-rw-r--r--translations/source/vi/sfx2/source/appl.po8
-rw-r--r--translations/source/vi/sfx2/source/dialog.po4
-rw-r--r--translations/source/vi/sfx2/source/doc.po102
-rw-r--r--translations/source/vi/svtools/source/dialogs.po70
-rw-r--r--translations/source/xh/cui/source/dialogs.po14
-rw-r--r--translations/source/xh/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/xh/sc/source/ui/src.po71
-rw-r--r--translations/source/xh/sfx2/source/doc.po86
-rw-r--r--translations/source/xh/svtools/source/dialogs.po70
-rw-r--r--translations/source/zh-CN/cui/source/dialogs.po16
-rw-r--r--translations/source/zh-CN/cui/source/options.po2
-rw-r--r--translations/source/zh-CN/helpcontent2/source/text/scalc/01.po34
-rw-r--r--translations/source/zh-CN/helpcontent2/source/text/scalc/04.po2
-rw-r--r--translations/source/zh-CN/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--translations/source/zh-CN/helpcontent2/source/text/shared/00.po2
-rw-r--r--translations/source/zh-CN/helpcontent2/source/text/shared/01.po14
-rw-r--r--translations/source/zh-CN/helpcontent2/source/text/shared/02.po54
-rw-r--r--translations/source/zh-CN/helpcontent2/source/text/shared/guide.po14
-rw-r--r--translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po2
-rw-r--r--translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/zh-CN/sc/source/ui/optdlg.po2
-rw-r--r--translations/source/zh-CN/sc/source/ui/src.po75
-rw-r--r--translations/source/zh-CN/scp2/source/draw.po2
-rw-r--r--translations/source/zh-CN/sfx2/source/doc.po106
-rw-r--r--translations/source/zh-CN/svtools/source/dialogs.po70
-rw-r--r--translations/source/zh-TW/connectivity/registry/ado/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/zh-TW/connectivity/registry/calc/org/openoffice/Office/DataAccess.po9
-rw-r--r--translations/source/zh-TW/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po9
-rw-r--r--translations/source/zh-TW/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/zh-TW/connectivity/registry/flat/org/openoffice/Office/DataAccess.po9
-rw-r--r--translations/source/zh-TW/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po9
-rw-r--r--translations/source/zh-TW/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po11
-rw-r--r--translations/source/zh-TW/connectivity/registry/kab/org/openoffice/Office/DataAccess.po9
-rw-r--r--translations/source/zh-TW/connectivity/registry/macab/org/openoffice/Office/DataAccess.po9
-rw-r--r--translations/source/zh-TW/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po17
-rw-r--r--translations/source/zh-TW/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/zh-TW/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po13
-rw-r--r--translations/source/zh-TW/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po9
-rw-r--r--translations/source/zh-TW/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po9
-rw-r--r--translations/source/zh-TW/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po9
-rw-r--r--translations/source/zh-TW/cui/source/dialogs.po47
-rw-r--r--translations/source/zh-TW/cui/source/options.po35
-rw-r--r--translations/source/zh-TW/cui/source/tabpages.po14
-rw-r--r--translations/source/zh-TW/extensions/source/update/check.po22
-rw-r--r--translations/source/zh-TW/extensions/source/update/check/org/openoffice/Office.po9
-rw-r--r--translations/source/zh-TW/filter/source/config/fragments/filters.po34
-rw-r--r--translations/source/zh-TW/filter/source/pdf.po12
-rw-r--r--translations/source/zh-TW/filter/source/xsltdialog.po8
-rw-r--r--translations/source/zh-TW/helpcontent2/source/text/scalc/01.po27
-rw-r--r--translations/source/zh-TW/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--translations/source/zh-TW/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/zh-TW/helpcontent2/source/text/shared/02.po50
-rw-r--r--translations/source/zh-TW/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/zh-TW/instsetoo_native/inc_openoffice/windows/msi_languages.po27
-rw-r--r--translations/source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/zh-TW/sc/source/ui/dbgui.po8
-rw-r--r--translations/source/zh-TW/sc/source/ui/optdlg.po17
-rw-r--r--translations/source/zh-TW/sc/source/ui/src.po196
-rw-r--r--translations/source/zh-TW/scaddins/source/analysis.po45
-rw-r--r--translations/source/zh-TW/scp2/source/draw.po8
-rw-r--r--translations/source/zh-TW/scp2/source/ooo.po20
-rw-r--r--translations/source/zh-TW/scp2/source/stdlibs.po11
-rw-r--r--translations/source/zh-TW/scp2/source/tde.po11
-rw-r--r--translations/source/zh-TW/sd/source/ui/animations.po7
-rw-r--r--translations/source/zh-TW/sd/source/ui/app.po35
-rw-r--r--translations/source/zh-TW/sd/source/ui/dlg.po10
-rw-r--r--translations/source/zh-TW/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po10
-rw-r--r--translations/source/zh-TW/sfx2/source/appl.po14
-rw-r--r--translations/source/zh-TW/sfx2/source/doc.po106
-rw-r--r--translations/source/zh-TW/svtools/source/dialogs.po70
-rw-r--r--translations/source/zh-TW/svtools/source/java.po8
-rw-r--r--translations/source/zh-TW/svtools/source/misc.po21
-rw-r--r--translations/source/zh-TW/svx/source/src.po9
-rw-r--r--translations/source/zh-TW/svx/source/stbctrls.po18
-rw-r--r--translations/source/zu/cui/source/dialogs.po14
-rw-r--r--translations/source/zu/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/zu/sc/source/ui/src.po71
-rw-r--r--translations/source/zu/sfx2/source/doc.po86
-rw-r--r--translations/source/zu/svtools/source/dialogs.po70
3442 files changed, 28548 insertions, 38376 deletions
diff --git a/translations/source/af/cui/source/dialogs.po b/translations/source/af/cui/source/dialogs.po
index 6769b377b84..1e7a5c88b60 100644
--- a/translations/source/af/cui/source/dialogs.po
+++ b/translations/source/af/cui/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-06-16 13:09+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1212,10 +1212,6 @@ msgstr "Swewenderaam-eienskappe"
msgid "Select File for Floating Frame"
msgstr "Kies lêer vir swewende raam"
-#: svuidlg.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "Redigeer miniprogram"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VERSION.string.text
msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
msgstr ""
@@ -1252,18 +1248,10 @@ msgstr ""
msgid "http://www.libreoffice.org/about-us/credits/"
msgstr ""
-#: about.src#RID_DEFAULTABOUT.ABOUT_STR_LINK_LICENSE.string.text
-msgid "http://www.libreoffice.org/download/license/"
-msgstr ""
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CREDITS.pushbutton.text
msgid "Credits"
msgstr ""
-#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_LICENSE.pushbutton.text
-msgid "License"
-msgstr ""
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_WEBSITE.pushbutton.text
msgid "Website"
msgstr ""
diff --git a/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po b/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
index d3e5c81c132..76e258ed805 100644
--- a/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+officecfg%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FUI.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2012-06-16 13:09+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10272,6 +10272,10 @@ msgstr "V~oorwaardelike formatering..."
msgid "Conditional Formatting..."
msgstr "V~oorwaardelike formatering..."
+#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ConditionalFormatManagerDialog.Label.value.text
+msgid "Manage..."
+msgstr ""
+
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_Deselect.Label.value.text
msgid "Undo Selection"
msgstr "Ontdoen merkaksie"
diff --git a/translations/source/af/sc/source/ui/src.po b/translations/source/af/sc/source/ui/src.po
index d7d2c8c77fa..70991f8f148 100644
--- a/translations/source/af/sc/source/ui/src.po
+++ b/translations/source/af/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fsrc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2012-06-16 13:10+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9618,6 +9618,8 @@ msgid "Settings:"
msgstr "Instellings:"
#: solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text
+#, fuzzy
+msgctxt "solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text"
msgid "Edit..."
msgstr "Redigeer..."
@@ -9652,16 +9654,17 @@ msgstr "Verwyder"
msgid "Conditional Formatting for"
msgstr "Voorwaardelike formatering"
-#: condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text
-msgctxt "condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text"
-msgid "Condition"
-msgstr "Voorwaarde"
+#: condformatdlg.src#RID_COND_ENTRY.STR_CONDITION.string.text
+msgid "Condition "
+msgstr ""
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.1.stringlist.text
msgid "All Cells"
msgstr ""
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text
+#, fuzzy
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text"
msgid "Cell value is"
msgstr "Selwaarde is"
@@ -9694,14 +9697,19 @@ msgid "not equal to"
msgstr "nie gelyk aan"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text
+#, fuzzy
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text"
msgid "between"
msgstr "tussen"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text
+#, fuzzy
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text"
msgid "not between"
msgstr "nie tussen"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text"
msgid "duplicate"
msgstr ""
@@ -9899,6 +9907,25 @@ msgctxt "subtdlg.src#RID_SCDLG_SUBTOTALS.tabdialog.text"
msgid "Subtotals"
msgstr "Subtotale"
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text"
+msgid "Add"
+msgstr ""
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text"
+msgid "Remove"
+msgstr ""
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text"
+msgid "Edit..."
+msgstr ""
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.modaldialog.text
+msgid "Manage Conditional Formatting"
+msgstr ""
+
#: textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
msgctxt "textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
msgid "Font"
@@ -12177,6 +12204,42 @@ msgstr ""
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
+#: globstr.src#RID_GLOBSTR.STR_HEADER_COND.string.text
+msgid "First Condition"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text"
+msgid "Cell value is"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_COLORSCALE.string.text
+msgid "ColorScale"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DATABAR.string.text
+msgid "DataBar"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text"
+msgid "between"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text"
+msgid "not between"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_UNIQUE.string.text
+msgid "unique"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text"
+msgid "duplicate"
+msgstr ""
+
#: crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text
msgctxt "crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text"
msgid "Range"
diff --git a/translations/source/af/sfx2/source/doc.po b/translations/source/af/sfx2/source/doc.po
index 4d0fa5481bc..90aeb0bc2d9 100644
--- a/translations/source/af/sfx2/source/doc.po
+++ b/translations/source/af/sfx2/source/doc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fdoc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-04-05 09:29+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -198,103 +198,43 @@ msgid "Template Management"
msgstr "Sjabloonbestuur"
#: templatelocnames.src#STR_TEMPLATE_NAME1.string.text
-msgid "Blue Border"
+msgid "Abstract Green"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME2.string.text
-msgid "Black and White"
+msgid "Abstract Red"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME3.string.text
-msgid "Blue and Grey"
+msgid "Abstract Yellow"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME4.string.text
-msgid "Blue Lines and Gradients"
+msgid "Bright Blue"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME5.string.text
-msgid "Blue with Bottom Title"
+msgid "DNA"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME6.string.text
-msgid "Notebook"
+msgid "Inspiration"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME7.string.text
-msgid "Brown"
-msgstr "Bruin"
+msgid "Lush Green"
+msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME8.string.text
-msgid "Characters with Glow"
+msgid "Metropolis"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME9.string.text
-msgid "Forest"
-msgstr "Bos"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME10.string.text
-msgid "Fresco"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME11.string.text
-msgid "Glacier"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME12.string.text
-msgid "Green with White Lines"
+msgid "Sunset"
msgstr ""
-#: templatelocnames.src#STR_TEMPLATE_NAME13.string.text
-msgid "Keyboard"
-msgstr "Sleutelbord"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME14.string.text
-msgid "Light Blue Shapes"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME15.string.text
-msgid "Numbers on Dark Background"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME16.string.text
-msgid "Blue Step Gradients"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME17.string.text
-msgid "White Blue and Lightnings"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME18.string.text
-msgid "Noise Paper"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME19.string.text
-msgid "Red Noise Shapes"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME20.string.text
-msgid "Rounded Rectangles"
-msgstr "Geronde reghoeke"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME21.string.text
-msgid "Blue and Red Gradient"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME22.string.text
-msgid "Technical Polygon"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME23.string.text
-msgid "Tunnel"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME24.string.text
-msgid "Water"
-msgstr "Water"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME25.string.text
-msgid "Wine"
+#: templatelocnames.src#STR_TEMPLATE_NAME10.string.text
+msgid "Vintage"
msgstr ""
#: doc.src#MSG_CONFIRM_FILTER.querybox.text
diff --git a/translations/source/af/svtools/source/dialogs.po b/translations/source/af/svtools/source/dialogs.po
index e0a8aa0fa4f..ba11f7f862c 100644
--- a/translations/source/af/svtools/source/dialogs.po
+++ b/translations/source/af/svtools/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-04-05 09:31+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -731,66 +731,6 @@ msgstr "Die gespesifiseerde lêer kon nie oopgemaak word nie."
msgid "$(ERR) activating object"
msgstr "$(ERR) met aktiveer van objek"
-#: so3res.src#STR_INS_OBJECT.string.text
-msgid "Inserts a new %1-Object into your document."
-msgstr "Voeg 'n nuwe %1-objek in u dokument in."
-
-#: so3res.src#STR_INS_OBJECT_ICON.string.text
-msgid "Inserts a new %1-Object into your document as a symbol."
-msgstr "Voeg 'n nuwe %1-objek in u dokument in as simbool."
-
-#: so3res.src#STR_INS_FILE.string.text
-msgid "Inserts the contents of the file into your document to enable later editing in the original application."
-msgstr "Voeg die inhoud van die lêer in u dokument in ten einde latere redigering in die oorspronklike toepassing moontlik te maak."
-
-#: so3res.src#STR_INS_PLUGIN.string.text
-msgid "Inserts a plug-in object into your document with a reference to the plug-in data. When the object is activated, the plug-in is automatically executed."
-msgstr "Voeg 'n inprop-objek in u dokument in met 'n verwysing na die inpropdata. Wanneer die objek geaktiveer word, word die inprop outomaties gelaai."
-
-#: so3res.src#STR_INS_APPLET.string.text
-msgid "Inserts an applet object into your document. When the object is activated, the applet is automatically executed."
-msgstr "Voeg 'n miniprogram-objek in u dokument in. Wanneer die objek geaktiveer word, word die miniprogram outomaties gelaai."
-
-#: so3res.src#STR_INS_FILE_ICON.string.text
-msgid "Inserts the contents of the file as an icon into your document."
-msgstr "Voeg die inhoud van die lêer as 'n ikoon in u dokument in."
-
-#: so3res.src#STR_INS_FILE_LINK.string.text
-msgid "Inserts the contents of the file into your document and creates a link to the source file. Changes made to the source file will be reflected in your document."
-msgstr "Voeg die inhoud van die lêer in u dokument en skep 'n skakel na die bronlêer. Wysigings wat aan die bronlêer aangebring is, sal in u dokument weerspieël word."
-
-#: so3res.src#STR_INS_FILE_ICON_LINK.string.text
-msgid "Inserts an icon into your document representing the file. Changes made to the source file will be reflected in your document."
-msgstr "Voeg 'n ikoon in u dokument in wat die lêer verteenwoordig. Wysigings wat aan die bronlêer aangebring is, sal in u dokument weerspieël word."
-
-#: so3res.src#STR_PASTE.string.text
-msgid "Pastes the contents of the clipboard as %1 in your document."
-msgstr "Plak die inhoud van die knipbord as %1 in u dokument in."
-
-#: so3res.src#STR_CONVERT_TO.string.text
-msgid "Converts the selected %1object to the object type %2."
-msgstr "Skep die gemerkte %1-objek om na objeksoort %2."
-
-#: so3res.src#STR_ACTIVATE_AS.string.text
-msgid "All objects of type %1 are activated as %2, but not converted"
-msgstr "Alle objekte van soort %1 word as %2 geaktiveer, maar nie omgeskakel nie"
-
-#: so3res.src#STR_VERB_OPEN.string.text
-msgid "~Open"
-msgstr "~Open"
-
-#: so3res.src#STR_VERB_PROPS.string.text
-msgid "~Properties"
-msgstr "~Eienskappe"
-
-#: so3res.src#STR_PLUGIN_CANT_SHOW.string.text
-msgid "Plug-in % cannot be displayed."
-msgstr "Inprop % kan nie vertoon word nie."
-
-#: so3res.src#STR_ERROR_DDE.string.text
-msgid "DDE link to % for % area % are not available."
-msgstr "DDE-skakel na % vir % ruimte % is nie beskikbaar nie."
-
#: so3res.src#STR_ERROR_OBJNOCREATE.string.text
msgid "Object % could not be inserted."
msgstr "Objek % kon nie ingevoeg word nie."
@@ -803,18 +743,10 @@ msgstr "Objek uit lêer % kon nie ingevoeg word nie."
msgid "Plug-in from document % could not be inserted."
msgstr "Inprop uit dokument % kon nie ingevoeg word nie."
-#: so3res.src#STR_QUERYUPDATELINKS.string.text
-msgid "Update all links?"
-msgstr "Werk alle skakels by?"
-
#: so3res.src#STR_FURTHER_OBJECT.string.text
msgid "Further objects"
msgstr "Verdere objekte"
-#: so3res.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "Redigeer miniprogram"
-
#: so3res.src#MI_PLUGIN.MI_PLUGIN_DEACTIVATE.menuitem.text
msgid "Deactivate"
msgstr "Deaktiveer"
diff --git a/translations/source/am/basctl/source/basicide.po b/translations/source/am/basctl/source/basicide.po
index 92c3ec610b2..2d1fe4188d5 100644
--- a/translations/source/am/basctl/source/basicide.po
+++ b/translations/source/am/basctl/source/basicide.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_MOD.pageitem.text
diff --git a/translations/source/am/basic/source/classes.po b/translations/source/am/basic/source/classes.po
index d40c09bc575..acf3cbd1979 100644
--- a/translations/source/am/basic/source/classes.po
+++ b/translations/source/am/basic/source/classes.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: sb.src#RID_BASIC_START.SbERR_SYNTAX___ERRCODE_RES_MASK.string.text
diff --git a/translations/source/am/chart2/source/controller/dialogs.po b/translations/source/am/chart2/source/controller/dialogs.po
index 74922462ecd..f5ecfb7dd1a 100644
--- a/translations/source/am/chart2/source/controller/dialogs.po
+++ b/translations/source/am/chart2/source/controller/dialogs.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: tp_TitleRotation.src#TP_ALIGNMENT.BTN_TXTSTACKED.tristatebox.text
diff --git a/translations/source/am/cui/source/customize.po b/translations/source/am/cui/source/customize.po
index 9587fcc4415..03dcf18ee20 100644
--- a/translations/source/am/cui/source/customize.po
+++ b/translations/source/am/cui/source/customize.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: macropg.src#RID_SVXPAGE_MACROASSIGN.STR_EVENT.string.text
diff --git a/translations/source/am/cui/source/dialogs.po b/translations/source/am/cui/source/dialogs.po
index e5bf1b556de..e40c543a5fe 100644
--- a/translations/source/am/cui/source/dialogs.po
+++ b/translations/source/am/cui/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-06-27 05:56+0200\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_WORD.fixedtext.text
@@ -1181,10 +1181,6 @@ msgstr "የማንሳፈፊያ ጠርዝ ባህሪዎች"
msgid "Select File for Floating Frame"
msgstr "ይምረጡ ፋይል ለማንሳፈፊያ ጠርዝ"
-#: svuidlg.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "Applet ማረሚያ"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VERSION.string.text
msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
msgstr "እትም %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
@@ -1221,18 +1217,10 @@ msgstr "http://www.libreoffice.org"
msgid "http://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
-#: about.src#RID_DEFAULTABOUT.ABOUT_STR_LINK_LICENSE.string.text
-msgid "http://www.libreoffice.org/download/license/"
-msgstr "http://www.libreoffice.org/download/license/"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CREDITS.pushbutton.text
msgid "Credits"
msgstr "ምስጋና"
-#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_LICENSE.pushbutton.text
-msgid "License"
-msgstr "ፍቃድ"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_WEBSITE.pushbutton.text
msgid "Website"
msgstr "ድሕረ ገጽ"
diff --git a/translations/source/am/cui/source/options.po b/translations/source/am/cui/source/options.po
index b89d52fcd29..ffb37ee8bb7 100644
--- a/translations/source/am/cui/source/options.po
+++ b/translations/source/am/cui/source/options.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_COMPANY.fixedtext.text
diff --git a/translations/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po b/translations/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 006a0cd5203..58a437bd126 100644
--- a/translations/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/translations/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+instsetoo_native%2Finc_openoffice%2Fwindows%2Fmsi_languages.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-07-01 06:46+0200\n"
+"PO-Revision-Date: 2012-07-07 17:01+0200\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -535,19 +535,19 @@ msgstr "የግልጋሎቱን መግለጫ '[2]' ([3]) መቀየር አይቻል
#: Error.ulf#OOO_ERROR_127.LngText.text
msgid "The Windows Installer service cannot update the system file [2] because the file is protected by Windows. You may need to update your operating system for this program to work correctly. {{Package version: [3], OS Protected version: [4]}}"
-msgstr ""
+msgstr "የ Windows መግጠሚያ ግልጋሎት የስርአቱን ፋይል ማሻሻል አይችልም [2] ምክንያቱም ፋይሉ በ Windows የሚጠበቅ ነው ፡ ይህ ፕሮግራም በትክክል እንዲሰራ የስር አት መተግበሪያውን ማሻሻል አለብዎት ፡ {{Package version: [3], OS Protected version: [4]}}"
#: Error.ulf#OOO_ERROR_128.LngText.text
msgid "The Windows Installer service cannot update the protected Windows file [2]. {{Package version: [3], OS Protected version: [4], SFP Error: [5]}}"
-msgstr ""
+msgstr "የ Windows መግጠሚያ ግልጋሎት በ Windows የሚጠበቅን ፋይል ማሻሻል አይችልም [2]. {{Package version: [3], OS Protected version: [4], SFP Error: [5]}}"
#: Error.ulf#OOO_ERROR_129.LngText.text
msgid "This setup requires Internet Information Server 4.0 or higher for configuring IIS Virtual Roots. Please make sure that you have IIS 4.0 or higher."
-msgstr ""
+msgstr "ይህ ማሰናጃ የኢንተርኔት መረጃ Server 4.0 ወይንም ከዚያ በላይ የሆነ ይፈልጋል ለማዋቀር IIS Virtual Roots. እባክዎን እርግጠኛ ይሁኑ የ IIS 4.0 ወይንም ከዚያ በላይ እንዳለዎት"
#: Error.ulf#OOO_ERROR_130.LngText.text
msgid "This setup requires Administrator privileges for configuring IIS Virtual Roots."
-msgstr ""
+msgstr "ይህ ማሰናጃ የአስተዳዳሪ ፍቃድ ይፈልጋል ለማዋቀር ይህን IIS Virtual Roots."
#: RadioBut.ulf#OOO_RADIOBUTTON_1.LngText.text
msgid "{&MSSansBold8}&Modify"
@@ -753,31 +753,31 @@ msgstr "ይህ ገጽታ በሙሉ ይወገዳል እና በሚፈለግ ጊዜ
#: UIText.ulf#OOO_UITEXT_37.LngText.text
msgid "This feature was run from the network but will be installed when required."
-msgstr ""
+msgstr "ይህ ገጽታ ይሄድ የነበረው ከ ኔትዎርክ ነበር ነገር ግን በሚፈለግ ጊዜ መግጠም ይቻላል"
#: UIText.ulf#OOO_UITEXT_38.LngText.text
msgid "This feature was run from the network but will be installed on the local hard drive."
-msgstr ""
+msgstr "ይህ ገጽታ ይሄድ የነበረው ከ ኔትዎርክ ነበር ነገር ግን አሁን በ ሀርድ ድራይቩ ላይ ይገጠማል"
#: UIText.ulf#OOO_UITEXT_39.LngText.text
msgid "This feature will continue to be run from the network"
-msgstr ""
+msgstr "ይህ ገጽታ ከ ኔትዎርክ መሄዱን ይቀጥላል"
#: UIText.ulf#OOO_UITEXT_40.LngText.text
msgid "This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive."
-msgstr ""
+msgstr "ይህ ገጽታ ነፃ ያደርጋል [1] ከ ሀርድ ድራይቩ ላይ ፡ አለው [2] ከ [3] ከተመረጡት ንዑስ ገጽታዎች ፡ ንዑስ ገጽታዎቹ ነፃ ያደርጋል እስከ [4] ከ ሀርድ ድራይቩ ላይ"
#: UIText.ulf#OOO_UITEXT_41.LngText.text
msgid "This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive."
-msgstr ""
+msgstr "ይህ ገጽታ ነፃ ያደርጋል [1] ከ ሀርድ ድራይቩ ላይ ፡ አለው [2] ከ [3] ከተመረጡት ንዑስ ገጽታዎች ፡ ንዑስ ገጽታዎቹ ይፈልጋሉ እስከ [4] ከ ሀርድ ድራይቩ ላይ"
#: UIText.ulf#OOO_UITEXT_42.LngText.text
msgid "This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive."
-msgstr ""
+msgstr "ይህ ገጽታ ነፃ ያደርጋል [1] ከ ሀርድ ድራይቩ ላይ ፡ አለው [2] ከ [3] ከተመረጡት ንዑስ ገጽታዎች ፡ ንዑስ ገጽታዎቹ ነፃ ያደርጋል እስከ [4] ከ ሀርድ ድራይቩ ላይ"
#: UIText.ulf#OOO_UITEXT_43.LngText.text
msgid "This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive."
-msgstr ""
+msgstr "ይህ ገጽታ ነፃ ያደርጋል [1] ከ ሀርድ ድራይቩ ላይ ፡ አለው [2] ከ [3] ከተመረጡት ንዑስ ገጽታዎች ፡ ንዑስ ገጽታዎቹ ይፈልጋሉ እስከ [4] ከ ሀርድ ድራይቩ ላይ"
#: UIText.ulf#OOO_UITEXT_44.LngText.text
msgid "Time remaining: {[1] min }[2] sec"
@@ -918,15 +918,15 @@ msgstr "መሰረዣ"
#: Control.ulf#OOO_CONTROL_19.LngText.text
msgid "Specify a network location for the server image of the product."
-msgstr ""
+msgstr "የኔትዎርክ አካባቢ ለሰርቨሩ ምስል ውጤት ይወስኑ"
#: Control.ulf#OOO_CONTROL_20.LngText.text
msgid "Enter the network location or click Change to browse to a location. Click Install to create a server image of [ProductName] at the specified network location or click Cancel to exit the wizard."
-msgstr ""
+msgstr "የኔትዎርክ አካባቢ ያስገቡ ወይንም ይጫኑ ለመቀየር ወደ አካባቢ መቃኛ፡ ይጫኑ መግጠሚያውን ለመፍጠር የሰርቨር ምስል ከ [ProductName] ከተወሰነ የኔትዎርክ አካባቢ ወይንም ይጫኑ መሰረዣ ከመግጠሚያው አዋቂ ለመውጣት"
#: Control.ulf#OOO_CONTROL_21.LngText.text
msgid "{&MSSansBold8}Network Location"
-msgstr ""
+msgstr "{&MSSansBold8}የኔትዎርክ አካባቢ"
#: Control.ulf#OOO_CONTROL_22.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_22.LngText.text"
@@ -955,11 +955,11 @@ msgstr "&ይቀጥሉ >"
#: Control.ulf#OOO_CONTROL_27.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_27.LngText.text"
msgid "{&TahomaBold10}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&TahomaBold10}እንኳን ደህና መጡ ወደ መግጠሚያው አዋቂ ለ [ProductName]"
#: Control.ulf#OOO_CONTROL_28.LngText.text
msgid "The Installation Wizard will create a server image of [ProductName] at a specified network location. To continue, click Next."
-msgstr ""
+msgstr "የመግጠሚያው አዋቂ የሰርቨር ምስል ይፈጥራል ከ [ProductName] በተወሰነ የኔትዎርክ አካባቢ ፡ ይጫኑ ይቀጥሉ የሚለውን ለመቀጠል"
#: Control.ulf#OOO_CONTROL_29.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_29.LngText.text"
@@ -991,7 +991,7 @@ msgstr "{\\Tahoma8}{80}"
#: Control.ulf#OOO_CONTROL_37.LngText.text
msgid "&Organization:"
-msgstr "&ድርጅት"
+msgstr "&ድርጅት :"
#: Control.ulf#OOO_CONTROL_38.LngText.text
msgid "Please enter your information."
@@ -1011,7 +1011,7 @@ msgstr "{\\Tahoma8}{50}"
#: Control.ulf#OOO_CONTROL_42.LngText.text
msgid "&User Name:"
-msgstr "&የተጠቃሚ ስም:"
+msgstr "&የተጠቃሚ ስም :"
#: Control.ulf#OOO_CONTROL_43.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_43.LngText.text"
@@ -1043,7 +1043,7 @@ msgstr "መግጠም የሚፈልጉትን የፕሮግራም ገጽታ ይም
#: Control.ulf#OOO_CONTROL_53.LngText.text
msgid "Click on an icon in the list below to change how a feature is installed."
-msgstr ""
+msgstr "እታች ካለው ዝርዝር ውስጥ ምልክቱን ይጫኑ ገጽታው እንዴት እንደሚገጠም ለመቀየር"
#: Control.ulf#OOO_CONTROL_54.LngText.text
msgid "{&MSSansBold8}Custom Setup"
@@ -1059,7 +1059,7 @@ msgstr "&እርዳታ"
#: Control.ulf#OOO_CONTROL_57.LngText.text
msgid "Install to:"
-msgstr "መግጠሚያ ወደ:"
+msgstr "መግጠሚያ ወደ :"
#: Control.ulf#OOO_CONTROL_58.LngText.text
msgid "Multiline description of the currently selected item"
@@ -1080,11 +1080,11 @@ msgstr "የገጽታው መጠን"
#: Control.ulf#OOO_CONTROL_64.LngText.text
msgid "Custom Setup allows you to selectively install program features."
-msgstr ""
+msgstr "Custom ማሰናጃ የመረጡትን ፕሮግራም ገጽታ ለመግጠም ያስችሎታል"
#: Control.ulf#OOO_CONTROL_65.LngText.text
msgid "{&MSSansBold8}Custom Setup Tips"
-msgstr "{&MSSansBold8}Custom Setup"
+msgstr "{&MSSansBold8}Custom ማሰናጃ"
#: Control.ulf#OOO_CONTROL_66.LngText.text
msgid "Will not be installed."
@@ -1092,23 +1092,23 @@ msgstr "አይገጠምም"
#: Control.ulf#OOO_CONTROL_67.LngText.text
msgid "Will be installed on first use. (Available only if the feature supports this option.)"
-msgstr ""
+msgstr "መጀመሪያ ሲጠቀሙ ይገጠማል (ይህን ምርጫ ገጽታው የሚደግፍ ከሆነ ነው)"
#: Control.ulf#OOO_CONTROL_68.LngText.text
msgid "This install state means the feature..."
-msgstr ""
+msgstr "ይህ የመግጠሚያ ሁኔታ ማለት ገጽታው ነው..."
#: Control.ulf#OOO_CONTROL_69.LngText.text
msgid "Will be completely installed to the local hard drive."
-msgstr ""
+msgstr "ይህ በሙሉ ይገጠማል በ ሀርድ ድራይቩ ላይ"
#: Control.ulf#OOO_CONTROL_70.LngText.text
msgid "The icon next to the feature name indicates the install state of the feature. Click the icon to drop down the install state menu for each feature."
-msgstr ""
+msgstr "ምልክቱ ከገጽታው አጠገብ ያለው ስም የሚያመልክተው የመግጠሚያውን ሁኔታ ገጽታ ነው ፡ ምልክቱን ይጫኑ ወደ ታች የሚዘረገፈውን መግጠሚያ ሁኔታ ዝርዝር ለ እያንዳንዱ ገጽታ"
#: Control.ulf#OOO_CONTROL_71.LngText.text
msgid "Will be installed to run from the network. (Available only if the feature supports this option.)"
-msgstr ""
+msgstr "የሚገጠመው ከ ኔትዎርክ እንዲሄድ ነው ፡ (ይህን ምርጫ ገጽታው የሚደግፍ ከሆነ ነው)"
#: Control.ulf#OOO_CONTROL_72.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_72.LngText.text"
@@ -1117,7 +1117,7 @@ msgstr "እሺ"
#: Control.ulf#OOO_CONTROL_73.LngText.text
msgid "Will have some subfeatures installed to the local hard drive. (Available only if the feature has subfeatures.)"
-msgstr ""
+msgstr "ንዑስ ገጽታዎች ተገጥመዋል በ ሀርድ ድራይቩ ላይ (ይህን ምርጫ ገጽታው የሚደግፍ ከሆነ ነው)"
#: Control.ulf#OOO_CONTROL_84.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_84.LngText.text"
@@ -1136,7 +1136,7 @@ msgstr "&መቀየሪያ..."
#: Control.ulf#OOO_CONTROL_89.LngText.text
msgid "Click Next to install to this folder, or click Change to install to a different folder."
-msgstr ""
+msgstr "ይጫኑ ይቀጥሉ የሚለውን በዚህ ፎልደር ውስጥ ለመግጠም ወይንም ይጫኑ መቀየሪያ የሚለውን በሌላ ፎልደር ውስጥ ለመግጠም"
#: Control.ulf#OOO_CONTROL_90.LngText.text
msgid "{&MSSansBold8}Destination Folder"
@@ -1158,12 +1158,12 @@ msgstr "&ይቀጥሉ >"
#: Control.ulf#OOO_CONTROL_96.LngText.text
msgid "The disk space required for the installation of the selected features."
-msgstr ""
+msgstr "ለተመረጡት ገጽታዎች መግጠሚያ የሚያስፈልገው የዲስክ ቦታ"
#: Control.ulf#OOO_CONTROL_97.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_97.LngText.text"
msgid "The highlighted volumes do not have enough disk space available for the currently selected features. You can remove files from the highlighted volumes, choose to install less features onto local drives, or select different destination drives."
-msgstr ""
+msgstr "የደመቁት መጠኖች ዝግጁ በቂ የዲስክ ቦታ የላቸውም አሁን ለመረጡት ገጽታዎች ፡ ፋይሎችን ከደመቀት መጠኖች ውስጥ ማስወገድ ይችላሉ ፡ ይምረጡ ለመግጠም አነስተኛ ገጽታዎች በ ሀርድ ድራይቩ ላይ ፡ ወይንም የተለየ መድረሻ በ ሀርድ ድራይቩ ይምረጡ"
#: Control.ulf#OOO_CONTROL_98.LngText.text
msgid "{&MSSansBold8}Disk Space Requirements"
@@ -1176,11 +1176,11 @@ msgstr "እሺ"
#: Control.ulf#OOO_CONTROL_103.LngText.text
msgid "Some files that need to be updated are currently in use."
-msgstr ""
+msgstr "አንዳንድ መሻሻል የሚገባቸው ፋይሎች አሁን በስራ ላይ ናቸው"
#: Control.ulf#OOO_CONTROL_104.LngText.text
msgid "The following applications are using files that need to be updated by this setup. Close these applications and click Retry to continue."
-msgstr ""
+msgstr "የሚቀጥለው መተግበሪያ ማሰናጃው ሊያሻሻል የሚፈልጋቸውን ፋይሎችን እየተጠቀመበት ነው ፡ ይህን መተግበሪያ ይዝጉ እና ይጫኑ እንደገና መሞከሪያ የሚለውን"
#: Control.ulf#OOO_CONTROL_105.LngText.text
msgid "{&MSSansBold8}Files in Use"
@@ -1250,7 +1250,7 @@ msgstr "መሰረዣ"
#: Control.ulf#OOO_CONTROL_124.LngText.text
msgid "Build contributed in collaboration with the community by [Manufacturer]. For credits, see: http://www.documentfoundation.org"
-msgstr ""
+msgstr "ግንባታው የተካሄደው በሕብረተሰቡ አስተዋጽኦ ነው [አምራቾቹ]. ለምስጋና ይህን ይመልከቱ : http://www.documentfoundation.org"
#: Control.ulf#OOO_CONTROL_125.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_125.LngText.text"
@@ -1260,11 +1260,11 @@ msgstr "&ይቀጥሉ >"
#: Control.ulf#OOO_CONTROL_126.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_126.LngText.text"
msgid "{&TahomaBold10}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&TahomaBold10}እንኳን ደህና መጡ ወደ መግጠሚያው አዋቂ [ProductName]"
#: Control.ulf#OOO_CONTROL_127.LngText.text
msgid "The Installation Wizard will install [ProductName] on your computer. To continue, click Next."
-msgstr ""
+msgstr "የመግጠሚያው አዋቂው አሁን ይገጥማል [ProductName] በ እርስዎ ኮምፒዩተር ላይ ፡ ለመቀጠል ይጫኑ ይቀጥሉ የሚለውን"
#: Control.ulf#OOO_CONTROL_128.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_128.LngText.text"
@@ -1314,11 +1314,11 @@ msgstr "&ይቀጥሉ >"
#: Control.ulf#OOO_CONTROL_143.LngText.text
msgid "Change which program features are installed. This option displays the Custom Selection dialog in which you can change the way features are installed."
-msgstr ""
+msgstr "ይቀይሩ የትኞቹ የፕሮግራም ገጽታዎች እንደሚገጠሙ ፡ ይህ ምርጫ የሚያሳየው የ Custom ምርጫዎችን ንግግር ነው ፡ እርስዎ መግጠም የሚፈልጉትን ገጽታ መቀየር ይችላሉ"
#: Control.ulf#OOO_CONTROL_144.LngText.text
msgid "Repair installation errors in the program. This option fixes missing or corrupt files, shortcuts, and registry entries."
-msgstr ""
+msgstr "በፕሮግራሙ መግጠሚያ የተፈጠሩ ስህተቶችን ይጠግናል ፡ ይህ ምርጫ ይጠግናል የጠፉ ወይንም የተበላሹ ፋይሎችን ፡ አቋራጮችን ፡ እና የመመዝገቢያ ማስገቢያዎችን"
#: Control.ulf#OOO_CONTROL_145.LngText.text
msgid "Remove [ProductName] from your computer."
@@ -1342,20 +1342,20 @@ msgstr "&ይቀጥሉ >"
#: Control.ulf#OOO_CONTROL_149.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_149.LngText.text"
msgid "{&TahomaBold10}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&TahomaBold10}እንኳን ደህና መጡ ወደ መግጠሚያው አዋቂ ለ [ProductName]"
#: Control.ulf#OOO_CONTROL_150.LngText.text
msgid "The Installation Wizard will allow you to modify, repair, or remove [ProductName]. To continue, click Next."
-msgstr ""
+msgstr "የመግጠሚያው አዋቂ ይረዳዎታል ለማሻሻል ፡ ለመጠገን ወይንም ለማስወገድ [ProductName]. ለመቀጠል ይቀጥሉ የሚለውን ይጫኑ"
#: Control.ulf#OOO_CONTROL_153.LngText.text
msgid "Disk space required for the installation exceeds available disk space."
-msgstr ""
+msgstr "ለመግጠሚያው የሚያስፈልገው ቦታ ዝግጁ ከሆነው ቦታ በላይ ነው"
#: Control.ulf#OOO_CONTROL_154.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_154.LngText.text"
msgid "The highlighted volumes do not have enough disk space available for the currently selected features. You can remove files from the highlighted volumes, choose to install less features onto local drives, or select different destination drives."
-msgstr ""
+msgstr "የደመቁት መጠኖች በቂ ዝግጁ የሆነ የዲስክ ቦታ የላቸውም አሁን ለመተረጡት ገጽታዎች ፡ ከደመቁት ፋይሎች መጠን ውስጥ ማስወገድ ይችላሉ ፡ ይምረጡ አነስተኛ ገጽታዎች ለመግጠም በ ሀርድ ድራይቩ ላይ ወይንም መድረሻ ሌላ ሀርድ ድራይቭ ይምረጡ "
#: Control.ulf#OOO_CONTROL_155.LngText.text
msgid "{&MSSansBold8}Out of Disk Space"
@@ -1386,11 +1386,11 @@ msgstr "&ማሻሻያ >"
#: Control.ulf#OOO_CONTROL_161.LngText.text
msgid "{&TahomaBold10}Welcome to the Patch for [ProductName]"
-msgstr ""
+msgstr "{&TahomaBold10}እንኳን ደህና መጡ ወደ መለጠፊያው ለ [ProductName]"
#: Control.ulf#OOO_CONTROL_162.LngText.text
msgid "The Installation Wizard will install the Patch for [ProductName] on your computer. To continue, click Update."
-msgstr ""
+msgstr "የመግጠሚያው አዋቂ አሁን መለጠፊያውን ይገጥማል ለ [ProductName] በ እርስዎ ኮምፒዩተር ላይ ለመቀጠል ይጫኑ ማሻሻያ የሚለውን"
#: Control.ulf#OOO_CONTROL_163.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_163.LngText.text"
@@ -1404,15 +1404,15 @@ msgstr "መሰረዣ"
#: Control.ulf#OOO_CONTROL_167.LngText.text
msgid "The wizard is ready to begin installation."
-msgstr ""
+msgstr "አዋቂው ዝግጁ ነው መግጠሚያውን ለማስጀመር"
#: Control.ulf#OOO_CONTROL_168.LngText.text
msgid "Click Install to begin the installation."
-msgstr ""
+msgstr "ይጫኑ መግጠሚያ የሚለውን መግጠሚያውን ለማስጀመር"
#: Control.ulf#OOO_CONTROL_169.LngText.text
msgid "If you want to review or change any of your installation settings, click Back. Click Cancel to exit the wizard."
-msgstr ""
+msgstr "እንደገና መመልከት ከፈለጉ ወይንም መቀየር ማንኛውንም የመግጠሚያውን ማሰናጃዎች ፡ ይጫኑ ወደ ኋላ የሚለውን ፡ ይጫኑ መሰረዣ የሚለውን ከአዋቂው ለመውጣት"
#: Control.ulf#OOO_CONTROL_170.LngText.text
msgid "{&MSSansBold8}Ready to Modify the Program"
@@ -1443,19 +1443,19 @@ msgstr "መሰረዣ"
#: Control.ulf#OOO_CONTROL_178.LngText.text
msgid "You have chosen to remove the program from your system."
-msgstr ""
+msgstr "ከስርአቱ ውስጥ ይህን ፕሮግራም ለማስወገድ መርጠዋል"
#: Control.ulf#OOO_CONTROL_179.LngText.text
msgid "Click Remove to remove [ProductName] from your computer. After removal, this program will no longer be available for use."
-msgstr ""
+msgstr "ይጫኑ ማስወገጃ የሚለውን ለማስወገድ [ProductName] ከኮምፒዩተሩ ውስጥ ፡ ካስወገዱ በኋላ ይህ ፕሮግራም ለመጠቀሚያ አይኖርም"
#: Control.ulf#OOO_CONTROL_180.LngText.text
msgid "If you want to review or change any settings, click Back."
-msgstr ""
+msgstr "ማንኛውንም ማሰናጃ እንደገና ማየት ወይንም መቀየር ከፈለጉ ወደ ኋላ የሚለውን ይጫኑ"
#: Control.ulf#OOO_CONTROL_181.LngText.text
msgid "{&MSSansBold8}Remove the Program"
-msgstr ""
+msgstr "{&MSSansBold8}ፕሮግራም ማስወገጃ"
#: Control.ulf#OOO_CONTROL_182.LngText.text
msgid "&Remove"
@@ -1478,7 +1478,7 @@ msgstr "&መጨረሻ"
#: Control.ulf#OOO_CONTROL_186.LngText.text
msgid "Your system has not been modified. To complete installation at another time, please run setup again."
-msgstr ""
+msgstr "ስርአቱ አልተሻሻለም ፡ መግጠሙን ለመጨረስ በሌላ ጊዜ እባክዎን ማሰናጃውን እንደገና ያስኪዱ"
#: Control.ulf#OOO_CONTROL_187.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_187.LngText.text"
@@ -1488,22 +1488,22 @@ msgstr "መጨረሻን ይጫኑ ከአዋቂው ለመውጣት"
#: Control.ulf#OOO_CONTROL_188.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_188.LngText.text"
msgid "You can either keep any existing installed elements on your system to continue this installation at a later time or you can restore your system to its original state prior to the installation."
-msgstr ""
+msgstr "በእርስዎ ስርአት ላይ የነበረውን የተገጠሙ አካላቶች ማስቀመጥ ይችላሉ ፡ ይህን መግጠሚያ በሌላ ጊዜ ለመቀጠል ፡ ወይንም ስርአቱን እንደነበር መመለስ ይችላሉ ከመገጠሙ በፊት እንደነበረው"
#: Control.ulf#OOO_CONTROL_189.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_189.LngText.text"
msgid "Click Restore or Continue Later to exit the wizard."
-msgstr ""
+msgstr "ይጫኑ እንደነበር ለመመለስ ወይንም በኋላ ለመቀጠል ከአዋቂው ለመውጣት"
#: Control.ulf#OOO_CONTROL_190.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_190.LngText.text"
msgid "{&TahomaBold10}Installation Wizard Completed"
-msgstr ""
+msgstr "{&TahomaBold10}Iየመግጠሚያ አዋቂው ጨርሷል"
#: Control.ulf#OOO_CONTROL_191.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_191.LngText.text"
msgid "The wizard was interrupted before [ProductName] could be completely installed."
-msgstr ""
+msgstr "አዋቂው በድንገት ተቋርጧል መግጠሙን [ProductName] ከመጨረሱ በፊት"
#: Control.ulf#OOO_CONTROL_192.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_192.LngText.text"
@@ -1523,15 +1523,15 @@ msgstr "&መጨረሻ"
#: Control.ulf#OOO_CONTROL_198.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_198.LngText.text"
msgid "{&TahomaBold10}Installation Wizard Completed"
-msgstr ""
+msgstr "{&TahomaBold10}የመግጠሚያ አዋቂው ጨርሷል"
#: Control.ulf#OOO_CONTROL_199.LngText.text
msgid "The Installation Wizard has successfully installed [ProductName]. Click Finish to exit the wizard."
-msgstr ""
+msgstr "የመግጠሚያው አዋቂ መግጠሙን ጨርሷል [ProductName] ይጫኑ መጨረሻ የሚለውን ከአዋቂው ለመውጣት"
#: Control.ulf#OOO_CONTROL_200.LngText.text
msgid "The Installation Wizard has successfully uninstalled [ProductName]. Click Finish to exit the wizard."
-msgstr ""
+msgstr "የመግጠሚያው አዋቂ መግጠሚያውን ማጥፋቱን ጨርሷል [ProductName] ይጫኑ መጨረሻ የሚለውን ከአዋቂው ለመውጣት"
#: Control.ulf#OOO_CONTROL_204.LngText.text
msgid "&Abort"
@@ -1543,7 +1543,7 @@ msgstr "&መሰረዣ"
#: Control.ulf#OOO_CONTROL_206.LngText.text
msgid "error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here"
-msgstr ""
+msgstr "የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል"
#: Control.ulf#OOO_CONTROL_207.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_207.LngText.text"
@@ -1587,11 +1587,11 @@ msgstr "&ይቀጥሉ >"
#: Control.ulf#OOO_CONTROL_217.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_217.LngText.text"
msgid "{&TahomaBold10}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&TahomaBold10}እንኳን ደህና መጡ ወደ መግጠሚያው አዋቂ ለ [ProductName]"
#: Control.ulf#OOO_CONTROL_218.LngText.text
msgid "[ProductName] Setup is preparing the Installation Wizard which will guide you through the program setup process. Please wait."
-msgstr ""
+msgstr "[ProductName] ማሰናጃው የመግጠሚያውን አዋቂ እያሰናዳ ነው አዋቂው ይመራዎታል ፕሮግራሙን በመግጠሚያው ሂደት በሙሉ እባክዎን ይቆዩ"
#: Control.ulf#OOO_CONTROL_219.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_219.LngText.text"
@@ -1620,26 +1620,26 @@ msgstr "ጨርሷል የሚለውን ይጫኑ ከአዋቂው ለመውጣት"
#: Control.ulf#OOO_CONTROL_224.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_224.LngText.text"
msgid "You can either keep any existing installed elements on your system to continue this installation at a later time or you can restore your system to its original state prior to the installation."
-msgstr ""
+msgstr "በእርስዎ ስርአት ላይ የነበረውን የተገጠሙ አካላቶች ማስቀመጥ ይችላሉ ፡ ይህን መግጠሚያ በሌላ ጊዜ ለመቀጠል ፡ ወይንም ስርአቱን እንደነበር መመለስ ይችላሉ ከመገጠሙ በፊት እንደነበረው"
#: Control.ulf#OOO_CONTROL_225.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_225.LngText.text"
msgid "Click Restore or Continue Later to exit the wizard."
-msgstr ""
+msgstr "ይጫኑ እንደነበር መመለሻን ወይንም ይቀጥሉ ከአዋቂው በኋላ ለመውጣት"
#: Control.ulf#OOO_CONTROL_226.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_226.LngText.text"
msgid "{&TahomaBold10}Installation Wizard Completed"
-msgstr ""
+msgstr "{&TahomaBold10}የመግጠሚያው አዋቂ ጨርሷል"
#: Control.ulf#OOO_CONTROL_227.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_227.LngText.text"
msgid "The wizard was interrupted before [ProductName] could be completely installed."
-msgstr ""
+msgstr "ይህ አዋቂ ተቋርጦ ነበር [ProductName] ገጥሞ ከመጨረሱ በፊት"
#: Control.ulf#OOO_CONTROL_228.LngText.text
msgid "Progress done"
-msgstr ""
+msgstr "ሂደቱ ጨርሷል"
#: Control.ulf#OOO_CONTROL_230.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_230.LngText.text"
@@ -1653,31 +1653,31 @@ msgstr "መሰረዣ"
#: Control.ulf#OOO_CONTROL_234.LngText.text
msgid "The program features you selected are being installed."
-msgstr ""
+msgstr "የመረጡዋቸው የፕሮግራም ገጽታዎች እየተገጠሙ ነው"
#: Control.ulf#OOO_CONTROL_235.LngText.text
msgid "The program features you selected are being uninstalled."
-msgstr ""
+msgstr "የመረጡዋቸው የፕሮግራም ገጽታዎች እየጠፉ ነው"
#: Control.ulf#OOO_CONTROL_236.LngText.text
msgid "Please wait while the Installation Wizard installs [ProductName]. This may take several minutes."
-msgstr ""
+msgstr "እባክዎን ይቆዩ የመግጠሚያው አዋቂው እየገጠመ ነው [ProductName] ይህ ትንሽ ደቂቆች ይወስዳል"
#: Control.ulf#OOO_CONTROL_237.LngText.text
msgid "Please wait while the Installation Wizard uninstalls [ProductName]. This may take several minutes."
-msgstr ""
+msgstr "እባክዎን ይቆዩ የመግጠሚያው አዋቂው እያጠፋ ነው [ProductName] ይህ ትንሽ ደቂቆች ይወስዳል"
#: Control.ulf#OOO_CONTROL_238.LngText.text
msgid "{&MSSansBold8}Installing [ProductName]"
-msgstr ""
+msgstr "{&MSSansBold8}በመግጠም ላይ [ProductName]"
#: Control.ulf#OOO_CONTROL_239.LngText.text
msgid "{&MSSansBold8}Uninstalling [ProductName]"
-msgstr ""
+msgstr "{&MSSansBold8}በማጥፋት ላይ [ProductName]"
#: Control.ulf#OOO_CONTROL_240.LngText.text
msgid "Sec."
-msgstr ""
+msgstr "Sec."
#: Control.ulf#OOO_CONTROL_241.LngText.text
msgid "Status:"
@@ -1709,15 +1709,15 @@ msgstr "&ይቀጥሉ >"
#: Control.ulf#OOO_CONTROL_248.LngText.text
msgid "The Installation Wizard will complete the installation of [ProductName] on your computer. To continue, click Next."
-msgstr "ይቀጥሉ የሚለውን ይጫኑ ለመቀጠል"
+msgstr "የመግጠሚያው አዋቂ መግጠሙን ይፈጽማል [ProductName] በእርስዎ ኮምፒዩተር ላይ ለመቀጠል ይጫኑ ይቀጥሉ የሚለውን"
#: Control.ulf#OOO_CONTROL_249.LngText.text
msgid "The Installation Wizard will complete the suspended installation of [ProductName] on your computer. To continue, click Next."
-msgstr ""
+msgstr "የመግጠሚያው አዋቂ ለጊዜው ታግዶ የነበረውን መግጠሙን ይፈጽማል [ProductName] በእርስዎ ኮምፒዩተር ላይ ለመቀጠል ይጫኑ ይቀጥሉ የሚለውን"
#: Control.ulf#OOO_CONTROL_250.LngText.text
msgid "{&TahomaBold10}Resuming the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&TahomaBold10}የመግጠሚያው አዋቂ በመቀጠል ላይ ለ [ProductName]"
#: Control.ulf#OOO_CONTROL_251.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_251.LngText.text"
@@ -1731,15 +1731,15 @@ msgstr "መሰረዣ"
#: Control.ulf#OOO_CONTROL_255.LngText.text
msgid "[ProductName] will be installed with the default components, including spelling dictionaries in all available languages."
-msgstr ""
+msgstr "[ProductName] ከነባር አካላቶቹ ጋር ይገጠማል ፡ የፊደል ማረሚያ መዝገበ ቃላትንም ይጨምራል ዝግጁ በሆኑ ቋንቋዎች በሙሉ"
#: Control.ulf#OOO_CONTROL_256.LngText.text
msgid "Choose which program features you want installed and where they will be installed. For example here you can select additional user interface languages or deselect unwanted dictionaries."
-msgstr ""
+msgstr "የትኛውን የፕሮግራም ገጽታ መግጠም እንደሚፈልጉ ይምረጡ እና የት ቦታ እንደሚገጠም ፡ ለምሳሌ እዚህ ተጨማሪ መጠቀሚያ ገጽታ ቋንቋዎች ወይንም የማይፈልጉትን መዝገበ ቃላት ማስወገድ ይችላሉ"
#: Control.ulf#OOO_CONTROL_257.LngText.text
msgid "Choose the setup type that best suits your needs."
-msgstr ""
+msgstr "እርስዎ የሚፈልጉትን የማሰናጃ አይነት ይምረጡ"
#: Control.ulf#OOO_CONTROL_258.LngText.text
msgid "Please select a setup type."
@@ -1791,11 +1791,11 @@ msgstr "የ Microsoft &Visio ሰነድ"
#: Control.ulf#OOO_CONTROL_274.LngText.text
msgid "Set [DEFINEDPRODUCT] to be the default application for Microsoft Office file types."
-msgstr ""
+msgstr "ማሰናጃ [DEFINEDPRODUCT] እንደ ነባር መተግበሪያ ለ Microsoft Office ፋይል አይነቶች"
#: Control.ulf#OOO_CONTROL_275.LngText.text
msgid "[ProductName] can be set as the default application to open Microsoft Office file types. This means, for instance, that if you double click on one of these files, [ProductName] will open it, not the program that opens it now."
-msgstr ""
+msgstr "[ProductName] እንደ ነባር መተግበሪያ ለመክፈቻ ያገለግላል የ Microsoft Office ፋይል አይነቶች ፡ ይህ ማለት ለምሳሌ ሁለት ጊዜ ከተጫኑ እንደነዚህ አይነት ፋይሎች ላይ [ProductName] ይከፍታቸዋል ፡ not the program that opens it now."
#: Control.ulf#OOO_CONTROL_278.LngText.text
msgid "{&MSSansBold8}File Type"
@@ -1803,19 +1803,19 @@ msgstr "{&MSSansBold8}የፋይል አይነት"
#: Control.ulf#OOO_CONTROL_300.LngText.text
msgid "A version of [DEFINEDPRODUCT] [DEFINEDVERSION] was found by the [ProductName] Installation Wizard. This version will be updated."
-msgstr ""
+msgstr "ይህ እትም [DEFINEDPRODUCT] [DEFINEDVERSION] ተገኝቷል በ [ProductName] መግጠሚያው አዋቂ ፡ ይህ እትም ይሻሻላል"
#: Control.ulf#OOO_CONTROL_301.LngText.text
msgid "The destination folder specified below does not contain a [DEFINEDPRODUCT] [DEFINEDVERSION] version."
-msgstr ""
+msgstr "የመድረሻው ፎልደር ከታች የተገለጸው አልያዘም ይህን [DEFINEDPRODUCT] [DEFINEDVERSION] እትም"
#: Control.ulf#OOO_CONTROL_302.LngText.text
msgid "A newer [DEFINEDPRODUCT] [DEFINEDVERSION] has been found."
-msgstr ""
+msgstr "አዲስ [DEFINEDPRODUCT] [DEFINEDVERSION] ተገኝቷል"
#: Control.ulf#OOO_CONTROL_303.LngText.text
msgid "The version specified in the folder below cannot be updated."
-msgstr ""
+msgstr "ይህ እትም ከታች በፎልደሩ የተገለጸውን ማሻሻል አይቻልም"
#: Control.ulf#OOO_CONTROL_304.LngText.text
msgid "Check the destination folder."
@@ -1823,15 +1823,15 @@ msgstr "የመድረሻ ፎልደሩን ይመርምሩ"
#: Control.ulf#OOO_CONTROL_305.LngText.text
msgid "To continue, click "
-msgstr "ይጫኑ ለመቀጠል"
+msgstr "ለመቀጠል ይጫኑ "
#: Control.ulf#OOO_CONTROL_306.LngText.text
msgid "To select a different version, click "
-msgstr "የተለየ እትም ለመምረጥ ይጫኑ"
+msgstr "የተለየ እትም ለመምረጥ ይጫኑ "
#: Control.ulf#OOO_CONTROL_307.LngText.text
msgid "To select a different folder, click "
-msgstr "የተለየ ፎልደር ለመምረጥ ይጫኑ"
+msgstr "የተለየ ፎልደር ለመምረጥ ይጫኑ "
#: Control.ulf#OOO_CONTROL_308.LngText.text
msgctxt "Control.ulf#OOO_CONTROL_308.LngText.text"
@@ -1840,35 +1840,35 @@ msgstr "መግጠሚያ [ProductName] ወደ :"
#: Control.ulf#OOO_CONTROL_309.LngText.text
msgid "If you are just trying out [ProductName], you probably don't want this to happen, so leave the boxes unchecked."
-msgstr ""
+msgstr "ይህን እየሞከሩ ከሆነ [ProductName] ምናልባት ይህን ማድረግ አያስፈልግም ፡ ስለዚህ በሳጥኑ ውስጥ ምልክት አያድርጉ"
#: Control.ulf#OOO_CONTROL_317.LngText.text
msgid "No languages have been selected for installation. Click OK, then select one or more languages for installation."
-msgstr ""
+msgstr "ምንም ቋንቋ ለመግጠም አልተመረጠም ፡ ይጫኑ እሺ የሚለውን ከዚያ አንድ ወይንም ከዚያ በላይ ቋንቋዎች ለመግጠም ይምረጡ"
#: Control.ulf#OOO_CONTROL_318.LngText.text
msgid "No applications have been selected for installation. Click OK, then select one or more applications for installation."
-msgstr ""
+msgstr "ምንም መተግበሪያ ለመግጠም አልተመረጠም ፡ ይጫኑ እሺ የሚለውን ከዚያ አንድ ወይንም ከዚያ በላይ መተግበሪያ ዎች ለመግጠም ይምረጡ"
#: Control.ulf#OOO_CONTROL_319.LngText.text
msgid "Create a start link on desktop"
-msgstr ""
+msgstr "የማስጀመሪያ አገናኝ በዴስክቶፕ ላይ ይፍጠሩ"
#: Control.ulf#OOO_CONTROL_320.LngText.text
msgid "Support assistive technology tools"
-msgstr ""
+msgstr "የ እርድታ ቴክኖሎጂ መሳሪያዎች የተደገፉ ናቸው"
#: Control.ulf#OOO_CONTROL_321.LngText.text
msgid "Load [ProductName] during system start-up"
-msgstr ""
+msgstr "ይጫን [ProductName] ስርአቱ በሚጀምር-ጊዜ"
#: ActionTe.ulf#OOO_ACTIONTEXT_1.LngText.text
msgid "Advertising application"
-msgstr ""
+msgstr "መተገበሪያውን አስተዋዋቂ"
#: ActionTe.ulf#OOO_ACTIONTEXT_2.LngText.text
msgid "Allocating registry space"
-msgstr ""
+msgstr "የመመዝገቢያ ቦታዎችን በመደልደል ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_3.LngText.text
msgid "Free space: [1]"
@@ -1884,7 +1884,7 @@ msgstr "ባህሪ: [1], ፊርማ: [2]"
#: ActionTe.ulf#OOO_ACTIONTEXT_6.LngText.text
msgid "Binding executables"
-msgstr ""
+msgstr "Binding executables"
#: ActionTe.ulf#OOO_ACTIONTEXT_7.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_7.LngText.text"
@@ -1893,17 +1893,16 @@ msgstr "ፋይል: [1]"
#: ActionTe.ulf#OOO_ACTIONTEXT_8.LngText.text
msgid "Creating IIS Virtual Roots..."
-msgstr "Creating IIS Virtual Roots..."
+msgstr "በመፍጠር ላይ IIS Virtual Roots..."
#: ActionTe.ulf#OOO_ACTIONTEXT_9.LngText.text
-#, fuzzy
msgid "Removing IIS Virtual Roots..."
-msgstr "Creating IIS Virtual Roots..."
+msgstr "በማስወገድ ላይ IIS Virtual Roots..."
#: ActionTe.ulf#OOO_ACTIONTEXT_10.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_10.LngText.text"
msgid "Searching for qualifying products"
-msgstr "Searching for qualifying products"
+msgstr "ብቁ እቃዎችን በመፈለግ ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_11.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_11.LngText.text"
@@ -1949,7 +1948,7 @@ msgstr "ፋይሎችን በድጋሚ በመፍጠር ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_20.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_20.LngText.text"
msgid "File: [1], Directory: [9], Size: [6]"
-msgstr "ፋይል: [1], ዳይሬክቶሪ: [9], መጠኑ: [6]"
+msgstr "ፋይል: [1], ዳይሬክቶሪ : [9], መጠኑ : [6]"
#: ActionTe.ulf#OOO_ACTIONTEXT_21.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_21.LngText.text"
@@ -1988,7 +1987,7 @@ msgstr "አዲስ ፋይሎችን ኮፒ በማድረግ ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_29.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_29.LngText.text"
msgid "File: [1], Directory: [9], Size: [6]"
-msgstr "ፋይል: [1], ዳይሬክቶሪ: [9], መጠኑ: [6]"
+msgstr "ፋይል: [1], ዳይሬክቶሪ : [9], መጠኑ : [6]"
#: ActionTe.ulf#OOO_ACTIONTEXT_30.LngText.text
msgid "Installing ODBC components"
@@ -2008,7 +2007,7 @@ msgstr "የስርአቱን catalog በመግጠም ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_34.LngText.text
msgid "File: [1], Dependencies: [2]"
-msgstr "ፋይል : [1], ጥገኝነት : [2]"
+msgstr "ፋይል : [1], ጥገኞች : [2]"
#: ActionTe.ulf#OOO_ACTIONTEXT_35.LngText.text
msgid "Validating install"
@@ -2020,11 +2019,11 @@ msgstr "የማስነሻ ሁኔታዎችን በመገምገም ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_37.LngText.text
msgid "Migrating feature states from related applications"
-msgstr ""
+msgstr "በማዘዋወር ላይ የገጽታ ሁኔታዎችን ከ ተዛመዱ መተግበሪያዎች"
#: ActionTe.ulf#OOO_ACTIONTEXT_38.LngText.text
msgid "Application: [1]"
-msgstr "መተግበሪያ: [1]"
+msgstr "መተግበሪያ : [1]"
#: ActionTe.ulf#OOO_ACTIONTEXT_39.LngText.text
msgid "Moving files"
@@ -2033,7 +2032,7 @@ msgstr "ፋይሎችን በማንቀሳቀስ ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_40.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_40.LngText.text"
msgid "File: [1], Directory: [9], Size: [6]"
-msgstr "ፋይል: [1], ዳይሬክቶሪ: [9], መጠኑ: [6]"
+msgstr "ፋይል : [1], ዳይሬክቶሪ : [9], መጠኑ : [6]"
#: ActionTe.ulf#OOO_ACTIONTEXT_41.LngText.text
msgid "Patching files"
@@ -2041,7 +2040,7 @@ msgstr "ፋይሎችን በመጠገን ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_42.LngText.text
msgid "File: [1], Directory: [2], Size: [3]"
-msgstr "ፋይል: [1], ዳይሬክቶሪ: [2], መጠኑ: [3]"
+msgstr "ፋይል : [1], ዳይሬክቶሪ : [2], መጠኑ : [3]"
#: ActionTe.ulf#OOO_ACTIONTEXT_43.LngText.text
msgid "Updating component registration"
@@ -2063,7 +2062,7 @@ msgstr "የውጤቶችን ገጽታ በማተም ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_47.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_47.LngText.text"
msgid "Feature: [1]"
-msgstr "ገጽታ: [1]"
+msgstr "ገጽታ : [1]"
#: ActionTe.ulf#OOO_ACTIONTEXT_48.LngText.text
msgid "Publishing product information"
@@ -2084,7 +2083,7 @@ msgstr "የ COM+ መተገበሪያዎችን እና አካላቶችን በመመ
#: ActionTe.ulf#OOO_ACTIONTEXT_52.LngText.text
msgid "AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}"
-msgstr ""
+msgstr "AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}"
#: ActionTe.ulf#OOO_ACTIONTEXT_53.LngText.text
msgid "Registering extension servers"
@@ -2093,7 +2092,7 @@ msgstr "ተጨማሪ ሰርቨሮች በመመዝገብ ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_54.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_54.LngText.text"
msgid "Extension: [1]"
-msgstr "ተጨማሪዎች: [1]"
+msgstr "ተጨማሪዎች : [1]"
#: ActionTe.ulf#OOO_ACTIONTEXT_55.LngText.text
msgid "Registering fonts"
@@ -2102,7 +2101,7 @@ msgstr "ፊደሎችን በመመዝገብ ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_56.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_56.LngText.text"
msgid "Font: [1]"
-msgstr "ፊደል: [1]"
+msgstr "ፊደል : [1]"
#: ActionTe.ulf#OOO_ACTIONTEXT_57.LngText.text
msgid "Registering MIME info"
@@ -2174,7 +2173,7 @@ msgstr "መተግበሪያዎችን በማስወገድ ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_72.LngText.text
msgid "Application: [1], Command line: [2]"
-msgstr "መተግበሪያ: [1], የትእዛዝ መስመር: [2]"
+msgstr "መተግበሪያ : [1], የትእዛዝ መስመር : [2]"
#: ActionTe.ulf#OOO_ACTIONTEXT_73.LngText.text
msgid "Removing files"
@@ -2183,7 +2182,7 @@ msgstr "ፋይሎችን በማስወገድ ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_74.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_74.LngText.text"
msgid "File: [1], Directory: [9]"
-msgstr "ፋይል: [1], ዳይሬክቶሪ: [9]"
+msgstr "ፋይል : [1], ዳይሬክቶሪ : [9]"
#: ActionTe.ulf#OOO_ACTIONTEXT_75.LngText.text
msgid "Removing folders"
@@ -2192,7 +2191,7 @@ msgstr "ፎልደሮችን በማስወገድ ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_76.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_76.LngText.text"
msgid "Folder: [1]"
-msgstr "ፎልደር: [1]"
+msgstr "ፎልደር : [1]"
#: ActionTe.ulf#OOO_ACTIONTEXT_77.LngText.text
msgid "Removing INI file entries"
@@ -2201,7 +2200,7 @@ msgstr "የ INI ፋሎች ማስገቢያን በማስወገድ ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_78.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_78.LngText.text"
msgid "File: [1], Section: [2], Key: [3], Value: [4]"
-msgstr "ፋይል: [1], ክፍል: [2], ቁልፍ: [3], ዋጋ: [4]"
+msgstr "ፋይል : [1], ክፍል : [2], ቁልፍ : [3], ዋጋ : [4]"
#: ActionTe.ulf#OOO_ACTIONTEXT_79.LngText.text
msgid "Removing ODBC components"
@@ -2227,7 +2226,7 @@ msgstr "አቋራጭ: [1]"
#: ActionTe.ulf#OOO_ACTIONTEXT_84.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_84.LngText.text"
msgid "Searching for qualifying products"
-msgstr "Searching for qualifying products"
+msgstr "የሚያሟሉትን እቃዎች በመፈለግ ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_85.LngText.text
msgid "Rolling back action:"
@@ -2249,25 +2248,25 @@ msgstr "ፋይል: [1]"
#: ActionTe.ulf#OOO_ACTIONTEXT_89.LngText.text
msgid "Registering modules"
-msgstr "Registering modules"
+msgstr "ክፍሎችን በመመዝገብ ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_90.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_90.LngText.text"
msgid "File: [1], Folder: [2]"
-msgstr "ፋይል: [1], ፎልደር: [2]"
+msgstr "ፋይል : [1], ፎልደር : [2]"
#: ActionTe.ulf#OOO_ACTIONTEXT_91.LngText.text
msgid "Unregistering modules"
-msgstr "Unregistering modules"
+msgstr "ክፍሎችን አለመመዝገብ"
#: ActionTe.ulf#OOO_ACTIONTEXT_92.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_92.LngText.text"
msgid "File: [1], Folder: [2]"
-msgstr "ፋይል: [1], ፎልደር: [2]"
+msgstr "ፋይል : [1], ፎልደር : [2]"
#: ActionTe.ulf#OOO_ACTIONTEXT_93.LngText.text
msgid "Initializing ODBC directories"
-msgstr "Initializing ODBC directories"
+msgstr "በማስነሳት ላይ የ ODBC ዳይሬክቶሪስ"
#: ActionTe.ulf#OOO_ACTIONTEXT_94.LngText.text
msgid "Starting services"
@@ -2276,7 +2275,7 @@ msgstr "ግልጋሎቶችን በማስጀመር ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_95.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_95.LngText.text"
msgid "Service: [1]"
-msgstr "ግልጋሎት: [1]"
+msgstr "ግልጋሎት : [1]"
#: ActionTe.ulf#OOO_ACTIONTEXT_96.LngText.text
msgid "Stopping services"
@@ -2285,7 +2284,7 @@ msgstr "ግልጋሎቶችን በማስቆም ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_97.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_97.LngText.text"
msgid "Service: [1]"
-msgstr "ግልጋሎት: [1]"
+msgstr "ግልጋሎት : [1]"
#: ActionTe.ulf#OOO_ACTIONTEXT_98.LngText.text
msgid "Removing moved files"
@@ -2294,7 +2293,7 @@ msgstr "የተንቀሳቀሱ ፋይሎችን በማስወገድ ላይ"
#: ActionTe.ulf#OOO_ACTIONTEXT_99.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_99.LngText.text"
msgid "File: [1], Directory: [9]"
-msgstr "ፋይል: [1], ዳይሬክቶሪ: [9]"
+msgstr "ፋይል : [1], ዳይሬክቶሪ : [9]"
#: ActionTe.ulf#OOO_ACTIONTEXT_100.LngText.text
msgid "Unpublishing Qualified Components"
@@ -2397,7 +2396,7 @@ msgstr "Writing INI file values"
#: ActionTe.ulf#OOO_ACTIONTEXT_122.LngText.text
msgctxt "ActionTe.ulf#OOO_ACTIONTEXT_122.LngText.text"
msgid "File: [1], Section: [2], Key: [3], Value: [4]"
-msgstr "ፋይል : [1], ክፍል: [2], ቁልፍ: [3], ዋጋ: [4]"
+msgstr "ፋይል : [1], ክፍል : [2], ቁልፍ : [3], ዋጋ : [4]"
#: ActionTe.ulf#OOO_ACTIONTEXT_123.LngText.text
msgid "Writing system registry values"
@@ -2405,4 +2404,4 @@ msgstr "Writing system registry values"
#: ActionTe.ulf#OOO_ACTIONTEXT_124.LngText.text
msgid "Key: [1], Name: [2], Value: [3]"
-msgstr "ቁልፍ: [1], ስም: [2], ዋጋ: [3]"
+msgstr "ቁልፍ : [1], ስም : [2], ዋጋ : [3]"
diff --git a/translations/source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po b/translations/source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
index 8e60dc3ba41..43f4d9af4f9 100644
--- a/translations/source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
+++ b/translations/source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+nlpsolver%2Fhelp%2Fen%2Fcom.sun.star.comp.Calc.NLPSolver.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-30 02:58+0200\n"
+"PO-Revision-Date: 2012-07-08 20:31+0200\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -65,11 +65,11 @@ msgstr "Use ACR Comparator"
#: Options.xhp#par_id0503200917103766.help.text
msgid "If <emph>disabled</emph> (default), the BCH Comparator is used. It compares two individuals by first looking at their constraint violations and only if those are equal, it measures their current solution."
-msgstr ""
+msgstr "ይህ <emph>ከተሰናከለ</emph> (በነባር), የ BCH Comparator is used. ሁለት ግለሰቦችን ያወዳድራል በመጀመሪያ ግዴታ የጣስውን እና እነዚህ እኩል ከሆኑ የአሁኑን ሁኔታ ይለካል"
#: Options.xhp#par_id0503200917103744.help.text
msgid "If <emph>enabled</emph>, the ACR Comparator is used. It compares two individuals dependent on the current iteration and measures their goodness with knowledge about the libraries worst known solutions (in regard to their constraint violations)."
-msgstr ""
+msgstr "ይህ <emph>ከተቻለ</emph>, የ ACR Comparator is used. ሁለት ግለሰቦችን ያወዳድራል ጥገኛ የሆኑ በአሁኑ ድግግሞሽ እና መለከያዎች ፡ ጥሩነታቸውን እውቀታቸውን ስለ መጻህፍት ቤት መጥፎ መፍትሄ (ቋሚ የማያቋርጥ ህግ መጣስ)."
#: Options.xhp#par_id0503200917103792.help.text
msgid "Use Random Starting Point"
@@ -133,7 +133,7 @@ msgstr "DE: Scaling Factor"
#: Options.xhp#par_id060320091039424.help.text
msgid "During crossover, the scaling factor decides about the “speed” of movement."
-msgstr ""
+msgstr "በሚያቋርጥ ጊዜ የመመጠኛ አካል ይወስናል “ፍጥነትን” ለእንቅስቃሴው"
#: Options.xhp#par_id060320091039421.help.text
msgid "PS: Constriction Coefficient"
@@ -141,7 +141,7 @@ msgstr "PS: Constriction Coefficient"
#: Options.xhp#par_id0603200910394225.help.text
msgid "… defines the speed at which the particles/individuals move towards each other."
-msgstr ""
+msgstr "… እያንዳንዱ / ቅንጣት ወደ እርስ በራሳቸው የሚያደርጉትን ጉዞ ፍጥነትን ይገልጻል"
#: Options.xhp#par_id0603200910394222.help.text
msgid "PS: Cognitive Constant"
@@ -195,7 +195,7 @@ msgstr "አጠቃቀም"
#: Usage.xhp#par_id0603200910430845.help.text
msgid "Regardless whether you use DEPS or SCO, you start by going to Tools → Solver and set the Cell to be optimized, the direction to go (minimization, maximization) and the cells to be modified to reach the goal. Then you go to the Options and specify the solver to be used and if necessary adjust the according <link href=\"com.sun.star.comp.Calc.NLPSolver/Options.xhp\">parameters</link>."
-msgstr ""
+msgstr "ለማንኛውም ይህን ከተጠቀሙ የ DEPS ወይንም SCO, እዚህ በመሄድ ይጀምሩ መሳሪያዎች → መፍትሄ ሰጪ እና አጥጋቢ ክፍሉን ማሰናጃ ፡ የሚሄድበት አቅጣጫ (ዝቅተኛ ፡ ከፍተኛ) እና የሚሻሻሉት ክፍሎች ግቡን እንዲመቱ ፡ ከዚያ ወደ ምርጫ ይሂዱ እና ይወስኑ መፍትሄ ሰጪውን ይጠቀሙ እንደሆን እንደ አስፈላጊነቱ ያስተካክሉ <link href=\"com.sun.star.comp.Calc.NLPSolver/Options.xhp\">parameters</link>."
#: Usage.xhp#par_id0603200910430821.help.text
msgid "There is also a list of constraints you can use to restrict the possible range of solutions or to penalize certain conditions. However, in case of the evolutionary solvers DEPS and SCO, these constraints are also used to specify bounds on the variables of the problem. Due to the random nature of the algorithms, it is <emph>highly recommended</emph> to do so and give upper (and in case \"Assume Non-Negative Variables\" is turned off also lower) bounds for all variables. They don't have to be near the actual solution (which is probably unknown) but should give a rough indication of the expected size (0 ≤ var ≤ 1 or maybe -1000000 ≤ var ≤ 1000000)."
@@ -203,4 +203,4 @@ msgstr ""
#: Usage.xhp#par_id0603200910430873.help.text
msgid "Bounds are specified by selecting one or more variables (as range) on the left side and entering a numerical value (not a cell or a formula) on the right side. That way you can also choose one or more variables to be <emph>Integer</emph> or <emph>Binary</emph> only."
-msgstr ""
+msgstr "መዝለያ የሚወሰነው አንድ ወይንም ከዚያ በላይ ተለዋዋጮችን በመምረጥ ነው (እንደ መጠን) በግራ በኩል እና የቁጥር ዋጋ በማስገባት (ክፍሎች ወይንም formula አይደለም) በቀኝ በኩል ፡ ስለዚህ መምረጥ ይችላሉ አንድ ወይንም ከዚያ በላይ ተለዋዋጮችን ወደ <emph>Integer</emph> ወይንም <emph>Binary</emph> ብቻ"
diff --git a/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po b/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
index 1b3bc2262cf..08c3724937c 100644
--- a/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+officecfg%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FUI.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-17 02:29+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-04 17:43+0200\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: WriterReportWindowState.xcu#..WriterReportWindowState.UIElements.States.private_resource/toolbar/standardbar.UIName.value.text
@@ -10238,6 +10238,10 @@ msgstr "C~onditional Formatting..."
msgid "Conditional Formatting..."
msgstr "C~onditional Formatting..."
+#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ConditionalFormatManagerDialog.Label.value.text
+msgid "Manage..."
+msgstr "ማስተዳደሪያ..."
+
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_Deselect.Label.value.text
msgid "Undo Selection"
msgstr "ምርጫውን መተው"
diff --git a/translations/source/am/readlicense_oo/docs/readme.po b/translations/source/am/readlicense_oo/docs/readme.po
index b7e20b612c3..5b496371a38 100644
--- a/translations/source/am/readlicense_oo/docs/readme.po
+++ b/translations/source/am/readlicense_oo/docs/readme.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+readlicense_oo%2Fdocs%2Freadme.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-23 14:44+0200\n"
+"PO-Revision-Date: 2012-07-09 04:59+0200\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,20 +12,20 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: readme.xrm#Welcome.Welcome.readmeitem.text
msgid "${PRODUCTNAME} ${PRODUCTVERSION} ReadMe"
-msgstr ""
+msgstr "${PRODUCTNAME} ${PRODUCTVERSION} አንብቡኝ"
#: readme.xrm#LatestUpdates.LatestUpdates.readmeitem.text
msgid "For latest updates to this readme file, see <a href=\"http://www.libreoffice.org/welcome/readme.html\">http://www.libreoffice.org/welcome/readme.html</a>"
-msgstr ""
+msgstr "ለዘመናዊ የተሻሻለ አንብቡኝ እትም ፋይል ይህን ይመልከቱ <a href=\"http://www.libreoffice.org/welcome/readme.html\">http://www.libreoffice.org/welcome/readme.html</a>"
#: readme.xrm#A6.A6.readmeitem.text
msgid "This file contains important information about the ${PRODUCTNAME} software. You are recommended to read this information very carefully before starting installation."
-msgstr ""
+msgstr "ይህ ፋይል አስፈላጊ መረጃ ይዟል ስለ ${PRODUCTNAME} ሶፍትዌር ፡ ሶፍትዌሩን ከመግጠምዎ በፊት ይህን መረጃ በጥንቃቄ እንዲያነቡ ይመከራሉ"
#: readme.xrm#A7.A7.readmeitem.text
msgid "The ${PRODUCTNAME} community is responsible for the development of this product, and invites you to consider participating as a community member. If you are a new user, you can visit the ${PRODUCTNAME} site, where you will find lots of information about the ${PRODUCTNAME} project and the communities that exist around it. Go to <a href=\"http://www.libreoffice.org/\">http://www.libreoffice.org/</a>."
@@ -33,7 +33,7 @@ msgstr ""
#: readme.xrm#A10.A10.readmeitem.text
msgid "Is ${PRODUCTNAME} Really Free for Any User?"
-msgstr ""
+msgstr "ይህ ${PRODUCTNAME} በእርግጥ ነፃ ነው ለማንኛውም ተጠቃሚ?"
#: readme.xrm#A11.A11.readmeitem.text
msgid "${PRODUCTNAME} is free for use by everybody. You may take this copy of ${PRODUCTNAME} and install it on as many computers as you like, and use it for any purpose you like (including commercial, government, public administration and educational use). For further details see the license text packaged with this ${PRODUCTNAME} download."
@@ -41,7 +41,7 @@ msgstr ""
#: readme.xrm#A12.A12.readmeitem.text
msgid "Why is ${PRODUCTNAME} Free for Any User?"
-msgstr ""
+msgstr "ለምን ${PRODUCTNAME} ነፃ ሆነ ለሁሉም ተጠቃሚ?"
#: readme.xrm#A13.A13.readmeitem.text
msgid "You can use this copy of ${PRODUCTNAME} free of charge because individual contributors and corporate sponsors have designed, developed, tested, translated, documented, supported, marketed, and helped in many other ways to make ${PRODUCTNAME} what it is today - the world's leading Open Source productivity software for home and office."
@@ -85,7 +85,7 @@ msgstr ""
#: readme.xrm#s2s3sdf2.s2s3sdf2.readmeitem.text
msgid "Microsoft Windows 2000 (Service Pack 4 or higher), XP, Vista, or Windows 7"
-msgstr ""
+msgstr "Microsoft Windows 2000 (Service Pack 4 or higher), XP, Vista, or Windows 7"
#: readme.xrm#utzu6.utzu6.readmeitem.text
msgid "Pentium compatible PC (Pentium III or Athlon recommended)"
@@ -93,7 +93,7 @@ msgstr ""
#: readme.xrm#ghuj67.ghuj67.readmeitem.text
msgid "256 MB RAM (512 MB RAM recommended)"
-msgstr ""
+msgstr "256 ሜባ RAM (512 ሜባ RAM ይመከራሉ)"
#: readme.xrm#jzjtzu6.jzjtzu6.readmeitem.text
msgid "Up to 1.5 GB available hard disk space"
@@ -101,11 +101,11 @@ msgstr "ከ 1.5 ጌ/ባ ያላነሰ የዲስክ ቦታ"
#: readme.xrm#jtzu56.jtzu56.readmeitem.text
msgid "1024x768 resolution (higher resolution recommended), at least 256 colors"
-msgstr ""
+msgstr "1024x768 resolution (higher resolution recommended), ቢያንስ 256 ቀለሞች"
#: readme.xrm#edssc3d.edssc3d.readmeitem.text
msgid "Please be aware that administrator rights are needed for the installation process."
-msgstr ""
+msgstr "እባክዎን ይጠንቀቁ የአስተዳዳሪ መብት ፍቃድ ያስፈልጋል የመግጠሚያውን ሂደት ለማስኬድ"
#: readme.xrm#MSOReg1.MSOReg1.readmeitem.text
msgid "Registration of ${PRODUCTNAME} as default application for Microsoft Office formats can be forced or suppressed by using the following command line switches with the installer:"
@@ -129,26 +129,25 @@ msgstr ""
#: readme.xrm#s2we35.s2we35.readmeitem.text
msgid "Linux Kernel version 2.6.18 or higher;"
-msgstr ""
+msgstr "Linux Kernel version 2.6.18 or higher;"
#: readme.xrm#s253we.s253we.readmeitem.text
msgid "glibc2 version 2.5 or higher;"
-msgstr ""
+msgstr "glibc2 version 2.5 or higher;"
#: readme.xrm#s256we.s256we.readmeitem.text
msgid "gtk version 2.10.4 or higher;"
-msgstr ""
+msgstr "gtk version 2.10.4 or higher;"
#: readme.xrm#s2etfseg.s2etfseg.readmeitem.text
msgid "Pentium compatible PC (Pentium III or Athlon recommended);"
-msgstr ""
+msgstr "Pentium compatible PC (Pentium III or Athlon recommended);"
#: readme.xrm#s2ssdfe.s2ssdfe.readmeitem.text
msgid "256 MB RAM (512 MB RAM recommended);"
-msgstr ""
+msgstr "256 ሜባ RAM (512 ሜባ RAM ይመከራሉ);"
#: readme.xrm#n42dfgf.n42dfgf.readmeitem.text
-#, fuzzy
msgid "Up to 1.55 GB available hard disk space;"
msgstr "ከ 800 ሜ/ባ ያላነሰ የዲስክ ቦታ"
@@ -207,16 +206,16 @@ msgstr ""
#: readme.xrm#debianinstall7.debianinstall7.readmeitem.text
msgctxt "readme.xrm#debianinstall7.debianinstall7.readmeitem.text"
msgid "cd desktop-integration"
-msgstr ""
+msgstr "cd desktop-integration"
#: readme.xrm#debianinstall8.debianinstall8.readmeitem.text
msgid "Now run the dpkg command again:"
-msgstr ""
+msgstr "Now run the dpkg command again:"
#: readme.xrm#debianinstall9.debianinstall9.readmeitem.text
msgctxt "readme.xrm#debianinstall9.debianinstall9.readmeitem.text"
msgid "sudo dpkg -i *.deb"
-msgstr ""
+msgstr "sudo dpkg -i *.deb"
#: readme.xrm#debianinstallA.debianinstallA.readmeitem.text
msgctxt "readme.xrm#debianinstallA.debianinstallA.readmeitem.text"
@@ -442,7 +441,7 @@ msgstr ""
#: readme.xrm#support.support.readmeitem.text
msgid "User Support"
-msgstr ""
+msgstr "የተጠቃሚ ድጋፍ"
#: readme.xrm#support1.support1.readmeitem.text
msgid "The main support page <a href=\"http://www.libreoffice.org/support/\">http://www.libreoffice.org/support/</a> offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at <a href=\"http://www.documentfoundation.org/nabble/\">http://www.documentfoundation.org/nabble/</a> or search the archives of the 'users@libreoffice.org' mailing list at <a href=\"http://www.libreoffice.org/lists/users/\">http://www.libreoffice.org/lists/users/</a>. Alternatively, you can send in your questions to <a href=\"mailto:users@libreoffice.org\">users@libreoffice.org</a>. If you like to subscribe to the list (to get email responses), send an empty mail to: <a href=\"mailto:users+subscribe@libreoffice.org\">users+subscribe@libreoffice.org</a>."
@@ -462,7 +461,7 @@ msgstr ""
#: readme.xrm#gettinginvolved1.gettinginvolved1.readmeitem.text
msgid "Getting Involved"
-msgstr ""
+msgstr "ይሳተፉ"
#: readme.xrm#gettinginvolved2.gettinginvolved2.readmeitem.text
msgid "The ${PRODUCTNAME} Community would very much benefit from your active participation in the development of this important open source project."
@@ -474,7 +473,7 @@ msgstr ""
#: readme.xrm#howtostart.howtostart.readmeitem.text
msgid "How to Start"
-msgstr ""
+msgstr "እንዴት ልጀምር"
#: readme.xrm#howtostart1.howtostart1.readmeitem.text
msgid "The best way to start contributing is to subscribe to one or more of the mailing lists, lurk for a while, and gradually use the mail archives to familiarize yourself with many of the topics covered since the ${PRODUCTNAME} source code was released back in October 2000. When you're comfortable, all you need to do is send an email self-introduction and jump right in. If you are familiar with Open Source Projects, check out our To-Dos list and see if there is anything you would like to help with at <a href=\"http://www.libreoffice.org/develop/\">http://www.libreoffice.org/develop/</a>."
@@ -490,7 +489,7 @@ msgstr ""
#: readme.xrm#subscribelist1.subscribelist1.readmeitem.text
msgid "News: announce@documentfoundation.org *recommended to all users* (light traffic)"
-msgstr ""
+msgstr "ዜናዎች : announce@documentfoundation.org *ለሁሉም ተጠቃሚዎች የሚመከር * (ቀላል መንገድ)"
#: readme.xrm#subscribelist2.subscribelist2.readmeitem.text
msgid "Main user list: users@global.libreoffice.org *easy way to lurk on discussions* (heavy traffic)"
diff --git a/translations/source/am/sc/source/ui/optdlg.po b/translations/source/am/sc/source/ui/optdlg.po
index b07219ef822..968d9971692 100644
--- a/translations/source/am/sc/source/ui/optdlg.po
+++ b/translations/source/am/sc/source/ui/optdlg.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: calcoptionsdlg.src#RID_SCDLG_FORMULA_CALCOPTIONS.FT_OPTION_EDIT_CAPTION.fixedtext.text
diff --git a/translations/source/am/sc/source/ui/pagedlg.po b/translations/source/am/sc/source/ui/pagedlg.po
index 18ed5427367..2eff7ab683d 100644
--- a/translations/source/am/sc/source/ui/pagedlg.po
+++ b/translations/source/am/sc/source/ui/pagedlg.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fpagedlg.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-25 20:11+0200\n"
+"PO-Revision-Date: 2012-07-03 16:41+0200\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -176,7 +176,7 @@ msgstr "- በሙሉ ወረቀት -"
#: pagedlg.src#RID_SCDLG_AREAS.LB_PRINTAREA.3.stringlist.text
msgctxt "pagedlg.src#RID_SCDLG_AREAS.LB_PRINTAREA.3.stringlist.text"
msgid "- user defined -"
-msgstr "- የተወሰነ ተጠቃሚ -"
+msgstr "- በተጠቃሚው የሚወሰን -"
#: pagedlg.src#RID_SCDLG_AREAS.LB_PRINTAREA.4.stringlist.text
msgid "- selection -"
@@ -204,7 +204,7 @@ msgstr "- ምንም -"
#: pagedlg.src#RID_SCDLG_AREAS.LB_REPEATROW.2.stringlist.text
msgctxt "pagedlg.src#RID_SCDLG_AREAS.LB_REPEATROW.2.stringlist.text"
msgid "- user defined -"
-msgstr "- የተወሰነ ተጠቃሚ -"
+msgstr "- በተጠቃሚው የሚወሰን -"
#: pagedlg.src#RID_SCDLG_AREAS.RB_REPEATROW.imagebutton.text
msgctxt "pagedlg.src#RID_SCDLG_AREAS.RB_REPEATROW.imagebutton.text"
@@ -228,7 +228,7 @@ msgstr "- ምንም -"
#: pagedlg.src#RID_SCDLG_AREAS.LB_REPEATCOL.2.stringlist.text
msgctxt "pagedlg.src#RID_SCDLG_AREAS.LB_REPEATCOL.2.stringlist.text"
msgid "- user defined -"
-msgstr "- የተወሰነ ተጠቃሚ -"
+msgstr "- በተጠቃሚው የሚወሰን -"
#: pagedlg.src#RID_SCDLG_AREAS.RB_REPEATCOL.imagebutton.text
msgctxt "pagedlg.src#RID_SCDLG_AREAS.RB_REPEATCOL.imagebutton.text"
diff --git a/translations/source/am/sc/source/ui/src.po b/translations/source/am/sc/source/ui/src.po
index e61219acf0e..0d6a825b3c2 100644
--- a/translations/source/am/sc/source/ui/src.po
+++ b/translations/source/am/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fsrc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-29 21:27+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-08 23:19+0200\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -4011,7 +4011,7 @@ msgstr "መጠን"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUB_TOTAL.5.string.text
msgid "The cells of the range which are to be taken into account."
-msgstr ""
+msgstr "የክፍሎቹ መጠን ግምት ውስጥ የሚገባበት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_INT.1.string.text
msgid "Rounds a number down to the nearest integer."
@@ -4149,7 +4149,7 @@ msgstr "ወደ ላይ የሚጠጋጋው ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CEIL.1.string.text
msgid "Rounds a number up to the nearest multiple of significance."
-msgstr ""
+msgstr "ቁጥሮችን ማጠጋጊያ ወደ ቅርቡ አስፈላጊ ያለ ቀሪ አካፋይ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CEIL.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CEIL.2.string.text"
@@ -4167,9 +4167,8 @@ msgid "Significance"
msgstr "አስፈላጊነቱ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CEIL.5.string.text
-#, fuzzy
msgid "The number to whose multiple the value is rounded."
-msgstr "The number to whose multiple the value is to be rounded down."
+msgstr "ቁጥሩ ያለ ቀሪ አካፋይ ዋጋ የሚጠጋጋው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CEIL.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CEIL.6.string.text"
@@ -4178,11 +4177,11 @@ msgstr "ዘዴ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CEIL.7.string.text
msgid "If given and not equal to zero then rounded up according to amount when a negative number and significance."
-msgstr ""
+msgstr "ከተሰጠ እና ከዜሮ እኩል ካልሆነ እንደ መጠኑ ይጠጋጋል አሉታዊ ቁጥርም እና እንደ አስፈላጊነቱ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR.1.string.text
msgid "Rounds number down to the nearest multiple of significance."
-msgstr ""
+msgstr "ቁጥሮችን ወደ ታች ማጠጋጊያ ወደ ቅርቡ አስፈላጊ ያለ ቀሪ አካፋይ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR.2.string.text"
@@ -4201,7 +4200,7 @@ msgstr "አስፈላጊነቱ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR.5.string.text
msgid "The number to whose multiple the value is to be rounded down."
-msgstr "The number to whose multiple the value is to be rounded down."
+msgstr "ቁጥሩ ያለ ቀሪ አካፋይ ዋጋ ወደ ታች የሚጠጋጋው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR.6.string.text"
@@ -4219,7 +4218,7 @@ msgstr "ትልቁ የጋራ አካፋይ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GGT.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GGT.2.string.text"
msgid "Integer "
-msgstr "Integer"
+msgstr "Integer "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GGT.3.string.text
msgid "Integer 1; integer 2,... are integers for which the greatest common divisor is to be calculated."
@@ -4240,7 +4239,7 @@ msgstr "Integer 1; integer 2,... are integers ትንሹ የጋራ አካፋይ
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_MAT_TRANS.1.string.text
msgid "Array transposition. Exchanges the rows and columns of an array."
-msgstr "Array transposition. Exchanges the rows and columns of an array."
+msgstr "ማዘጋጃ መቀየሪያ ፡ የረድፎች እና የአምዶች ማዘጋጃ ይቀያይራል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_MAT_TRANS.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_MAT_TRANS.2.string.text"
@@ -4309,24 +4308,23 @@ msgstr "Dimensions"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_MATRIX_UNIT.3.string.text
msgid "The size of the unitary array."
-msgstr ""
+msgstr "የጠቅላላ መጠኑ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_PRODUCT.1.string.text
msgid "(Inner products) Returns the sum of the products of array arguments."
-msgstr ""
+msgstr "(የውስጥ እቃዎች) የእቃዎችን ድምር ማዘጋጃ ክርክር ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_PRODUCT.2.string.text
msgid "Array "
msgstr "ማዘጋጃ "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_PRODUCT.3.string.text
-#, fuzzy
msgid "Array 1, array 2, ... are up to 30 arrays whose arguments are to be multiplied."
-msgstr "ማዘጋጃ 1, ማዘጋጃ 2, ... እስከ 30 ማዘጋጃ ናቸው ፡ ክርክሮቻው የሚባዙበት "
+msgstr "ማዘጋጃ 1, ማዘጋጃ 2, ... እስከ 30 ማዘጋጃ ናቸው ፡ ክርክሮቻቸው የሚባዙበት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2MY2.1.string.text
msgid "Returns the sum of the difference of squares of two arrays."
-msgstr ""
+msgstr "Returns the sum of the difference of squares of two arrays."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2MY2.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2MY2.2.string.text"
@@ -4336,7 +4334,7 @@ msgstr "ማዘጋጃ_x"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2MY2.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2MY2.3.string.text"
msgid "First array where the square of the arguments are totalled."
-msgstr ""
+msgstr "First array where the square of the arguments are totalled."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2MY2.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2MY2.4.string.text"
@@ -4345,11 +4343,11 @@ msgstr "ማዘጋጃ_y"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2MY2.5.string.text
msgid "Second array where the square of the arguments is to be subtracted."
-msgstr ""
+msgstr "Second array where the square of the arguments is to be subtracted."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2DY2.1.string.text
msgid "Returns the total of the square sum of two arrays."
-msgstr ""
+msgstr "Returns the total of the square sum of two arrays."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2DY2.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2DY2.2.string.text"
@@ -4359,7 +4357,7 @@ msgstr "ማዘጋጃ_x"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2DY2.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2DY2.3.string.text"
msgid "First array where the square of the arguments are totalled."
-msgstr ""
+msgstr "First array where the square of the arguments are totalled."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2DY2.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2DY2.4.string.text"
@@ -4368,11 +4366,11 @@ msgstr "ማዘጋጃ_y"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_X2DY2.5.string.text
msgid "Second array where the square of the arguments is to be totalled."
-msgstr ""
+msgstr "Second array where the square of the arguments is to be totalled."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_XMY2.1.string.text
msgid "Returns the sum of squares of differences of two arrays."
-msgstr ""
+msgstr "Returns the sum of squares of differences of two arrays."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_XMY2.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_XMY2.2.string.text"
@@ -4415,7 +4413,7 @@ msgstr "ክፍሎችን መስሪያ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RGP.1.string.text
msgid "Calculates parameters of the linear regression as an array."
-msgstr ""
+msgstr "Calculates parameters of the linear regression as an array."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RGP.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RGP.2.string.text"
@@ -4450,7 +4448,7 @@ msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RGP.8.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RGP.8.string.text"
msgid "stats"
-msgstr ""
+msgstr "stats"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RGP.9.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RGP.9.string.text"
@@ -4459,7 +4457,7 @@ msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RKP.1.string.text
msgid "Calculates the parameters of the exponential regression curve as an array."
-msgstr ""
+msgstr "Calculates the parameters of the exponential regression curve as an array."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RKP.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RKP.2.string.text"
@@ -4489,7 +4487,7 @@ msgstr "የተግባር_አይነት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RKP.7.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RKP.7.string.text"
msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x."
-msgstr "አይነቱ = 0 ከሆነ ተግባሩ የሚሰላው በዚህ ፎርሙላ ነው y=m^x, ወይንም በዚህ ተግባሮች y=b*m^x."
+msgstr "አይነቱ = 0 ከሆነ ተግባሩ የሚሰላው በዚህ ፎርሙላ ነው y=m^x, ወይንም በነዚህ ተግባሮች y=b*m^x."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RKP.8.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RKP.8.string.text"
@@ -4499,10 +4497,9 @@ msgstr "stats"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RKP.9.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RKP.9.string.text"
msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well."
-msgstr ""
+msgstr "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_TREND.1.string.text
-#, fuzzy
msgid "Calculates points along a regression line."
msgstr "ነጥቦችን ዝቅ በማድረጊያው መስመር አጠገብ ያሰላል"
@@ -4547,7 +4544,7 @@ msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GROWTH.1.string.text
msgid "Calculates points on the exponential regression function."
-msgstr ""
+msgstr "Calculates points on the exponential regression function."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GROWTH.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GROWTH.2.string.text"
@@ -4567,7 +4564,7 @@ msgstr "ዳታ_X"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GROWTH.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GROWTH.5.string.text"
msgid "The X data array as the basis for the regression."
-msgstr ""
+msgstr "የ X ዳታ ማዘጋጃ እንደ መሰረታዊ ዝቅ ማድረጊያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GROWTH.6.string.text
msgid "new_data_X"
@@ -4586,16 +4583,16 @@ msgstr "የተግባር_አይነት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GROWTH.9.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GROWTH.9.string.text"
msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x."
-msgstr ""
+msgstr "አይነቱ = 0 ከሆነ ተግባሩ የሚሰላው በዚህ ፎርሙላ ነው y=m^x, ወይንም በዚህ ተግባሮች y=b*m^x."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COUNT.1.string.text
msgid "Counts how many numbers are in the list of arguments."
-msgstr ""
+msgstr "ምን ያህል ቁጥሮች በክርክሮች ዝርዝር ውስጥ እንዳሉ ይቆጥራል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COUNT.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COUNT.2.string.text"
msgid "value "
-msgstr "ዋጋ"
+msgstr "ዋጋ "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COUNT.3.string.text
msgid "Value 1, value 2, ... are 1 to 30 arguments containing different data types but where only numbers are counted."
@@ -4629,7 +4626,7 @@ msgstr "ቁጥር 1, ቁጥር 2, ... ከ 1 እስከ 30 ከፍተኛው ቁጥ
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MAX_A.1.string.text
msgid "Returns the maximum value in a list of arguments. Text is evaluated as Zero."
-msgstr ""
+msgstr "ከዝርዝር ክርክሮች ውስጥ ከፍተኛውን ዋጋ ይመልሳል ፡ ጽሁፍ የሚገመተው እንደ ዜሮ ነው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MAX_A.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MAX_A.2.string.text"
@@ -4655,7 +4652,7 @@ msgstr "ቁጥር 1, ቁጥር 2, ... ከ 1 እስከ 30 ዝቅተኛው ቁጥ
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MIN_A.1.string.text
msgid "Returns the smallest value in a list of arguments. Text is evaluated as zero."
-msgstr ""
+msgstr "ከዝርዝር ክርክሮች ውስጥ አነስተኛውን ዋጋ ይመልሳል ፡ ጽሁፍ የሚገመተው እንደ ዜሮ ነው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MIN_A.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MIN_A.2.string.text"
@@ -4682,7 +4679,7 @@ msgstr "ቁጥር 1, ቁጥር 2, ... ከ 1 እስከ 30 የቁጥር ክርክ
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_A.1.string.text
msgid "Returns the variance based on a sample. Text is evaluated as zero."
-msgstr ""
+msgstr "ናሙናውን መሰረት ባደረግ ልዩነትን ይመልሳል ፡ ጽሁፍ የሚገመተው እንደ ዜሮ ነው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_A.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_A.2.string.text"
@@ -4692,11 +4689,11 @@ msgstr "ዋጋ "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_A.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_A.3.string.text"
msgid "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population."
-msgstr ""
+msgstr "ዋጋ 1; ዋጋ 2; ... ከ 1 እስከ 30 ከመሰረታዊ ጠቅላላ ሕዝቡ የተወሰዱ ናሙናን የሚወክሉ ክርክሮች ናቸው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P.1.string.text
msgid "Calculates variance based on the entire population."
-msgstr ""
+msgstr "ጠቅላላ ሕዝቡን በተመለከተ መሰረታዊ ልዩነቶችን ያሰላል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P.2.string.text"
@@ -4709,7 +4706,7 @@ msgstr "ቁጥር 1, ቁጥር 2, ... ከ 1 እስከ 30 ሕዝቡን የሚወ
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P_A.1.string.text
msgid "Returns the variance based on the entire population. Text is evaluated as zero."
-msgstr ""
+msgstr "ጠቅላላ ሕዝቡን መሰረት ባደረግ ልዩነትን ይመልሳል ፡ ጽሁፍ የሚገመተው እንደ ዜሮ ነው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P_A.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P_A.2.string.text"
@@ -4736,35 +4733,35 @@ msgstr "ቁጥር 1, ቁጥር 2, ... ከ 1 እስከ 30 የሕዝቡ ናሙና
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_A.1.string.text
msgid "Returns the standard deviation based on a sample. Text is evaluated as zero."
-msgstr ""
+msgstr "ናሙናውን መሰረት ባደረግ standard deviation ይመልሳል ፡ ጽሁፍ የሚገመተው እንደ ዜሮ ነው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_A.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_A.2.string.text"
msgid "value "
-msgstr "ዋጋ"
+msgstr "ዋጋ "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_A.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_A.3.string.text"
msgid "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population."
-msgstr ""
+msgstr "ዋጋ 1; ዋጋ 2; ... ከ 1 እስከ 30 ክርክሮች ከመሰረታዊ ጠቅላላ ሕዝቡን የሚወክሉ የተወሰደ ናሙና ናቸው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P.1.string.text
msgid "Calculates the standard deviation based on the entire population."
-msgstr ""
+msgstr "መሰረታዊ ልዩነቶችን ጠቅላላ ሕዝቡን በተመለከት ያሰላል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P.2.string.text"
msgid "number "
-msgstr "ቁጥር"
+msgstr "ቁጥር "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P.3.string.text"
msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population."
-msgstr ""
+msgstr "ቁጥር 1, ቁጥር 2, ... ከ 1 እስከ 30 የቁጥር ክርክሮች የሕዝቡን ናሙና የሚስሉ ናቸው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P_A.1.string.text
msgid "Returns the standard deviation based on the entire population. Text is evaluated as zero."
-msgstr ""
+msgstr "ጠቅላላ ሕዝቡን መሰረት ባደረገ standard deviation ይመልሳል ፡ ጽሁፍ የሚገመተው እንደ ዜሮ ነው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P_A.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P_A.2.string.text"
@@ -4818,7 +4815,7 @@ msgstr "ቁጥር 1, ቁጥር 2, ... ከ 1 እስከ 30 የቁጥር ክርክ
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_AVE_DEV.1.string.text
msgid "Returns the average of the absolute deviations of a sample from the mean."
-msgstr ""
+msgstr "Returns the average of the absolute deviations of a sample from the mean."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_AVE_DEV.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_AVE_DEV.2.string.text"
@@ -4857,45 +4854,45 @@ msgstr "ቁጥር 1, ቁጥር 2, ... ከ 1 እስከ 30 የቁጥር ክርክ
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GEO_MEAN.1.string.text
msgid "Returns the geometric mean of a sample."
-msgstr ""
+msgstr "የናሙናውን geometric mean ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GEO_MEAN.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GEO_MEAN.2.string.text"
msgid "number "
-msgstr "ቁጥር"
+msgstr "ቁጥር "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GEO_MEAN.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GEO_MEAN.3.string.text"
msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample."
-msgstr ""
+msgstr "ቁጥር 1, ቁጥር 2, ... ከ 1 እስከ 30 የቁጥር ክርክሮች ናሙናውን የሚስሉ ናቸው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_HAR_MEAN.1.string.text
msgid "Returns the harmonic mean of a sample."
-msgstr ""
+msgstr "የናሙናውን harmonic mean ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_HAR_MEAN.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_HAR_MEAN.2.string.text"
msgid "number "
-msgstr "ቁጥር"
+msgstr "ቁጥር "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_HAR_MEAN.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_HAR_MEAN.3.string.text"
msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample."
-msgstr ""
+msgstr "ቁጥር 1, ቁጥር 2, ... ከ 1 እስከ 30 የቁጥር ክርክሮች ናሙናውን የሚስሉ ናቸው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE.1.string.text
msgid "Returns the most common value in a sample."
-msgstr ""
+msgstr "ከናሙና ውስጥ በጣም የተለመደውን ዋጋ ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE.2.string.text"
msgid "number "
-msgstr "ቁጥር"
+msgstr "ቁጥር "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE.3.string.text"
msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample."
-msgstr ""
+msgstr "ቁጥር 1, ቁጥር 2, ... ከ 1 እስከ 30 የቁጥር ክርክሮች ናሙናውን የሚስሉ ናቸው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MEDIAN.1.string.text
msgid "Returns the median of a given sample."
@@ -4904,12 +4901,12 @@ msgstr "የተሰጠውን ናሙና አማካይ ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MEDIAN.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MEDIAN.2.string.text"
msgid "number "
-msgstr "ቁጥር"
+msgstr "ቁጥር "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MEDIAN.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MEDIAN.3.string.text"
msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample."
-msgstr ""
+msgstr "ቁጥር 1, ቁጥር 2, ... ከ 1 እስከ 30 የቁጥር ክርክሮች ናሙናውን የሚስሉ ናቸው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERCENTILE.1.string.text
msgid "Returns the alpha quantile of a sample."
@@ -4932,7 +4929,7 @@ msgstr "Alpha"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERCENTILE.5.string.text
msgid "The percentage rate of the quantile between 0 and 1."
-msgstr ""
+msgstr "የፐርሰንቱ መጠን quantile በ 0 እና 1 መካከል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_QUARTILE.1.string.text
msgid "Returns the quartile of a sample."
@@ -4974,16 +4971,16 @@ msgstr "በናሙና ውስጥ የዳታ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LARGE.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LARGE.4.string.text"
msgid "Rank_c"
-msgstr ""
+msgstr "ደረጃ_c"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LARGE.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LARGE.5.string.text"
msgid "The ranking of the value."
-msgstr ""
+msgstr "የዋጋዎች ደረጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SMALL.1.string.text
msgid "Returns the k-th smallest value of a sample."
-msgstr ""
+msgstr "Returns the k-th smallest value of a sample."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SMALL.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SMALL.2.string.text"
@@ -4998,7 +4995,7 @@ msgstr "በናሙና ውስጥ የዳታ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SMALL.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SMALL.4.string.text"
msgid "Rank_c"
-msgstr ""
+msgstr "ደረጃ_c"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SMALL.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SMALL.5.string.text"
@@ -5007,7 +5004,7 @@ msgstr "የዋጋ ደረጃ አሰጣጥ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERCENT_RANK.1.string.text
msgid "Returns the percentage rank of a value in a sample."
-msgstr ""
+msgstr "ከናሙና ውስጥ በፐርሰንት ደረጃውን ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERCENT_RANK.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERCENT_RANK.2.string.text"
@@ -5025,13 +5022,12 @@ msgid "value"
msgstr "ዋጋ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PERCENT_RANK.5.string.text
-#, fuzzy
msgid "The value for which percentage ranking is to be determined."
msgstr "The value for which the arctangent is to be returned."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK.1.string.text
msgid "Returns the ranking of a value in a sample."
-msgstr ""
+msgstr "ከናሙና ውስጥ የደረጃውን ዋጋ ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK.2.string.text"
@@ -5059,11 +5055,11 @@ msgstr "አይነት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RANK.7.string.text
msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending."
-msgstr ""
+msgstr "የቅደም ተከተል ደንብ : 0 ወይንም ከተዘለለ እየቀነስ የሚሄድ ማለት ነው ፡ ሌላ የተለየ ዋጋ ከ 0 ሌላ እየጨመረ የሚሄድ ማለት ነው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_TRIM_MEAN.1.string.text
msgid "Returns the mean of a sample without including the marginal values."
-msgstr ""
+msgstr "የናሙናውን አማካይ marginal values ሳያካትት ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_TRIM_MEAN.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_TRIM_MEAN.2.string.text"
@@ -5082,7 +5078,7 @@ msgstr "Alpha"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_TRIM_MEAN.5.string.text
msgid "The percentage of marginal data that is not to be taken into account."
-msgstr ""
+msgstr "The percentage of marginal data that is not to be taken into account."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PROB.1.string.text
msgid "Returns the discreet probability of an interval."
@@ -5099,11 +5095,11 @@ msgstr "የናሙና ዳታ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PROB.4.string.text
msgid "probability"
-msgstr ""
+msgstr "ምናልባት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PROB.5.string.text
msgid "The array of the associated probabilities."
-msgstr ""
+msgstr "የተዛመዱ ምናልባቶች ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PROB.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PROB.6.string.text"
@@ -5176,8 +5172,9 @@ msgid "The value for which the standard normal distribution is to be calculated.
msgstr "The value for which the hyperbolic sine is to be calculated."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAUSS.1.string.text
+#, fuzzy
msgid "Returns the integral values of the standard normal cumulative distribution."
-msgstr ""
+msgstr "Returns the integral values of the standard normal cumulative distribution."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAUSS.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAUSS.2.string.text"
@@ -5199,11 +5196,11 @@ msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FISHER.3.string.text
msgid "The value to be transformed (-1 < VALUE < 1)."
-msgstr ""
+msgstr "የሚቀየረው ዋጋ (-1 < VALUE < 1)."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FISHER_INV.1.string.text
msgid "Returns the inverse of the Fisher transformation."
-msgstr ""
+msgstr "Returns the inverse of the Fisher transformation."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FISHER_INV.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FISHER_INV.2.string.text"
@@ -5267,7 +5264,7 @@ msgstr "X"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_VERT.3.string.text
msgid "The number of failures in the trial range."
-msgstr "The number of failures in the trial range."
+msgstr "ከተከታታይ ሙከራዎች ያልተሳካው ቁጥር መጠን"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_VERT.4.string.text
msgid "R"
@@ -5275,7 +5272,7 @@ msgstr "R"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_VERT.5.string.text
msgid "The number of successes in the trial sequence."
-msgstr "ከተከታታይ ሙከራዎች የተሳካው ቁጥር"
+msgstr "ከተከታታይ ሙከራዎች የተሳካው ቁጥር መጠን"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_VERT.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NEG_BINOM_VERT.6.string.text"
@@ -5345,7 +5342,7 @@ msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_POISSON_DIST.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_POISSON_DIST.6.string.text"
msgid "Cumulative"
-msgstr ""
+msgstr "የተጠራቀመው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_POISSON_DIST.7.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_POISSON_DIST.7.string.text"
@@ -5372,7 +5369,7 @@ msgstr "አማካይ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_DIST.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_DIST.5.string.text"
msgid "The mean value. The mean value of the normal distribution."
-msgstr ""
+msgstr "አማካይ ዋጋ ፡ የመደበኛ ስርጭቱ አማካይ ዋጋ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_DIST.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_DIST.6.string.text"
@@ -5415,7 +5412,7 @@ msgstr "አማካይ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV.5.string.text"
msgid "The mean value. The mean value of the normal distribution."
-msgstr ""
+msgstr "አማካይ ዋጋ ፡ የመደበኛ ስርጭት አማካይ ዋጋ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV.6.string.text"
@@ -5488,7 +5485,7 @@ msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST.8.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST.8.string.text"
msgid "Cumulative"
-msgstr ""
+msgstr "የተጠራቀመ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST.9.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_NORM_DIST.9.string.text"
@@ -5496,9 +5493,8 @@ msgid "0 or FALSE calculates the probability density function. Any other value o
msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV.1.string.text
-#, fuzzy
msgid "Values of the inverse of the lognormal distribution."
-msgstr "መደበኛ የስርጭት ዋጋዎች"
+msgstr "Values of the inverse of the lognormal distribution."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV.2.string.text"
@@ -5592,7 +5588,7 @@ msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST.8.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST.8.string.text"
msgid "Cumulative"
-msgstr ""
+msgstr "የተጠራቀመ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST.9.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_DIST.9.string.text"
@@ -5600,9 +5596,8 @@ msgid "0 or FALSE calculates the probability density function. Any other value o
msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV.1.string.text
-#, fuzzy
msgid "Values of the inverse gamma distribution."
-msgstr "መደበኛ የስርጭት ዋጋዎች"
+msgstr "Values of the inverse gamma distribution."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV.2.string.text"
@@ -5654,14 +5649,12 @@ msgid "Number"
msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA.3.string.text
-#, fuzzy
msgid "The value for which the Gamma function is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "The value for which the Gamma function is to be calculated."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST.1.string.text
-#, fuzzy
msgid "Values of the beta distribution."
-msgstr "መደበኛ የስርጭት ዋጋዎች"
+msgstr "Values of the beta distribution."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST.2.string.text"
@@ -5669,9 +5662,8 @@ msgid "number"
msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST.3.string.text
-#, fuzzy
msgid "The value for which the beta distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "The value for which the beta distribution is to be calculated."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST.4.string.text"
@@ -5716,16 +5708,15 @@ msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST.12.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST.12.string.text"
msgid "Cumulative"
-msgstr ""
+msgstr "የተጠራቀመ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_DIST.13.string.text
msgid "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function."
msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV.1.string.text
-#, fuzzy
msgid "Values of the inverse beta distribution."
-msgstr "መደበኛ የስርጭት ዋጋዎች"
+msgstr "Values of the inverse beta distribution."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV.2.string.text"
@@ -5764,7 +5755,7 @@ msgstr "መጀመሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV.9.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV.9.string.text"
msgid "The starting value for the value interval of the distribution."
-msgstr ""
+msgstr "የመጀመሪያው ዋጋ ለዋጋው ክፍተት ስርጭት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV.10.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV.10.string.text"
@@ -5786,9 +5777,8 @@ msgid "Number"
msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_WEIBULL.3.string.text
-#, fuzzy
msgid "The value for which the Weibull distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "The value for which the Weibull distribution is to be calculated."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_WEIBULL.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_WEIBULL.4.string.text"
@@ -5819,9 +5809,8 @@ msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_HYP_GEOM_DIST.1.string.text
-#, fuzzy
msgid "Values of the hypergeometric distribution."
-msgstr "መደበኛ የስርጭት ዋጋዎች"
+msgstr "Values of the hypergeometric distribution."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_HYP_GEOM_DIST.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_HYP_GEOM_DIST.2.string.text"
@@ -5845,17 +5834,16 @@ msgid "successes"
msgstr "ተሳክቷል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_HYP_GEOM_DIST.7.string.text
-#, fuzzy
msgid "The number of successes in the population."
-msgstr "የተሳካው ቁጥር ከናሙና"
+msgstr "The number of successes in the population."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_HYP_GEOM_DIST.8.string.text
msgid "n_population"
-msgstr ""
+msgstr "n_ሕዝቡ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_HYP_GEOM_DIST.9.string.text
msgid "The population size."
-msgstr ""
+msgstr "የሕዝቡ መጠን"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_DIST.1.string.text
msgid "Returns the t-distribution."
@@ -5867,9 +5855,8 @@ msgid "Number"
msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_DIST.3.string.text
-#, fuzzy
msgid "The value for which the T distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "The value for which the T distribution is to be calculated."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_DIST.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_DIST.4.string.text"
@@ -5891,9 +5878,8 @@ msgid "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution."
msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV.1.string.text
-#, fuzzy
msgid "Values of the inverse t-distribution."
-msgstr "መደበኛ የስርጭት ዋጋዎች"
+msgstr "Values of the inverse t-distribution."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV.2.string.text"
@@ -5915,9 +5901,8 @@ msgid "The degrees of freedom of the T distribution."
msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_DIST.1.string.text
-#, fuzzy
msgid "Values of the F probability distribution."
-msgstr "መደበኛ የስርጭት ዋጋዎች"
+msgstr "Values of the F probability distribution."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_DIST.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_DIST.2.string.text"
@@ -5925,9 +5910,8 @@ msgid "Number"
msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_DIST.3.string.text
-#, fuzzy
msgid "The value for which the F distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "The value for which the F distribution is to be calculated."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_DIST.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_DIST.4.string.text"
@@ -5950,9 +5934,8 @@ msgid "The degrees of freedom in the denominator of the F distribution."
msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV.1.string.text
-#, fuzzy
msgid "Values of the inverse F distribution."
-msgstr "መደበኛ የስርጭት ዋጋዎች"
+msgstr "Values of the inverse F distribution."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV.2.string.text"
@@ -5993,9 +5976,8 @@ msgid "Number"
msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_DIST.3.string.text
-#, fuzzy
msgid "The value for which the chi square distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "The value for which the chi square distribution is to be calculated."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_DIST.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_DIST.4.string.text"
@@ -6032,7 +6014,7 @@ msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST.6.string.text"
msgid "Cumulative"
-msgstr ""
+msgstr "የተጠራቀመ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST.7.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_DIST.7.string.text"
@@ -6068,7 +6050,7 @@ msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_INV.2.string.text
msgid "Probability"
-msgstr ""
+msgstr "ምናልባት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHISQ_INV.3.string.text
msgid "The probability value for which the inverse of the chi square distribution is to be calculated."
@@ -6117,7 +6099,7 @@ msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VARIATIONEN.1.string.text
msgid "Returns the number of permutations for a given number of elements without repetition."
-msgstr ""
+msgstr "Returns the number of permutations for a given number of elements without repetition."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VARIATIONEN.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VARIATIONEN.2.string.text"
@@ -6161,7 +6143,7 @@ msgstr "መቁጠሪያ_2"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VARIATIONEN_2.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VARIATIONEN_2.5.string.text"
msgid "The selection number taken from the elements."
-msgstr ""
+msgstr "ከአካላቶቹ የተወሰደው የተመረጠው ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONFIDENCE.1.string.text
msgid "Returns a (1 alpha) confidence interval for a normal distribution."
@@ -6191,7 +6173,7 @@ msgstr "መጠን"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONFIDENCE.7.string.text
msgid "The size of the population."
-msgstr ""
+msgstr "የሕዝቡ መጠን"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_Z_TEST.1.string.text
msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample."
@@ -6232,21 +6214,19 @@ msgstr "ዳታ_B"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_TEST.3.string.text
msgid "The observed data array."
-msgstr "የታየው የዳታ አሰላለፍ"
+msgstr "የታየው የዳታ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_TEST.4.string.text
msgid "data_E"
msgstr "ዳታ_E"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_TEST.5.string.text
-#, fuzzy
msgid "The expected data array."
-msgstr "የታየው የዳታ አሰላለፍ"
+msgstr "የሚጠበቀው የዳታ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_TEST.1.string.text
-#, fuzzy
msgid "Calculates the F test."
-msgstr "የ T ሙከራ ማስሊያ"
+msgstr "የ F ሙከራ ያሰላል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_TEST.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_TEST.2.string.text"
@@ -6256,7 +6236,7 @@ msgstr "ዳታ_1"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_TEST.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_TEST.3.string.text"
msgid "The first record array."
-msgstr "የመጀመሪያውን መዝገብ ማሰለፊያ"
+msgstr "የመጀመሪያው መዝገብ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_TEST.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_TEST.4.string.text"
@@ -6266,11 +6246,11 @@ msgstr "ዳታ_2"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_TEST.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_TEST.5.string.text"
msgid "The second record array."
-msgstr "የሁለተኛውን መዝገብ ማሰለፊያ"
+msgstr "የሁለተኛው መዝገብ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST.1.string.text
msgid "Calculates the T test."
-msgstr "የ T ሙከራ ማስሊያ"
+msgstr "የ T ሙከራን ያሰላል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST.2.string.text"
@@ -6280,7 +6260,7 @@ msgstr "ዳታ_1"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST.3.string.text"
msgid "The first record array."
-msgstr "የመጀመሪያውን መዝገብ ማሰለፊያ"
+msgstr "የመጀመሪያው መዝገብ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST.4.string.text"
@@ -6290,7 +6270,7 @@ msgstr "ዳታ_2"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST.5.string.text"
msgid "The second record array."
-msgstr "የሁለተኛውን መዝገብ ማሰለፊያ"
+msgstr "የሁለተኛው መዝገብ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_TEST.6.string.text"
@@ -6311,9 +6291,8 @@ msgid "The type of the T test."
msgstr "የ T ሙከራ አይነት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RSQ.1.string.text
-#, fuzzy
msgid "Returns the square of the Pearson product moment correlation coefficient."
-msgstr "Returns the Pearson product moment correlation coefficient."
+msgstr "Returns the square of the Pearson product moment correlation coefficient."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RSQ.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RSQ.2.string.text"
@@ -6323,7 +6302,7 @@ msgstr "ዳታ_Y"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RSQ.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RSQ.3.string.text"
msgid "The Y data array."
-msgstr "የ Y ዳታ ማሰለፊያ"
+msgstr "የ Y ዳታ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RSQ.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RSQ.4.string.text"
@@ -6336,7 +6315,6 @@ msgid "The X data array."
msgstr "የ X ዳታ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INTERCEPT.1.string.text
-#, fuzzy
msgid "Returns the intercept of the linear regression line and the Y axis."
msgstr "Returns the intercept of the linear regression line and the Y axis."
@@ -6361,7 +6339,6 @@ msgid "The X data array."
msgstr "የ X ዳታ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SLOPE.1.string.text
-#, fuzzy
msgid "Returns the slope of the linear regression line."
msgstr "Returns the slope of the linear regression line."
@@ -6386,7 +6363,6 @@ msgid "The X data array."
msgstr "የ X ዳታ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STEYX.1.string.text
-#, fuzzy
msgid "Returns the standard error of the linear regression."
msgstr "Returns the standard error of the linear regression."
@@ -6411,7 +6387,6 @@ msgid "The X data array."
msgstr "የ X ዳታ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PEARSON.1.string.text
-#, fuzzy
msgid "Returns the Pearson product moment correlation coefficient."
msgstr "Returns the Pearson product moment correlation coefficient."
@@ -6436,7 +6411,6 @@ msgid "The second record array."
msgstr "የሁለተኛውን መዝገብ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CORREL.1.string.text
-#, fuzzy
msgid "Returns the correlation coefficient."
msgstr "Returns the correlation coefficient."
@@ -6448,7 +6422,7 @@ msgstr "ዳታ_1"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CORREL.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CORREL.3.string.text"
msgid "The first record array."
-msgstr "የመጀመሪያውን መዝገብ ማዘጋጃ"
+msgstr "የመጀመሪያው መዝገብ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CORREL.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CORREL.4.string.text"
@@ -6458,10 +6432,9 @@ msgstr "ዳታ_2"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CORREL.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CORREL.5.string.text"
msgid "The second record array."
-msgstr "የሁለታኛውን መዝገብ ማዘጋጃ"
+msgstr "የሁለታኛው መዝገብ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COVAR.1.string.text
-#, fuzzy
msgid "Calculates the covariance."
msgstr "Calculates the covariance."
@@ -6473,7 +6446,7 @@ msgstr "ዳታ_1"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COVAR.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COVAR.3.string.text"
msgid "The first record array."
-msgstr "የመጀመሪያውን መዝገብ ማዘጋጃ"
+msgstr "የመጀመሪያው መዝገብ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COVAR.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COVAR.4.string.text"
@@ -6483,10 +6456,9 @@ msgstr "ዳታ_2"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COVAR.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COVAR.5.string.text"
msgid "The second record array."
-msgstr "የሁለተኛውን መዝገብ ማዘጋጃ"
+msgstr "የሁለተኛው መዝገብ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FORECAST.1.string.text
-#, fuzzy
msgid "Returns a value along a linear regression"
msgstr "Returns a value along a linear regression"
@@ -6497,7 +6469,7 @@ msgstr "ዋጋ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FORECAST.3.string.text
msgid "The X value for which the Y value on the regression linear is to be calculated."
-msgstr ""
+msgstr "የ X ዋጋ ለ Y ዋጋ በ regression linear የሚሰላበት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FORECAST.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FORECAST.4.string.text"
@@ -6520,9 +6492,8 @@ msgid "The X data array."
msgstr "የ X ዳታ ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS.1.string.text
-#, fuzzy
msgid "Returns the reference to a cell as text."
-msgstr "Returns the reference to a cell as text."
+msgstr "ወደ ክፍሉ ማመሳከሪያውን እንደ ጽሁፍ ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS.2.string.text"
@@ -6547,7 +6518,6 @@ msgid "ABS"
msgstr "ABS"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS.7.string.text
-#, fuzzy
msgid "Specifies whether absolute or relative referencing is to be used."
msgstr "Specifies whether absolute or relative referencing is to be used."
@@ -6557,7 +6527,6 @@ msgid "A1"
msgstr "A1"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS.9.string.text
-#, fuzzy
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS.9.string.text"
msgid "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style."
msgstr "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style."
@@ -6570,7 +6539,7 @@ msgstr "ወረቀት"
#. previously to OOo3.0 this was String resource RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS 9
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS.11.string.text
msgid "The spreadsheet name of the cell reference."
-msgstr ""
+msgstr "የክፍሉ ማመሳከሪያ ሰንጠረዥ ስም"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_AREAS.1.string.text
msgid "Returns the number of individual ranges that belong to a (multiple) range."
@@ -6584,7 +6553,7 @@ msgstr "ማመሳከሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_AREAS.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_AREAS.3.string.text"
msgid "The reference to a (multiple) range."
-msgstr ""
+msgstr "ማመሳከሪያ ለ (በርካታ) መጠን"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHOSE.1.string.text
msgid "Selects a value from a list of up to 30 value arguments."
@@ -6602,15 +6571,15 @@ msgstr "የዋጋው ማውጫ ከ (1..30) የተመረጠው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHOSE.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHOSE.4.string.text"
msgid "value "
-msgstr "ዋጋ"
+msgstr "ዋጋ "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHOSE.5.string.text
msgid "Value 1, value 2,... The list of arguments from which a value is chosen."
-msgstr ""
+msgstr "ዋጋ 1, ዋጋ 2,... ዋጋው የሚመረጥበት የክርክሮች ዝርዝር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COLUMN.1.string.text
msgid "Returns the internal column number of a reference."
-msgstr ""
+msgstr "የማመሳከሪያውን የውስጥ አምድ ቁጥር ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COLUMN.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COLUMN.2.string.text"
@@ -6620,11 +6589,11 @@ msgstr "ማመሳከሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COLUMN.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COLUMN.3.string.text"
msgid "The reference to a cell or a range."
-msgstr ""
+msgstr "የክፍሉ ማመሳከሪያ ወይንም መጠን"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ROW.1.string.text
msgid "Defines the internal row number of a reference."
-msgstr ""
+msgstr "የማመሳከሪያውን የውስጥ ረድፍ ቁጥር መግለጫ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ROW.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ROW.2.string.text"
@@ -6634,7 +6603,7 @@ msgstr "ማመሳከሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ROW.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ROW.3.string.text"
msgid "The reference to a cell or a range."
-msgstr ""
+msgstr "የክፍሉ ማመሳከሪያ ወይንም መጠን"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_TABLE.1.string.text
msgid "Returns the internal sheet number of a reference or a string."
@@ -6651,7 +6620,7 @@ msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COLUMNS.1.string.text
msgid "Returns the number of columns in an array or reference."
-msgstr ""
+msgstr "የአምዶችን ቁጥር ማዘጋጃ ወይንም ማመሳከሪያ ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COLUMNS.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COLUMNS.2.string.text"
@@ -6660,11 +6629,11 @@ msgstr "ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COLUMNS.3.string.text
msgid "The array (reference) for which the number of columns is to be determined."
-msgstr ""
+msgstr "የማዘጋጃ (ማመሳከሪያ) የአምዶች ቁጥር የሚወሰንበት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ROWS.1.string.text
msgid "Returns the number of rows in a reference or array."
-msgstr ""
+msgstr "የረድፎችን ቁጥር ማዘጋጃ ወይንም ማመሳከሪያ ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ROWS.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ROWS.2.string.text"
@@ -6673,11 +6642,11 @@ msgstr "ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ROWS.3.string.text
msgid "The array (reference) for which the number of rows is to be determined."
-msgstr ""
+msgstr "የማዘጋጃ (ማመሳከሪያ) የረድፎች ቁጥር የሚወሰንበት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_TABLES.1.string.text
msgid "Returns the number of sheets of a given reference. If no parameter has been entered, the total number of sheets in the document is returned."
-msgstr ""
+msgstr "የወረቀቶችን ቁጥር ለተሰጠው ማመሳከሪያ ይመልሳል ፡ ምንም parameter ካልገባ የጠቅላላ ወረቀቶቹን ቁጥር በሰነዱ ውስጥ ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_TABLES.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_TABLES.2.string.text"
@@ -6687,11 +6656,11 @@ msgstr "ማመሳከሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_TABLES.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_TABLES.3.string.text"
msgid "The reference to a cell or a range."
-msgstr ""
+msgstr "ማመሳከሪያ ለክፍሉ ወይንም መጠን"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_H_LOOKUP.1.string.text
msgid "Horizontal search and reference to the cells located below."
-msgstr ""
+msgstr "በአግድም መፈለጊያ እና ማመሳከሪያ ከታች ላሉት ክፍሎች"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_H_LOOKUP.2.string.text
msgid "search_criteria"
@@ -6708,7 +6677,7 @@ msgstr "ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_H_LOOKUP.5.string.text
msgid "The array or the range for the reference."
-msgstr ""
+msgstr "ለማመሳከሪያው ማዘጋጃ ወይንም መጠን"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_H_LOOKUP.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_H_LOOKUP.6.string.text"
@@ -6725,11 +6694,11 @@ msgstr "ተለይቷል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_H_LOOKUP.9.string.text
msgid "If the value is TRUE or not given, the search row of the array must be sorted in ascending order."
-msgstr ""
+msgstr "ዋጋው እውነት ክሆነ ወይንም ካልተሰጠ ፡ የረድፍ ፍለጋው ማዘጋጃ የሚለየው እየጨመረ በሚሄድ ደንብ ነው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_V_LOOKUP.1.string.text
msgid "Vertical search and reference to indicated cells."
-msgstr ""
+msgstr "በቁመት መፈለጊያ እና ማመሳከሪያ ለተጠቆሙት ክፍሎች"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_V_LOOKUP.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_V_LOOKUP.2.string.text"
@@ -6737,18 +6706,17 @@ msgid "Search criterion"
msgstr "መፈለጊያ ደንብ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_V_LOOKUP.3.string.text
-#, fuzzy
msgid "The value to be found in the first column."
-msgstr "በመጀመሪያው ረድፍ ውስጥ የሚፈለገው ዋጋ"
+msgstr "በመጀመሪያው አምድ ውስጥ የሚፈለገው ዋጋ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_V_LOOKUP.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_V_LOOKUP.4.string.text"
msgid "array"
-msgstr "ማሰለፊያ"
+msgstr "ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_V_LOOKUP.5.string.text
msgid "The array or range for referencing."
-msgstr ""
+msgstr "የማመሳከሪያ መጠን ወይንም ማዘጋጃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_V_LOOKUP.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_V_LOOKUP.6.string.text"
@@ -6757,7 +6725,7 @@ msgstr "ማውጫ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_V_LOOKUP.7.string.text
msgid "Column index number in the array."
-msgstr "የአምድ ማውጫ ቁጥር በአሰላለፍ ውስጥ"
+msgstr "የአምድ ማውጫ ቁጥር በማዘጋጃ ውስጥ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_V_LOOKUP.8.string.text
msgid "sort order"
@@ -6765,7 +6733,7 @@ msgstr "ተራ መለያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_V_LOOKUP.9.string.text
msgid "If the value is TRUE or not given, the search column of the array must be sorted in ascending order."
-msgstr ""
+msgstr "ዋጋው እውነት ክሆነ ወይንም ካልተሰጠ ፡ የአምድ ፍለጋው ማዘጋጃ የሚለየው እየጨመረ በሚሄድ ደንብ ነው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INDEX.1.string.text
msgid "Returns a reference to a cell from a defined range."
@@ -6779,7 +6747,7 @@ msgstr "ማመሳከሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INDEX.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INDEX.3.string.text"
msgid "The reference to a (multiple) range."
-msgstr ""
+msgstr "ማመሳከሪያ ለ (በርካታ) መጠን"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INDEX.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INDEX.4.string.text"
@@ -6810,7 +6778,7 @@ msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INDIRECT.1.string.text
msgid "Returns the contents of a cell that is referenced in text form."
-msgstr ""
+msgstr "የተመሳከሩትን የክፍሉን ይዞታዎች በጽሁፍ ፎርም ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INDIRECT.2.string.text
msgid "ref "
@@ -6818,7 +6786,7 @@ msgstr "ref "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INDIRECT.3.string.text
msgid "The cell whose contents are to be evaluated is to be referenced in text form (e.g. \"A1\")."
-msgstr ""
+msgstr "የሚገመገሙት የክፍሉ ይዞታዎች በጽሁፍ ፎርም ይመሳከራሉ (ለምሳሌ . \"A1\")."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INDIRECT.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INDIRECT.4.string.text"
@@ -6828,11 +6796,11 @@ msgstr "A1"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INDIRECT.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INDIRECT.5.string.text"
msgid "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style."
-msgstr ""
+msgstr "የማመሳከሪያው ዘዴ : 0 or ሀሰት ማለት R1C1 ዘዴ ማለት ነው ፡ ሌሎች ዋጋዎች ወይንም የተዘለሉ ማለት A1 ዘዴ ማለት ነው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOOKUP.1.string.text
msgid "Determines a value in a vector by comparison to values in another vector."
-msgstr ""
+msgstr "ዋጋን በአቅጣጫ ውስጥ ከሌሎች አቅጣጫ ዋጋዎች ጋር ያወዳድራል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOOKUP.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOOKUP.2.string.text"
@@ -6846,23 +6814,23 @@ msgstr "ለማወዳደሪያ የሚጠቀሙበት ዋጋ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOOKUP.4.string.text
msgid "Search vector"
-msgstr ""
+msgstr "መፈለጊያ አቅጣጫ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOOKUP.5.string.text
msgid "The vector (row or column) in which to search."
-msgstr ""
+msgstr "ፍለጋው የሚካሄድበት (የረድፉ ወይንም የአምዱ) አቅጣጫ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOOKUP.6.string.text
msgid "result_vector"
-msgstr ""
+msgstr "የውጤቱ_አቅጣጫ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOOKUP.7.string.text
msgid "The vector (row or range) from which the value is to be determined."
-msgstr ""
+msgstr "ዋጋው የሚወሰንበት (የረድፉ ወይንም የመጠኑ) አቅጣጫ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MATCH.1.string.text
msgid "Defines a position in a array after comparing values."
-msgstr ""
+msgstr "በማዘጋጃ ውስጥ ቦታውን መወሰኛ ዋጋዎችን ካወዳደረ በኋላ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MATCH.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MATCH.2.string.text"
@@ -6892,8 +6860,9 @@ msgid "Type can take the value 1, 0 or -1 and determines the criteria are to be
msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_OFFSET.1.string.text
+#, fuzzy
msgid "Returns a reference which has been moved in relation to the starting point."
-msgstr ""
+msgstr "Returns a reference which has been moved in relation to the starting point."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_OFFSET.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_OFFSET.2.string.text"
@@ -6902,7 +6871,7 @@ msgstr "ማመሳከሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_OFFSET.3.string.text
msgid "The reference (cell) from which to base the movement."
-msgstr ""
+msgstr "ማመሳከሪያው (ክፍል) የእንቅስቃሴው መሰረት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_OFFSET.4.string.text
msgid "rows"
@@ -6926,7 +6895,7 @@ msgstr "እርዝመት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_OFFSET.9.string.text
msgid "The number of rows of the moved reference."
-msgstr ""
+msgstr "የረድፎች ቁጥር በተንቀሳቀሰው ማመሳከሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_OFFSET.10.string.text
msgid "width"
@@ -6934,11 +6903,11 @@ msgstr "ስፋት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_OFFSET.11.string.text
msgid "The number of columns in the moved reference."
-msgstr ""
+msgstr "የአምዶች ቁጥር በተንቀሳቀሰው ማመሳከሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ERROR_TYPE.1.string.text
msgid "Returns a number corresponding to an error type"
-msgstr ""
+msgstr "የስህተቱን አይነት በቁጥር ግንኙነት ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ERROR_TYPE.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ERROR_TYPE.2.string.text"
@@ -6947,11 +6916,11 @@ msgstr "ማመሳከሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ERROR_TYPE.3.string.text
msgid "The reference (cell) in which the error occurred."
-msgstr ""
+msgstr "ማመሳከሪያው (ክፍል) ስህተቱ የተፈጠረበት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STYLE.1.string.text
msgid "Applies a Style to the formula cell."
-msgstr ""
+msgstr "ለ formula ክፍል ዘዴ መፈጸሚያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STYLE.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STYLE.2.string.text"
@@ -7046,7 +7015,7 @@ msgstr "የዳታ ሜዳዎች"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GET_PIVOT_DATA.3.string.text
msgid "The name of the pivot table field to extract."
-msgstr ""
+msgstr "The name of the pivot table field to extract."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GET_PIVOT_DATA.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GET_PIVOT_DATA.4.string.text"
@@ -7055,7 +7024,7 @@ msgstr "የ pivot ሰንጠረዥ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GET_PIVOT_DATA.5.string.text
msgid "A reference to a cell or range in the pivot table."
-msgstr ""
+msgstr "ለክፍሉ ማመሳከሪያ ወይንም መጠን በ pivot table."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GET_PIVOT_DATA.6.string.text
msgid "Field Name / Item"
@@ -7063,7 +7032,7 @@ msgstr "የሜዳው ስም / እቃ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GET_PIVOT_DATA.7.string.text
msgid "Field name/value pair to filter the target data."
-msgstr ""
+msgstr "የሜዳ ስም / የዋጋ ጥንድ ለማጣሪያ የኢላማውን ዳታ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BAHTTEXT.1.string.text
msgid "Converts a number to text (Baht)."
@@ -7107,7 +7076,6 @@ msgid "The text to convert."
msgstr "የሚቀየረው ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CODE.1.string.text
-#, fuzzy
msgid "Returns a numeric code for the first character in a text string."
msgstr "Returns a numeric code for the first character in a text string."
@@ -7132,7 +7100,7 @@ msgstr "ዋጋ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CURRENCY.3.string.text
msgid "Value is a number, a reference to a cell containing a number or a formula that results in a number."
-msgstr ""
+msgstr "ዋጋ ቁጥር ነው ፡ ለክፍሉ ማመሳከሪያ ቁጥር የያዘ ወይንም formula የቁጥር ውጤት የሚያስገኝ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CURRENCY.4.string.text
msgid "decimals"
@@ -7140,7 +7108,7 @@ msgstr "ዴሲማልስ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CURRENCY.5.string.text
msgid "Decimal places. Denotes the number of digits to the right of the decimal point."
-msgstr ""
+msgstr "የዴሲማል ቁጥር ፡ የቁጥርን ዲጂትስ ከዴሲማል ነጥብ በስተቀኝ በኩል ያመለክታል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHAR.1.string.text
msgid "Converts a code number into a character or letter."
@@ -7175,15 +7143,15 @@ msgstr "በርካታ የጽሁፍ እቃዎች ወደ አንድ መቀላቀያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONCAT.2.string.text
msgid "text "
-msgstr "ጽሁፍ"
+msgstr "ጽሁፍ "
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONCAT.3.string.text
msgid "Text for the concatentation."
-msgstr ""
+msgstr "ጽሁፍ ማገናኛ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_EXACT.1.string.text
msgid "Specifies whether two texts are identical."
-msgstr ""
+msgstr "ሁለት ጽሁፎች ተመሳሳይ መሆናቸውን ይወስናል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_EXACT.2.string.text
msgid "text_1"
@@ -7203,7 +7171,7 @@ msgstr "ጽሁፎችን ለማወዳደር የሚጠቀሙበት ሁለተኛው
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FIND.1.string.text
msgid "Looks for a string of text within another (case sensitive)"
-msgstr ""
+msgstr "የጽሁፍ ሐርግ በሌላው ውስጥ ይፈልጋል (case sensitive)"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FIND.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FIND.2.string.text"
@@ -7236,7 +7204,7 @@ msgstr "ፍለጋው የሚጀመርበት የጽሁፉ ቦታ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SEARCH.1.string.text
msgid "Looks for one text value within another (not case-sensitive)."
-msgstr ""
+msgstr "የአንድ ጽሁፍ ዋጋ በሌላ ውስጥ መፈለጊያ (not case-sensitive)."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SEARCH.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SEARCH.2.string.text"
@@ -7291,7 +7259,7 @@ msgstr "ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_PROPPER.3.string.text
msgid "The text in which the beginning of words are to be replaced by capital letters."
-msgstr ""
+msgstr "የቃላቶቹ መጀመሪያ ወደ አቢይ ፊደል የሚቀየረው ጽሁፉ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_UPPER.1.string.text
msgid "Converts text to uppercase."
@@ -7304,7 +7272,7 @@ msgstr "ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_UPPER.3.string.text
msgid "The text in which lower case letters are to be converted to capitals."
-msgstr ""
+msgstr "በትንንሽ ፊደል የተጻፈው ወደ አቢይ ፊደል የሚቀየረው ጽሁፉ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOWER.1.string.text
msgid "Converts text to lowercase."
@@ -7352,11 +7320,11 @@ msgstr "Format"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_TEXT.5.string.text
msgid "The text that describes the format."
-msgstr "format የሚገልጸው ጽሁፍ"
+msgstr "format ጽሁፍ የሚገልጸው format"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T.1.string.text
msgid "Returns a value if it is text, otherwise an empty string."
-msgstr ""
+msgstr "ጽሁፍ ከሆነ ዋጋ ያለበለዚያ ባዶ ሐረግ ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T.2.string.text"
@@ -7369,7 +7337,7 @@ msgstr "የሚመረመረው ዋጋ እና ጽሁፍ ከሆነ የሚመልሰ
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_REPLACE.1.string.text
msgid "Replaces characters within a text string with a different text string."
-msgstr ""
+msgstr "ባህሪዎችን በጽሁፍ ሐረግ ውስጥ በተለየ የጽሁፍ ሐረግ መቀየሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_REPLACE.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_REPLACE.2.string.text"
@@ -7408,7 +7376,7 @@ msgstr "የሚገባው ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FIXED.1.string.text
msgid "Formats a number with a fixed number of places after the decimal point and thousands separator."
-msgstr "ሺዎችን መለያያ"
+msgstr "የቁጥር አቀራረብ በተወሰነ ቁጥር ቦታዎች ከዴሲማል ቦታ በኋላ እና ሺዎችን መለያያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FIXED.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FIXED.2.string.text"
@@ -7425,7 +7393,7 @@ msgstr "ዴሲማልስ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FIXED.5.string.text
msgid "Decimal places. The number of fixed decimal places that are to be displayed."
-msgstr ""
+msgstr "የዴሲማል ቦታዎች ፡ የተወሰነ ቁጥር የዴሲማል ቦታ የሚታየው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FIXED.6.string.text
msgid "No thousands separators"
@@ -7433,7 +7401,7 @@ msgstr "ሺዎችን መለያያ የለም"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FIXED.7.string.text
msgid "No thousands separator. True value, if existing and TRUE (unequal to 0), no thousands separators are set."
-msgstr "No thousands separator. True value, if existing and TRUE (unequal to 0), ሺዎችን መለያያ አልተዘጋጀም"
+msgstr "ሺዎችን መለያያ የለም ፡ እውነት ዋጋ , ከነበረ እና እውነት (ካልሆነ 0), ሺዎችን መለያያ አልተዘጋጀም"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LEN.1.string.text
msgid "Calculates length of a text string."
@@ -7450,7 +7418,7 @@ msgstr "እርዝመቱ የሚወሰነው ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LEFT.1.string.text
msgid "Returns the first character or characters of a text."
-msgstr ""
+msgstr "የመጀመሪያውን ባህሪ ወይንም የጽሁፍ ባህሪዎች ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LEFT.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LEFT.2.string.text"
@@ -7458,9 +7426,8 @@ msgid "text"
msgstr "ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LEFT.3.string.text
-#, fuzzy
msgid "The text where the initial partial words are to be determined."
-msgstr "በጽሁፉ ውስጥ በከፊል የሚቀየሩት ቃላቶች"
+msgstr "በጽሁፉ ውስጥ በከፊል የሚታዩት ቃላቶች የሚወሰኑት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LEFT.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LEFT.4.string.text"
@@ -7469,11 +7436,11 @@ msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LEFT.5.string.text
msgid "The number of characters for the start text."
-msgstr ""
+msgstr "የባህሪዎች ቁጥር ለጽሁፍ መጀመሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RIGHT.1.string.text
msgid "Returns the last character or characters of a text."
-msgstr ""
+msgstr "የመጨረሻውን ባህሪ ወይንም የጽሁፍ ባህሪዎች ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RIGHT.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RIGHT.2.string.text"
@@ -7481,9 +7448,8 @@ msgid "text"
msgstr "ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RIGHT.3.string.text
-#, fuzzy
msgid "The text in which the end partial words are to be determined."
-msgstr "በጽሁፉ ውስጥ በከፊል የሚቀየሩት ቃላቶች"
+msgstr "በጽሁፉ መጨረሻ ውስጥ በከፊል የሚታዩት ቃላቶች የሚወሰኑት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RIGHT.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RIGHT.4.string.text"
@@ -7492,11 +7458,11 @@ msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RIGHT.5.string.text
msgid "The number of characters for the end text."
-msgstr ""
+msgstr "የባህሪዎች ቁጥር ለጽሁፉ መጨረሻ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MID.1.string.text
msgid "Returns a partial text string of a text."
-msgstr ""
+msgstr "በከፊል የጽሁፍ ሐረግ ከጽሁፍ ይመልሳል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MID.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MID.2.string.text"
@@ -7504,9 +7470,8 @@ msgid "text"
msgstr "ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MID.3.string.text
-#, fuzzy
msgid "The text in which partial words are to be determined."
-msgstr "በጽሁፉ ውስጥ በከፊል የሚቀየሩት ቃላቶች"
+msgstr "በጽሁፉ ውስጥ የተወሰኑ በከፊል የሚቀየሩት ቃላቶች"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MID.4.string.text
msgid "start"
@@ -7523,11 +7488,11 @@ msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MID.7.string.text
msgid "The number of characters for the text."
-msgstr ""
+msgstr "የባህሪው ቁጥር ለጽሁፉ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_REPT.1.string.text
msgid "Repeats text a given number of times."
-msgstr ""
+msgstr "ጽሁፍን መድገሚያ በተሰጠው ቁጥር መሰረት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_REPT.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_REPT.2.string.text"
@@ -7566,7 +7531,7 @@ msgstr "ጽሁፍ_መፈለጊያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SUBSTITUTE.5.string.text
msgid "The partial string to be (repeatedly) replaced."
-msgstr ""
+msgstr "በከፊል ሐረጎች በ (ተደጋጋሚ) የሚቀየሩት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SUBSTITUTE.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SUBSTITUTE.6.string.text"
@@ -7575,19 +7540,19 @@ msgstr "አዲስ ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SUBSTITUTE.7.string.text
msgid "The text which is to replace the text string."
-msgstr ""
+msgstr "ጽሁፉ የሚተካው የጽሁፍ ሀረግ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SUBSTITUTE.8.string.text
msgid "occurrence"
-msgstr ""
+msgstr "የሚሆን ነገር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SUBSTITUTE.9.string.text
msgid "Which occurrence of the old text is to be replaced."
-msgstr ""
+msgstr "የትኛው የነበረ አሮጌ ጽሁፍ ነው የሚቀየረው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE.1.string.text
msgid "Converts a positive integer to text from a number system to the base defined."
-msgstr ""
+msgstr "Converts a positive integer to text from a number system to the base defined."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE.2.string.text"
@@ -7606,7 +7571,7 @@ msgstr "radix"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE.5.string.text"
msgid "The base number for conversion must be in the range 2 - 36."
-msgstr ""
+msgstr "የሚቀየረው መሰረታዊ ቁጥር በዚህ መጠን መካከል መሆን አለበት 2 - 36."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE.6.string.text
msgid "Minimum length"
@@ -7614,11 +7579,11 @@ msgstr "አነስተኛ እርዝመት"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE.7.string.text
msgid "If the text is shorter than the specified length, zeros are added to the left of the string."
-msgstr ""
+msgstr "ጽሁፉ አጭር ከሆነ ከተወሰነው እርዝመት በታች ዜሮ ይጨመራል ከሐረጉ በስተግራ በኩል"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL.1.string.text
msgid "Converts a text of a specified number system to a positive integer in the base given."
-msgstr ""
+msgstr "Converts a text of a specified number system to a positive integer in the base given."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL.2.string.text"
@@ -7637,11 +7602,11 @@ msgstr "radix"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL.5.string.text"
msgid "The base number for conversion must be in the range 2 - 36."
-msgstr ""
+msgstr "የሚቀየረው መሰረታዊ ቁጥሩ በዚህ መጠን ውስጥ መሆን አለበት 2 - 36."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONVERT.1.string.text
msgid "Converts a value according to a conversion table in the configuration (calc.xcu)."
-msgstr ""
+msgstr "ዋጋዎችን እንደ መቀየሪያው ሰንጠረዥ በማዋቀሪያው ውስጥ ይቀይራል (calc.xcu)."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONVERT.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONVERT.2.string.text"
@@ -7660,7 +7625,7 @@ msgstr "ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONVERT.5.string.text
msgid "Unit from which something is converted, case-sensitive."
-msgstr ""
+msgstr "ክፍሉ አንድ ነገር ወደ ሌላ የሚቀየርበት case-sensitive."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONVERT.6.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONVERT.6.string.text"
@@ -7669,7 +7634,7 @@ msgstr "ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONVERT.7.string.text
msgid "Unit into which something is converted, case-sensitive."
-msgstr ""
+msgstr "ክፍሉ አንድ ነገር ወደ ሌላ የሚቀየርበት case-sensitive."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ROMAN.1.string.text
msgid "Converts a number to a Roman numeral."
@@ -7704,7 +7669,7 @@ msgstr "ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ARABIC.3.string.text
msgid "The text that represents a Roman numeral."
-msgstr ""
+msgstr "የ Roman ቁጥር የሚወክለው ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INFO.1.string.text
msgid "Returns information about the environment."
@@ -7717,10 +7682,9 @@ msgstr "ጽሁፍ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_INFO.3.string.text
msgid "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\"."
-msgstr ""
+msgstr "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\"."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_UNICODE.1.string.text
-#, fuzzy
msgid "Returns the numeric code for the first Unicode character in a text string."
msgstr "Returns a numeric code for the first character in a text string."
@@ -7735,9 +7699,8 @@ msgid "This is the text for which the code of the first character is to be found
msgstr ""
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_UNICHAR.1.string.text
-#, fuzzy
msgid "Converts a code number into a Unicode character or letter."
-msgstr "የኮድ ቁጥር ወደ ባህሪ ወይንም ፊደል መቀየሪያ"
+msgstr "የኮድ ቁጥር ወደ Unicode ባህሪ ወይንም ፊደል መቀየሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_UNICHAR.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_UNICHAR.2.string.text"
@@ -7751,7 +7714,7 @@ msgstr "የኮድ ዋጋ ለባህሪው"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_EUROCONVERT.1.string.text
msgid "Converts a value from one to another Euro currency."
-msgstr ""
+msgstr "ዋጋ መቀየሪያ ከአንዱ ወደ ሌላው የኢዩሮ ገንዘብ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_EUROCONVERT.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_EUROCONVERT.2.string.text"
@@ -7830,7 +7793,7 @@ msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITAND.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITAND.3.string.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "አዎንታዊ integer የሚያንሱ ከ 2^48."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITAND.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITAND.4.string.text"
@@ -7840,10 +7803,9 @@ msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITAND.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITAND.5.string.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "አዎንታዊ integer የሚያንሱ ከ 2^48."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITOR.1.string.text
-#, fuzzy
msgid "Bitwise \"OR\" of two integers."
msgstr "Bitwise \"AND\" of two integers."
@@ -7855,7 +7817,7 @@ msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITOR.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITOR.3.string.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "አዎንታዊ integer የሚያንሱ ከ 2^48."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITOR.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITOR.4.string.text"
@@ -7865,11 +7827,11 @@ msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITOR.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITOR.5.string.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "አዎንታዊ integer የሚያንሱ ከ 2^48."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR.1.string.text
msgid "Bitwise \"exclusive OR\" of two integers."
-msgstr ""
+msgstr "Bitwise \"exclusive OR\" of two integers."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR.2.string.text"
@@ -7879,7 +7841,7 @@ msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR.3.string.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "አዎንታዊ integer የሚያንሱ ከ 2^48."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR.4.string.text"
@@ -7889,11 +7851,11 @@ msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR.5.string.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "አዎንታዊ integer የሚያንሱ ከ 2^48."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITRSHIFT.1.string.text
msgid "Bitwise right shift of an integer value."
-msgstr ""
+msgstr "Bitwise right shift of an integer value."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITRSHIFT.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITRSHIFT.2.string.text"
@@ -7903,7 +7865,7 @@ msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITRSHIFT.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITRSHIFT.3.string.text"
msgid "The value to be shifted. Positive integer less than 2^48."
-msgstr ""
+msgstr "ዋጋው የሚቀየረው ፡ አዎንታዊ integer የሚያንሱ ከ 2^48."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITRSHIFT.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITRSHIFT.4.string.text"
@@ -7913,11 +7875,11 @@ msgstr "መቀየሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITRSHIFT.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITRSHIFT.5.string.text"
msgid "The integer number of bits the value is to be shifted."
-msgstr ""
+msgstr "The integer number of bits the value is to be shifted."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITLSHIFT.1.string.text
msgid "Bitwise left shift of an integer value."
-msgstr ""
+msgstr "Bitwise left shift of an integer value."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITLSHIFT.2.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITLSHIFT.2.string.text"
@@ -7927,7 +7889,7 @@ msgstr "ቁጥር"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITLSHIFT.3.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITLSHIFT.3.string.text"
msgid "The value to be shifted. Positive integer less than 2^48."
-msgstr ""
+msgstr "ዋጋው የሚቀየረው ፡ አዎንታዊ integer የሚያንሱ ከ 2^48."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITLSHIFT.4.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITLSHIFT.4.string.text"
@@ -7937,7 +7899,7 @@ msgstr "መቀየሪያ"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITLSHIFT.5.string.text
msgctxt "scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITLSHIFT.5.string.text"
msgid "The integer number of bits the value is to be shifted."
-msgstr ""
+msgstr "The integer number of bits the value is to be shifted."
#: attrdlg.src#RID_SCDLG_ATTR.1.TP_NUMBER.pageitem.text
msgid "Numbers"
@@ -7997,6 +7959,9 @@ msgid ""
"\n"
"Select 'Protect Document' from the 'Tools' menu, and specify 'Sheet'."
msgstr ""
+"ክፍል መጠበቂያ ውጤታማ የሚሆነው የአሁኑ ወረቀት ከተጠበቀ በኋላ ነው \n"
+"\n"
+"ይምረጡ 'ሰነድ መጠበቂያ' ከ 'መሳሪያዎች' ዝርዝር ፡ እና 'ወረቀቱን' ይወስኑ"
#: attrdlg.src#RID_SCPAGE_PROTECTION.FL_PROTECTION.fixedline.text
msgctxt "attrdlg.src#RID_SCPAGE_PROTECTION.FL_PROTECTION.fixedline.text"
@@ -8070,7 +8035,6 @@ msgid "Cell must contain a formula."
msgstr "ክፍሉ formula መያዝ አለበት"
#: solvrdlg.src#RID_SCDLG_SOLVER.modelessdialog.text
-#, fuzzy
msgid "Goal Seek"
msgstr "Goal Seek"
@@ -8101,7 +8065,7 @@ msgstr "ይ~ዞታዎችን ማጥፊያ..."
#: popup.src#RID_POPUP_CELLS.FID_MERGE_ON.menuitem.text
msgid "~Merge Cells..."
-msgstr ""
+msgstr "ክፍሎችን ~ማዋሀጃ..."
#: popup.src#RID_POPUP_CELLS.SID_INSERT_POSTIT.menuitem.text
msgid "Insert Co~mment"
@@ -8142,25 +8106,22 @@ msgid "~Text"
msgstr "~ጽሁፍ"
#: popup.src#RID_POPUP_CELLS.SID_PASTE_ONLY.SID_PASTE_ONLY_VALUE.menuitem.text
-#, fuzzy
msgid "~Number"
msgstr "~ቁጥሮች"
#: popup.src#RID_POPUP_CELLS.SID_PASTE_ONLY.SID_PASTE_ONLY_FORMULA.menuitem.text
-#, fuzzy
msgid "~Formula"
msgstr "~Formulas"
#: popup.src#RID_POPUP_CELLS.SID_PASTE_ONLY.menuitem.text
msgid "Paste O~nly"
-msgstr ""
+msgstr "መለጠፊያ ብ~ቻ"
#: popup.src#RID_POPUP_CELLS.SID_DATA_SELECT.menuitem.text
msgid "~Selection List..."
-msgstr "የዝርዝር መምረጫዎች..."
+msgstr "ዝርዝር ~መምረጫዎች..."
#: popup.src#RID_POPUP_TAB.string.text
-#, fuzzy
msgid "Sheet bar pop-up menu"
msgstr "Sheet bar pop-up menu"
@@ -8181,7 +8142,6 @@ msgid "~Move/Copy Sheet..."
msgstr "ወረቀት ~ማንቀሳቀሻ / ኮፒ..."
#: popup.src#RID_POPUP_TAB.FID_TAB_MENU_SET_TAB_BG_COLOR.menuitem.text
-#, fuzzy
msgid "~Tab Color..."
msgstr "~Tab Color..."
@@ -8204,7 +8164,7 @@ msgstr "~መደበቂያ"
#: popup.src#RID_POPUP_TAB.FID_TABLE_SHOW.menuitem.text
msgid "~Show..."
-msgstr ""
+msgstr "~ማሳያ..."
#: popup.src#RID_POPUP_TAB.FID_TAB_SELECTALL.menuitem.text
msgid "Select All S~heets"
@@ -8216,7 +8176,7 @@ msgstr "ሁሉንም ወረቀቶች አ~ለመምረጥ"
#: popup.src#RID_POPUP_PIVOT.string.text
msgid "Pivot table pop-up menu"
-msgstr ""
+msgstr "የ Pivot ሰንጠረዥ ብቅ -ባይ ዝርዝር"
#: popup.src#RID_POPUP_PIVOT.SID_OPENDLG_PIVOTTABLE.menuitem.text
msgid "~Edit Layout..."
@@ -8287,27 +8247,25 @@ msgid "Style"
msgstr "ዘዴ"
#: popup.src#RID_POPUP_EDIT.RID_MN_INSERT_FIELDS.SID_INSERT_FIELD_DATE_VAR.menuitem.text
-#, fuzzy
msgctxt "popup.src#RID_POPUP_EDIT.RID_MN_INSERT_FIELDS.SID_INSERT_FIELD_DATE_VAR.menuitem.text"
msgid "Date"
msgstr "ቀን"
#: popup.src#RID_POPUP_EDIT.RID_MN_INSERT_FIELDS.SID_INSERT_FIELD_SHEET.menuitem.text
msgid "Sheet Name"
-msgstr ""
+msgstr "የወረቀቱ ስም"
#: popup.src#RID_POPUP_EDIT.RID_MN_INSERT_FIELDS.SID_INSERT_FIELD_TITLE.menuitem.text
msgid "Title"
-msgstr ""
+msgstr "አርእስት"
#: popup.src#RID_POPUP_EDIT.RID_MN_INSERT_FIELDS.menuitem.text
-#, fuzzy
msgid "Insert Fields"
msgstr "ክፍሎች ማስገቢያ"
#: popup.src#RID_POPUP_AUDIT.string.text
msgid "Detective Fill Mode pop-up menu"
-msgstr ""
+msgstr "ፈልጎ መሙያ ዘዴ ብቅ-ባይ ዝርዝር"
#: popup.src#RID_POPUP_AUDIT.SID_FILL_ADD_PRED.menuitem.text
msgid "Trace ~Precedent"
@@ -8378,7 +8336,7 @@ msgstr "የህትመት መጠኑን መተው"
#: popup.src#RID_POPUP_PAGEBREAK.SID_FORMATPAGE.menuitem.text
msgid "Page Format..."
-msgstr "ገጽ Format ማድረጊያ..."
+msgstr "ገጽ Format አቀራረብ..."
#: popup.src#RID_POPUP_PAGEBREAK.FID_NOTE_VISIBLE.menuitem.text
msgctxt "popup.src#RID_POPUP_PAGEBREAK.FID_NOTE_VISIBLE.menuitem.text"
@@ -8440,7 +8398,6 @@ msgid "Delete ~all"
msgstr "~ሁሉንም ማጥፊያ"
#: miscdlgs.src#RID_SCDLG_DELCONT.BTN_DELSTRINGS.checkbox.text
-#, fuzzy
msgctxt "miscdlgs.src#RID_SCDLG_DELCONT.BTN_DELSTRINGS.checkbox.text"
msgid "~Text"
msgstr "~ጽሁፍ"
@@ -8463,7 +8420,7 @@ msgstr "~Formulas"
#: miscdlgs.src#RID_SCDLG_DELCONT.BTN_DELATTRS.checkbox.text
msgctxt "miscdlgs.src#RID_SCDLG_DELCONT.BTN_DELATTRS.checkbox.text"
msgid "For~mats"
-msgstr "For~mats"
+msgstr "አቀራ~ረብ"
#: miscdlgs.src#RID_SCDLG_DELCONT.BTN_DELNOTES.checkbox.text
msgctxt "miscdlgs.src#RID_SCDLG_DELCONT.BTN_DELNOTES.checkbox.text"
@@ -8510,7 +8467,7 @@ msgstr "~Formulas"
#: miscdlgs.src#RID_SCDLG_INSCONT.BTN_INSATTRS.checkbox.text
msgctxt "miscdlgs.src#RID_SCDLG_INSCONT.BTN_INSATTRS.checkbox.text"
msgid "For~mats"
-msgstr "For~mats"
+msgstr "አቀራ~ረብ"
#: miscdlgs.src#RID_SCDLG_INSCONT.BTN_INSOBJECTS.checkbox.text
msgctxt "miscdlgs.src#RID_SCDLG_INSCONT.BTN_INSOBJECTS.checkbox.text"
@@ -8948,7 +8905,6 @@ msgid "Print Preview"
msgstr "ቅድመ ህትመት እይታ"
#: scstring.src#SCSTR_PIVOTSHELL.string.text
-#, fuzzy
msgid "Pivot Tables"
msgstr "የ pivot ሰንጠረዥ"
@@ -8994,7 +8950,7 @@ msgstr "የአምድ ስፋት"
#: scstring.src#STR_OPT_COLWIDTH_TITLE.string.text
msgctxt "scstring.src#STR_OPT_COLWIDTH_TITLE.string.text"
msgid "Optimal Column Width"
-msgstr "አጥጋቢ የአምድ እርዝመት"
+msgstr "አጥጋቢ የአምድ ስፋት"
#: scstring.src#SCSTR_UNDEFINED.string.text
msgid "- undefined -"
@@ -9022,14 +8978,13 @@ msgstr "ከፍተኛ 10"
#: scstring.src#SCSTR_FILTER_EMPTY.string.text
msgid "Empty"
-msgstr ""
+msgstr "ባዶ"
#: scstring.src#SCSTR_FILTER_NOTEMPTY.string.text
msgid "Not Empty"
-msgstr ""
+msgstr "ባዶ አይደለም"
#: scstring.src#SCSTR_NONAME.string.text
-#, fuzzy
msgid "unnamed"
msgstr "ያልተሰየመ"
@@ -9274,7 +9229,7 @@ msgstr "~አነስተኛ"
#: scstring.src#SCSTR_VALID_MAXIMUM.string.text
msgid "~Maximum"
-msgstr "ከፍተኛ"
+msgstr "~ከፍተኛ"
#: scstring.src#SCSTR_VALID_VALUE.string.text
msgid "~Value"
@@ -9442,7 +9397,7 @@ msgstr "እዚህ የጣሉዋቸው ሜዳዎች እንደ አምዶች ይታ
#: scstring.src#STR_ACC_DATAPILOT_DATA_DESCR.string.text
msgid "Fields that you drop here will be used for calculations in the final pivot table."
-msgstr ""
+msgstr "እዚህ የጣሉዋቸው ሜዳዎች ለማስሊያ ይጠቅማሉ በመጨረሻው pivot table ላይ"
#: scstring.src#STR_ACC_DATAPILOT_SEL_DESCR.string.text
msgid "Lists the fields that you can drag to one of the other three areas."
@@ -9532,7 +9487,7 @@ msgstr "ስለዚህ ወደፊት አስጠንቅቀኝ"
#: scstring.src#SCSTR_DDEDOC_NOT_LOADED.string.text
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
-msgstr "ይህ የ DDE ን ምንጭ ማሻሻል አልተቻለም ምናልባት የሰነዱ ምንጩ አልተከፈተ ይሆናል ፡ እባክዎን የሰነዱን ምንጭ ያስነሱ እና እንደገና ይሞክሩ"
+msgstr "ይህን የ DDE ምንጭ ማሻሻል አልተቻለም ምናልባት የሰነዱ ምንጩ አልተከፈተ ይሆናል ፡ እባክዎን የሰነዱን ምንጭ ያስነሱ እና እንደገና ይሞክሩ"
#: scstring.src#SCSTR_EXTDOC_NOT_LOADED.string.text
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
@@ -9597,6 +9552,7 @@ msgid "Settings:"
msgstr "ማሰናጃዎች:"
#: solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text
+msgctxt "solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text"
msgid "Edit..."
msgstr "ማረሚያ..."
@@ -9626,22 +9582,21 @@ msgid "Remove"
msgstr "ማስወገጃ"
#: condformatdlg.src#RID_SCDLG_CONDFORMAT.modaldialog.text
-#, fuzzy
msgid "Conditional Formatting for"
msgstr "Conditional Formatting"
-#: condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text
-msgctxt "condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text"
-msgid "Condition"
+#: condformatdlg.src#RID_COND_ENTRY.STR_CONDITION.string.text
+msgid "Condition "
msgstr "ሁኔታው"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.1.stringlist.text
msgid "All Cells"
-msgstr ""
+msgstr "ሁሉንም ክፍሎች"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text"
msgid "Cell value is"
-msgstr "የክፍሉ ዋጋ ነው"
+msgstr "የክፍሉ ዋጋ"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.3.stringlist.text
msgid "Formula is"
@@ -9672,42 +9627,44 @@ msgid "not equal to"
msgstr "እኩል አይሆንም"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text"
msgid "between"
msgstr "መካከል"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text"
msgid "not between"
msgstr "መካከል አይደለም"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text"
msgid "duplicate"
-msgstr ""
+msgstr "ማባዣ"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.10.stringlist.text
msgid "not duplicate"
-msgstr ""
+msgstr "የተባዛ አይደለም"
#: condformatdlg.src#RID_COND_ENTRY.FT_STYLE.fixedtext.text
msgid "Apply Style"
-msgstr ""
+msgstr "ዘዴ መፈጽሚያ"
#: condformatdlg.src#RID_COND_ENTRY.LB_STYLE.1.stringlist.text
-#, fuzzy
msgid "New Style..."
-msgstr "~አዲስ ዘዴ..."
+msgstr "አዲስ ዘዴ..."
#: condformatdlg.src#RID_COND_ENTRY.LB_COLOR_FORMAT.1.stringlist.text
msgid "Color Scale (2 Entries)"
-msgstr ""
+msgstr "የቀለም መጠን (2 ማስገቢያ)"
#: condformatdlg.src#RID_COND_ENTRY.LB_COLOR_FORMAT.2.stringlist.text
msgid "Color Scale (3 Entries)"
-msgstr ""
+msgstr "የቀለም መጠን (3 ማስገቢያ)"
#: condformatdlg.src#RID_COND_ENTRY.LB_COLOR_FORMAT.3.stringlist.text
msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_COLOR_FORMAT.3.stringlist.text"
msgid "Data Bar"
-msgstr ""
+msgstr "የዳታ ባር"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.1.stringlist.text
msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.1.stringlist.text"
@@ -9722,7 +9679,7 @@ msgstr "ከፍተኛ"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.3.stringlist.text
msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.3.stringlist.text"
msgid "Percentile"
-msgstr ""
+msgstr "Percentile"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.4.stringlist.text
msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.4.stringlist.text"
@@ -9732,10 +9689,9 @@ msgstr "ዋጋ"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.5.stringlist.text
msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.5.stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "ፐርሰንት"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.6.stringlist.text
-#, fuzzy
msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.6.stringlist.text"
msgid "Formula"
msgstr "~Formulas"
@@ -9746,7 +9702,7 @@ msgstr "ለምሳሌ"
#: condformatdlg.src#RID_COND_ENTRY.BTN_OPTIONS.pushbutton.text
msgid "More options ..."
-msgstr ""
+msgstr "ተጫማሪ ምርጫዎች..."
#: subtdlg.src#RID_SCPAGE_SUBT_OPTIONS.FL_GROUP.fixedline.text
msgid "Groups"
@@ -9779,7 +9735,6 @@ msgid "~Ascending"
msgstr "~እየጨመረ የሚሄድ"
#: subtdlg.src#RID_SCPAGE_SUBT_OPTIONS.BTN_DESCENDING.radiobutton.text
-#, fuzzy
msgid "D~escending"
msgstr "እ~የቀነሰ የሚሄድ"
@@ -9794,7 +9749,7 @@ msgstr "በ ~ቡድን"
#: subtdlg.src#RID_SUBTBASE.FT_COLUMNS.fixedtext.text
msgid "~Calculate subtotals for"
-msgstr "ንዑስ ድምር ~ማስላት ለ"
+msgstr "ንዑስ ድምር ~ማስሊያ ለ"
#: subtdlg.src#RID_SUBTBASE.FT_FUNCTIONS.fixedtext.text
msgid "Use ~function"
@@ -9877,6 +9832,25 @@ msgctxt "subtdlg.src#RID_SCDLG_SUBTOTALS.tabdialog.text"
msgid "Subtotals"
msgstr "ንዑስ ድምር"
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text"
+msgid "Add"
+msgstr "መጨመሪያ"
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text"
+msgid "Remove"
+msgstr "ማስወገጃ"
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text"
+msgid "Edit..."
+msgstr "ማረሚያ..."
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.modaldialog.text
+msgid "Manage Conditional Formatting"
+msgstr "Manage Conditional Formatting"
+
#: textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
msgctxt "textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
msgid "Font"
@@ -10068,7 +10042,7 @@ msgstr "~እየቀነሰ የሚሄድ"
#: sortdlg.src#FL_SORT.fixedline.text
msgid "Sort ~key "
-msgstr ""
+msgstr "መለያ ~ቁልፍ "
#: sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_CASESENSITIVE.checkbox.text
msgctxt "sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_CASESENSITIVE.checkbox.text"
@@ -10139,7 +10113,6 @@ msgid "The cells next to the current selection also contain data. Do you want to
msgstr "አሁን ከመረጡት ክፍል ቀጥሎ ያለው ክፍል ዳታ በውስጡ ይዟል ፡ የመለያ ደረጃውን ማስፋት ይፈልጋሉ ወደ %1 ወይንስ አሁን የተመረጠውን መጠን መለየት ይፈልጋሉ %2?"
#: sortdlg.src#RID_SCDLG_SORT_WARNING.FT_TIP.fixedtext.text
-#, fuzzy
msgid "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted."
msgstr "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted."
@@ -10519,7 +10492,7 @@ msgstr "ማምጫ"
#: globstr.src#RID_GLOBSTR.STR_MSSG_DOSUBTOTALS_0.string.text
msgctxt "globstr.src#RID_GLOBSTR.STR_MSSG_DOSUBTOTALS_0.string.text"
msgid "%PRODUCTNAME Calc"
-msgstr "%PRODUCTNAME Calc"
+msgstr "%PRODUCTNAME ሰንጠረዥ"
#: globstr.src#RID_GLOBSTR.STR_MSSG_DOSUBTOTALS_1.string.text
msgid "Delete data?"
@@ -10652,7 +10625,7 @@ msgstr "እና"
#: globstr.src#RID_GLOBSTR.STR_TABLE_ODER.string.text
msgctxt "globstr.src#RID_GLOBSTR.STR_TABLE_ODER.string.text"
msgid "OR"
-msgstr "ወይም"
+msgstr "ወይንም"
#: globstr.src#RID_GLOBSTR.STR_TABLE_DEF.string.text
msgctxt "globstr.src#RID_GLOBSTR.STR_TABLE_DEF.string.text"
@@ -10824,7 +10797,7 @@ msgstr "ረድፍ መሙያ..."
#: globstr.src#RID_GLOBSTR.STR_UNKNOWN_FILTER.string.text
msgid "Unknown filter: "
-msgstr "ያልታወቀ ማጣሪያ :"
+msgstr "ያልታወቀ ማጣሪያ : "
#: globstr.src#RID_GLOBSTR.STR_UNDO_THESAURUS.string.text
msgid "Thesaurus"
@@ -10844,7 +10817,7 @@ msgstr "የትእይንት መጠን በቅድሚያ መመረጥ አለበት
#: globstr.src#RID_GLOBSTR.STR_NOAREASELECTED.string.text
msgid "A range has not been selected."
-msgstr "መጠኑ አልተወሰነም"
+msgstr "መጠኑ አልተመረጠም"
#: globstr.src#RID_GLOBSTR.STR_NEWTABNAMENOTUNIQUE.string.text
msgid "This name already exists."
@@ -10856,6 +10829,9 @@ msgid ""
"The sheet name must not be a duplicate of an existing name \n"
"and may not contain the characters [ ] * ? : / \\"
msgstr ""
+"ዋጋ የሌለው ስም \n"
+"የወረቀቱ ስም የተደገመ ቀደም ሲል የነበር መሆን የለበትም \n"
+"እና እነዚህን ባህሪዎች መያዝ የለበትም [ ] * ? : / \\"
#: globstr.src#RID_GLOBSTR.STR_SCENARIO.string.text
msgid "Scenario"
@@ -10994,7 +10970,7 @@ msgstr "ግርጌ"
#: globstr.src#RID_GLOBSTR.STR_ERROR_STR.string.text
msgid "Err:"
-msgstr "ስህተት:"
+msgstr "ስህተት :"
#: globstr.src#RID_GLOBSTR.STR_LONG_ERR_NULL.string.text
msgid "Error: Ranges do not intersect"
@@ -11030,7 +11006,7 @@ msgstr "#ልጨምረው?"
#: globstr.src#RID_GLOBSTR.STR_LONG_ERR_NO_ADDIN.string.text
msgid "Error: Add-in not found"
-msgstr "ስህተት: መጨመሪያ አልተገኘም"
+msgstr "ስህተት : መጨመሪያ አልተገኘም"
#: globstr.src#RID_GLOBSTR.STR_NO_MACRO.string.text
msgid "#MACRO?"
@@ -11151,7 +11127,6 @@ msgid "Protection"
msgstr "ጥበቃ"
#: globstr.src#RID_GLOBSTR.STR_FORMULAS.string.text
-#, fuzzy
msgctxt "globstr.src#RID_GLOBSTR.STR_FORMULAS.string.text"
msgid "Formulas"
msgstr "Formulas"
@@ -11178,7 +11153,7 @@ msgstr ""
#: globstr.src#RID_GLOBSTR.STR_CASCADE.string.text
msgid "(nested)"
-msgstr "(መታቀፍ)"
+msgstr "(የታቀፈ)"
#: globstr.src#RID_GLOBSTR.STR_OPTIONAL.string.text
msgid "(optional)"
@@ -11387,9 +11362,8 @@ msgid "The new table contains absolute references to other tables which may be i
msgstr "አዲሱ ሰንጠረዥ ፍጹም የሆነ ማመሳከሪያ በውስጡ ይዟል ወደ ሌላ ሰንጠረዦች ምናልባት የተሳሳቱ ሊሆኑ ይችላሉ"
#: globstr.src#RID_GLOBSTR.STR_NAMECONFLICT.string.text
-#, fuzzy
msgid "Due to identical names, an existing range name in the destination document has been altered!"
-msgstr "Due to identical names, an existing range name in the destination document has been altered!"
+msgstr "በተመሳሳይ ስም ምክንያት ቀደም ሲል የነበረ የስም መጠን በመድረሻው ሰነድ ውስጥ ተቀይሯል!"
#: globstr.src#RID_GLOBSTR.STR_ERR_AUTOFILTER.string.text
msgid "AutoFilter not possible"
@@ -11429,7 +11403,7 @@ msgstr "ከዳታው ምንጭ በላይ ማመሳከሪያዎች አይጨመ
#: globstr.src#RID_GLOBSTR.STR_SCENARIO_NOTFOUND.string.text
msgid "Scenario not found"
-msgstr "Scenario አልተገኘም"
+msgstr "ትእይንቱ አልተገኘም"
#: globstr.src#RID_GLOBSTR.STR_QUERY_DELENTRY.string.text
msgid "Do you really want to delete the entry #?"
@@ -11473,7 +11447,7 @@ msgstr "አስተያየቶች"
#: globstr.src#RID_GLOBSTR.STR_SCATTR_PAGE_GRID.string.text
msgid "Grid"
-msgstr "Grid"
+msgstr "መጋጠሚያ"
#: globstr.src#RID_GLOBSTR.STR_SCATTR_PAGE_HEADERS.string.text
msgid "Row & Column Headers"
@@ -11527,9 +11501,8 @@ msgid "automatic"
msgstr "ራሱ በራሱ"
#: globstr.src#RID_GLOBSTR.STR_DOC_STAT.string.text
-#, fuzzy
msgid "Statistics"
-msgstr "Statistics"
+msgstr "የቁጥር መረጃ ጥናት"
#: globstr.src#RID_GLOBSTR.STR_LINKERROR.string.text
msgid "The link could not be updated."
@@ -11537,11 +11510,11 @@ msgstr "አገናኙን ማሻሻል አልተቻለም"
#: globstr.src#RID_GLOBSTR.STR_LINKERRORFILE.string.text
msgid "File:"
-msgstr "ፋይል:"
+msgstr "ፋይል :"
#: globstr.src#RID_GLOBSTR.STR_LINKERRORTAB.string.text
msgid "Sheet:"
-msgstr "ወረቀት:"
+msgstr "ወረቀት :"
#: globstr.src#RID_GLOBSTR.STR_OVERVIEW.string.text
msgid "Overview"
@@ -11742,7 +11715,6 @@ msgid "Subtotals"
msgstr "ንዑስ ድምር"
#: globstr.src#RID_GLOBSTR.STR_OPERATION_NONE.string.text
-#, fuzzy
msgctxt "globstr.src#RID_GLOBSTR.STR_OPERATION_NONE.string.text"
msgid "None"
msgstr "ምንም"
@@ -11753,11 +11725,11 @@ msgstr "ይዞታዎቹን መተካት ይፈልጋሉ ከ #?"
#: globstr.src#RID_GLOBSTR.STR_TIP_WIDTH.string.text
msgid "Width:"
-msgstr "ስፋት:"
+msgstr "ስፋት :"
#: globstr.src#RID_GLOBSTR.STR_TIP_HEIGHT.string.text
msgid "Height:"
-msgstr "እርዝመት:"
+msgstr "እርዝመት :"
#: globstr.src#RID_GLOBSTR.STR_TIP_HIDE.string.text
msgctxt "globstr.src#RID_GLOBSTR.STR_TIP_HIDE.string.text"
@@ -11853,11 +11825,11 @@ msgstr "ወደ ወረቀት መሄጃ"
#: globstr.src#RID_GLOBSTR.STR_NAME_INPUT_DEFINE.string.text
msgid "Define Name for Range"
-msgstr "ስም ይግለጽ ለመጠን"
+msgstr "ስም ይግለጹ ለመጠን"
#: globstr.src#RID_GLOBSTR.STR_NAME_ERROR_SELECTION.string.text
msgid "The selection needs to be rectangular in order to name it."
-msgstr ""
+msgstr "ምርጫው አራት ማእዘን መሆን አለበት ለመሰየም"
#: globstr.src#RID_GLOBSTR.STR_NAME_ERROR_NAME.string.text
msgid "You must enter a valid reference or type a valid name for the selected range."
@@ -11912,7 +11884,6 @@ msgid "Manual"
msgstr "በእጅ"
#: globstr.src#RID_GLOBSTR.STR_RECALC_AUTO.string.text
-#, fuzzy
msgctxt "globstr.src#RID_GLOBSTR.STR_RECALC_AUTO.string.text"
msgid "Automatic"
msgstr "ራሱ በራሱ"
@@ -12069,15 +12040,15 @@ msgstr "የገጽ ዘዴዎች"
#: globstr.src#RID_GLOBSTR.STR_ERR_DATAPILOTSOURCE.string.text
msgid "Pivot table source data is invalid."
-msgstr ""
+msgstr "የ Pivot ሰንጠረዥ ምንጭ ዳታ ዋጋ የለውም"
#: globstr.src#RID_GLOBSTR.STR_PIVOT_FIRSTROWEMPTYERR.string.text
msgid "One or more fields appear to have an empty name. Check the first row of the data source to ensure there are no empty cells."
-msgstr "አንድ ወይም ተጨማሪ ሜዳዎች ባዶ ስም ይዘዋል ፡ የመጀመሪያውን ረድፍ ዳታ ምንጭ ይመርምሩ ለማረጋገጥ ባዶ ክፍሎች እንዴለሉ"
+msgstr "አንድ ወይም ተጨማሪ ሜዳዎች ባዶ ስም ይዘዋል ፡ የመጀመሪያውን ረድፍ ዳታ ምንጭ ይመርምሩ ባዶ ክፍሎች እንደሌሉ ለማረጋገጥ"
#: globstr.src#RID_GLOBSTR.STR_PIVOT_ONLYONEROWERR.string.text
msgid "Pivot table needs at least two rows of data to create or refresh."
-msgstr ""
+msgstr "የ Pivot ሰንጠረዥ ቢያንስ የሁለት ረድፎች ዳታ ይፈልጋል ለመፍጠር ወይንም ለማነቃቃት"
#: globstr.src#RID_GLOBSTR.STR_OPTIONS_WARN_SEPARATORS.string.text
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
@@ -12093,7 +12064,7 @@ msgstr "የአሁኑን ሰአት ማስገቢያ"
#: globstr.src#RID_GLOBSTR.STR_MANAGE_NAMES.string.text
msgid "Manage Names..."
-msgstr "ስምችን ማስተዳደሪያ..."
+msgstr "የስሞች አስተዳደሪ..."
#: globstr.src#RID_GLOBSTR.STR_HEADER_NAME.string.text
msgctxt "globstr.src#RID_GLOBSTR.STR_HEADER_NAME.string.text"
@@ -12116,7 +12087,7 @@ msgstr "ሰነድ (አለም አቀፍ)"
#: globstr.src#RID_GLOBSTR.STR_ERR_NAME_EXISTS.string.text
msgid "Invalid name. Already in use for the selected scope."
-msgstr "ለተመረጠው ክልል ቀደም ሲል ዋጋ የሌለው ስም ተጠቅመዋል"
+msgstr "ዋጋ የሌለው ስም ፡ ለተመረጠው ክልል ቀደም ሲል ተጠቅመዋል"
#: globstr.src#RID_GLOBSTR.STR_ERR_NAME_INVALID.string.text
msgid "Invalid name. Only use letters, numbers and underscore."
@@ -12136,6 +12107,42 @@ msgstr ""
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "ይህ ሰነድ በሌላ ሰነድ ለማመሳከሪያነት የቀረበ ነው እና ገና አልተቀመጠም ፡ ሰነዱን ሳያስቀምጡ ከዘጉት የዳታ መጥፋት ሊያስከትል ይችላል"
+#: globstr.src#RID_GLOBSTR.STR_HEADER_COND.string.text
+msgid "First Condition"
+msgstr "የመጀመሪያ ሁኔታ"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text"
+msgid "Cell value is"
+msgstr "የክፍሉ ዋጋ"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_COLORSCALE.string.text
+msgid "ColorScale"
+msgstr "ቀለም መመጠኛ"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DATABAR.string.text
+msgid "DataBar"
+msgstr "DataBar"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text"
+msgid "between"
+msgstr "መካከል"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text"
+msgid "not between"
+msgstr "መካከል አይደለም"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_UNIQUE.string.text
+msgid "unique"
+msgstr "ልዩ"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text"
+msgid "duplicate"
+msgstr "ማባዣ"
+
#: crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text
msgctxt "crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text"
msgid "Range"
@@ -12215,7 +12222,7 @@ msgstr "እና"
#: filter.src#RID_SCDLG_FILTER.LB_OP1.2.stringlist.text
msgctxt "filter.src#RID_SCDLG_FILTER.LB_OP1.2.stringlist.text"
msgid "OR"
-msgstr "ወይም"
+msgstr "ወይንም"
#: filter.src#RID_SCDLG_FILTER.LB_OP2.1.stringlist.text
msgctxt "filter.src#RID_SCDLG_FILTER.LB_OP2.1.stringlist.text"
@@ -12225,7 +12232,7 @@ msgstr "እና"
#: filter.src#RID_SCDLG_FILTER.LB_OP2.2.stringlist.text
msgctxt "filter.src#RID_SCDLG_FILTER.LB_OP2.2.stringlist.text"
msgid "OR"
-msgstr "ወይም"
+msgstr "ወይንም"
#: filter.src#RID_SCDLG_FILTER.LB_OP3.1.stringlist.text
msgctxt "filter.src#RID_SCDLG_FILTER.LB_OP3.1.stringlist.text"
@@ -12235,7 +12242,7 @@ msgstr "እና"
#: filter.src#RID_SCDLG_FILTER.LB_OP3.2.stringlist.text
msgctxt "filter.src#RID_SCDLG_FILTER.LB_OP3.2.stringlist.text"
msgid "OR"
-msgstr "ወይም"
+msgstr "ወይንም"
#: filter.src#RID_SCDLG_FILTER.LB_OP4.1.stringlist.text
msgctxt "filter.src#RID_SCDLG_FILTER.LB_OP4.1.stringlist.text"
@@ -12245,7 +12252,7 @@ msgstr "እና"
#: filter.src#RID_SCDLG_FILTER.LB_OP4.2.stringlist.text
msgctxt "filter.src#RID_SCDLG_FILTER.LB_OP4.2.stringlist.text"
msgid "OR"
-msgstr "ወይም"
+msgstr "ወይንም"
#: filter.src#RID_SCDLG_FILTER.LB_COND1.1.stringlist.text
msgctxt "filter.src#RID_SCDLG_FILTER.LB_COND1.1.stringlist.text"
@@ -12610,10 +12617,9 @@ msgid "Shrink"
msgstr "ማሳነሻ"
#: filter.src#RID_SCDLG_FILTER.FT_DBAREA.fixedtext.text
-#, fuzzy
msgctxt "filter.src#RID_SCDLG_FILTER.FT_DBAREA.fixedtext.text"
msgid "dummy"
-msgstr "dummy"
+msgstr "አሻንጉሊት"
#: filter.src#RID_SCDLG_FILTER.FT_DBAREA_LABEL.fixedtext.text
msgctxt "filter.src#RID_SCDLG_FILTER.FT_DBAREA_LABEL.fixedtext.text"
@@ -12681,10 +12687,9 @@ msgid "Options"
msgstr "ምርጫዎች"
#: filter.src#RID_SCDLG_SPEC_FILTER.FT_DBAREA.fixedtext.text
-#, fuzzy
msgctxt "filter.src#RID_SCDLG_SPEC_FILTER.FT_DBAREA.fixedtext.text"
msgid "dummy"
-msgstr "dummy"
+msgstr "አሻንጉሊት"
#: filter.src#RID_SCDLG_SPEC_FILTER.FT_DBAREA_LABEL.fixedtext.text
msgctxt "filter.src#RID_SCDLG_SPEC_FILTER.FT_DBAREA_LABEL.fixedtext.text"
@@ -12733,7 +12738,7 @@ msgstr "እና"
#: filter.src#RID_SCDLG_PIVOTFILTER.LB_OP2.2.stringlist.text
msgctxt "filter.src#RID_SCDLG_PIVOTFILTER.LB_OP2.2.stringlist.text"
msgid "OR"
-msgstr "ወይም"
+msgstr "ወይንም"
#: filter.src#RID_SCDLG_PIVOTFILTER.LB_COND1.1.stringlist.text
msgctxt "filter.src#RID_SCDLG_PIVOTFILTER.LB_COND1.1.stringlist.text"
@@ -12987,7 +12992,6 @@ msgid "Insert or delete ~cells"
msgstr "~ክፍሎች ማስገቢያ ወይም ማጥፊያ"
#: dbnamdlg.src#RID_SCDLG_DBNAMES.BTN_FORMAT.checkbox.text
-#, fuzzy
msgid "Keep ~formatting"
msgstr "Keep ~formatting"
@@ -12997,11 +13001,11 @@ msgstr "~የመጡ ዳታዎችን አታስቀምጥ"
#: dbnamdlg.src#RID_SCDLG_DBNAMES.FT_SOURCE.fixedtext.text
msgid "Source:"
-msgstr "ምንጩ:"
+msgstr "ምንጩ :"
#: dbnamdlg.src#RID_SCDLG_DBNAMES.FT_OPERATIONS.fixedtext.text
msgid "Operations:"
-msgstr "ተግባሮች:"
+msgstr "ተግባሮች :"
#: dbnamdlg.src#RID_SCDLG_DBNAMES.BTN_ADD.pushbutton.text
msgctxt "dbnamdlg.src#RID_SCDLG_DBNAMES.BTN_ADD.pushbutton.text"
@@ -13034,42 +13038,40 @@ msgstr "የዳታቤዝ መጠን መግለጫ"
#: colorformat.src#RID_SCDLG_DATABAR.FL_VALUES.fixedline.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.FL_VALUES.fixedline.text"
msgid "Bar Colors"
-msgstr ""
+msgstr "Bar Colors"
#: colorformat.src#RID_SCDLG_DATABAR.FL_BAR_COLORS.fixedline.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.FL_BAR_COLORS.fixedline.text"
msgid "Bar Colors"
-msgstr ""
+msgstr "Bar Colors"
#: colorformat.src#RID_SCDLG_DATABAR.FL_AXIS.fixedline.text
msgid "Axis"
-msgstr ""
+msgstr "ዘንግ"
#: colorformat.src#RID_SCDLG_DATABAR.FT_MINIMUM.fixedtext.text
-#, fuzzy
msgid "Minimum:"
-msgstr "ዝቅተኛ"
+msgstr "ዝቅተኛ :"
#: colorformat.src#RID_SCDLG_DATABAR.FT_MAXIMUM.fixedtext.text
-#, fuzzy
msgid "Maximum:"
-msgstr "ከፍተኛ"
+msgstr "ከፍተኛ :"
#: colorformat.src#RID_SCDLG_DATABAR.FT_POSITIVE.fixedtext.text
msgid "Positive:"
-msgstr ""
+msgstr "አዎንታዊ :"
#: colorformat.src#RID_SCDLG_DATABAR.FT_NEGATIVE.fixedtext.text
msgid "Negative:"
-msgstr ""
+msgstr "አሉታዊ :"
#: colorformat.src#RID_SCDLG_DATABAR.FT_POSITION.fixedtext.text
msgid "Position of vertical axis"
-msgstr ""
+msgstr "የቁመት ዘንግ ቦታ"
#: colorformat.src#RID_SCDLG_DATABAR.FT_COLOR_AXIS.fixedtext.text
msgid "Color of vertical axis"
-msgstr ""
+msgstr "የቁመት ዘንግ ቀለም"
#: colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.1.stringlist.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.1.stringlist.text"
@@ -13084,12 +13086,12 @@ msgstr "ከፍተኛ"
#: colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.3.stringlist.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.3.stringlist.text"
msgid "Percentile"
-msgstr ""
+msgstr "በመቶ"
#: colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.4.stringlist.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.4.stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "ፐርሰንት"
#: colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.5.stringlist.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.5.stringlist.text"
@@ -13097,7 +13099,6 @@ msgid "Value"
msgstr "ዋጋ"
#: colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.6.stringlist.text
-#, fuzzy
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.6.stringlist.text"
msgid "Formula"
msgstr "~Formulas"
@@ -13109,7 +13110,7 @@ msgstr "ራሱ በራሱ"
#: colorformat.src#RID_SCDLG_DATABAR.LB_AXIS_POSITION.2.stringlist.text
msgid "Middle"
-msgstr ""
+msgstr "መሀከል"
#: colorformat.src#RID_SCDLG_DATABAR.LB_AXIS_POSITION.3.stringlist.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_AXIS_POSITION.3.stringlist.text"
@@ -13118,9 +13119,9 @@ msgstr "ምንም"
#: colorformat.src#RID_SCDLG_DATABAR.STR_WARN_SAME_VALUE.string.text
msgid "Min value must be smaller than max value!"
-msgstr ""
+msgstr "ዝቅተኛ ዋጋ ከከፍተኛው ዋጋ ማነስ አለበት!"
#: colorformat.src#RID_SCDLG_DATABAR.modaldialog.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.modaldialog.text"
msgid "Data Bar"
-msgstr ""
+msgstr "የዳታ ባር"
diff --git a/translations/source/am/scaddins/source/analysis.po b/translations/source/am/scaddins/source/analysis.po
index c83bf012741..10d103d29b0 100644
--- a/translations/source/am/scaddins/source/analysis.po
+++ b/translations/source/am/scaddins/source/analysis.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: analysis_funcnames.src#RID_ANALYSIS_FUNCTION_NAMES.ANALYSIS_FUNCNAME_Workday.string.text
diff --git a/translations/source/am/scp2/source/draw.po b/translations/source/am/scp2/source/draw.po
index 79d05fa2767..65c37a50614 100644
--- a/translations/source/am/scp2/source/draw.po
+++ b/translations/source/am/scp2/source/draw.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: folderitem_draw.ulf#STR_FI_NAME_ZEICHNUNG.LngText.text
diff --git a/translations/source/am/sfx2/source/doc.po b/translations/source/am/sfx2/source/doc.po
index 3c1906537ab..760c7512e7d 100644
--- a/translations/source/am/sfx2/source/doc.po
+++ b/translations/source/am/sfx2/source/doc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fdoc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-05-09 20:39+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 18:26+0200\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: doctdlg.src#DLG_DOC_TEMPLATE.FL_EDIT.fixedline.text
@@ -198,104 +198,44 @@ msgid "Template Management"
msgstr "የቴምፕሌት አስተዳዳሪ"
#: templatelocnames.src#STR_TEMPLATE_NAME1.string.text
-msgid "Blue Border"
-msgstr "ሰማያዊ ድንበር"
+msgid "Abstract Green"
+msgstr "ግልጽ ያልሆነ አረንጓዴ"
#: templatelocnames.src#STR_TEMPLATE_NAME2.string.text
-msgid "Black and White"
-msgstr "ጥቁር እና ነጭ"
+msgid "Abstract Red"
+msgstr "ግልጽ ያልሆነ ቀይ"
#: templatelocnames.src#STR_TEMPLATE_NAME3.string.text
-msgid "Blue and Grey"
-msgstr "ሰማያዊ እና ግራጫ"
+msgid "Abstract Yellow"
+msgstr "ግልጽ ያልሆነ ቢጫ"
#: templatelocnames.src#STR_TEMPLATE_NAME4.string.text
-msgid "Blue Lines and Gradients"
-msgstr "ሰማያዊ መስመር እና ከፍታዎች"
+msgid "Bright Blue"
+msgstr "ደማቅ ሰማያዊ"
#: templatelocnames.src#STR_TEMPLATE_NAME5.string.text
-msgid "Blue with Bottom Title"
-msgstr "ሰማያዊ ከስር አርእስት"
+msgid "DNA"
+msgstr "DNA"
#: templatelocnames.src#STR_TEMPLATE_NAME6.string.text
-msgid "Notebook"
-msgstr "ማስታወሻ ደብተር"
+msgid "Inspiration"
+msgstr "ቀስቃሽ"
#: templatelocnames.src#STR_TEMPLATE_NAME7.string.text
-msgid "Brown"
-msgstr "ቡናማ"
+msgid "Lush Green"
+msgstr "ለምለም አረንጓዴ"
#: templatelocnames.src#STR_TEMPLATE_NAME8.string.text
-msgid "Characters with Glow"
-msgstr "ብርሀን የሚሰጡ ባህሪዎች"
+msgid "Metropolis"
+msgstr "ትልቅ ከተማ"
#: templatelocnames.src#STR_TEMPLATE_NAME9.string.text
-msgid "Forest"
-msgstr "ጫካ"
+msgid "Sunset"
+msgstr "ፀሐይ መጥለቂያ"
#: templatelocnames.src#STR_TEMPLATE_NAME10.string.text
-msgid "Fresco"
-msgstr "ጄሶ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME11.string.text
-msgid "Glacier"
-msgstr "Glacier"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME12.string.text
-msgid "Green with White Lines"
-msgstr "አረንጓዴ በነጭ መስመሮች"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME13.string.text
-msgid "Keyboard"
-msgstr "የፊደል ገበታ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME14.string.text
-msgid "Light Blue Shapes"
-msgstr "ነጣ ያሉ ሰማያዊ ቅርጾች"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME15.string.text
-msgid "Numbers on Dark Background"
-msgstr "ቁጥሮች በጥቁር መደብ ላይ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME16.string.text
-msgid "Blue Step Gradients"
-msgstr "ሰማያዊ ደረጃ ከፍታዎች"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME17.string.text
-msgid "White Blue and Lightnings"
-msgstr "ነጣ ያለ ሰማያዊ እና መብረቅ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME18.string.text
-msgid "Noise Paper"
-msgstr "ወረቀት መረበሻ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME19.string.text
-msgid "Red Noise Shapes"
-msgstr "ቀይ መረበሻ ቅርጾች"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME20.string.text
-msgid "Rounded Rectangles"
-msgstr "የተከበቡ አራት ማእዘኖች"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME21.string.text
-msgid "Blue and Red Gradient"
-msgstr "ሰማያዊ እና ቀይ ከፍታ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME22.string.text
-msgid "Technical Polygon"
-msgstr "Technical Polygon"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME23.string.text
-msgid "Tunnel"
-msgstr "ዋሻ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME24.string.text
-msgid "Water"
-msgstr "ውሀ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME25.string.text
-msgid "Wine"
-msgstr "ወይን"
+msgid "Vintage"
+msgstr "የጥንት"
#: doc.src#MSG_CONFIRM_FILTER.querybox.text
msgid ""
diff --git a/translations/source/am/svtools/source/contnr.po b/translations/source/am/svtools/source/contnr.po
index 388bb6a74ab..28289723811 100644
--- a/translations/source/am/svtools/source/contnr.po
+++ b/translations/source/am/svtools/source/contnr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Fcontnr.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-02-16 19:19+0200\n"
+"PO-Revision-Date: 2012-07-04 17:51+0200\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: fileview.src#STR_SVT_FILEVIEW_COLUMN_TITLE.string.text
@@ -27,7 +27,7 @@ msgstr "መጠን"
#: fileview.src#STR_SVT_FILEVIEW_COLUMN_DATE.string.text
msgid "Date modified"
-msgstr "የተሻሻለበት ቀን"
+msgstr "የተሻሻለበት ቀን"
#: fileview.src#STR_SVT_FILEVIEW_COLUMN_TYPE.string.text
msgctxt "fileview.src#STR_SVT_FILEVIEW_COLUMN_TYPE.string.text"
@@ -36,7 +36,7 @@ msgstr "አይነት"
#: fileview.src#STR_SVT_FILEVIEW_ERR_MAKEFOLDER.string.text
msgid "Could not create the folder %1."
-msgstr "ፎልደሩን መፍጠር አልተቻለም %1"
+msgstr "ፎልደሩን መፍጠር አልተቻለም %1"
#: fileview.src#STR_SVT_BYTES.string.text
msgid "Bytes"
@@ -61,7 +61,7 @@ msgstr "~ማጥፊያ"
#: fileview.src#RID_FILEVIEW_CONTEXTMENU.MID_FILEVIEW_RENAME.menuitem.text
msgid "~Rename"
-msgstr "~እንደገና መሰየሚያ"
+msgstr "~እንደገና መሰየሚያ"
#: fileview.src#DLG_SVT_QUERYDELETE.TXT_ENTRY.fixedtext.text
msgid "Entry:"
@@ -69,7 +69,7 @@ msgstr "መግቢያ :"
#: fileview.src#DLG_SVT_QUERYDELETE.TXT_QUERYMSG.fixedtext.text
msgid "Are you sure you want to delete the selected data?"
-msgstr "በእርግጥ የተመረጠውን ሰነድ ማጥፋት ይፈልጋሉ?"
+msgstr "በእርግጥ የተመረጠውን ሰነድ ማጥፋት ይፈልጋሉ?"
#: fileview.src#DLG_SVT_QUERYDELETE.BTN_YES.pushbutton.text
msgctxt "fileview.src#DLG_SVT_QUERYDELETE.BTN_YES.pushbutton.text"
@@ -78,7 +78,7 @@ msgstr "~ማጥፊያ"
#: fileview.src#DLG_SVT_QUERYDELETE.BTN_ALL.pushbutton.text
msgid "Delete ~All"
-msgstr "~ሁሉንም ማጥፊያ"
+msgstr "~ሁሉንም ማጥፊያ"
#: fileview.src#DLG_SVT_QUERYDELETE.BTN_NO.pushbutton.text
msgid "Do ~Not Delete"
@@ -86,7 +86,7 @@ msgstr "~አታጥፋ"
#: fileview.src#DLG_SVT_QUERYDELETE.modaldialog.text
msgid "Confirm Delete"
-msgstr "ማጥፋቱን ያረጋግጡ"
+msgstr "ማጥፋቱን ያረጋግጡ"
#: svcontnr.src#STR_SVT_ACC_DESC_TABLISTBOX.string.text
msgid "Row: %1, Column: %2"
@@ -106,15 +106,15 @@ msgstr "ፋይል"
#: svcontnr.src#STR_SVT_ACC_EMPTY_FIELD.string.text
msgid "Empty Field"
-msgstr "ባዶ ሜዳ"
+msgstr "ባዶ ሜዳ"
#: templwin.src#STR_SVT_NEWDOC.string.text
msgid "New Document"
-msgstr "አዲስ ሰነድ"
+msgstr "አዲስ ሰነድ"
#: templwin.src#STR_SVT_MYDOCS.string.text
msgid "My Documents"
-msgstr "የኔ ሰነዶች"
+msgstr "የኔ ሰነዶች"
#: templwin.src#STR_SVT_TEMPLATES.string.text
msgid "Templates"
@@ -126,11 +126,11 @@ msgstr "ናሙናዎች"
#: templwin.src#TB_SVT_FILEVIEW.TI_DOCTEMPLATE_BACK.toolboxitem.text
msgid "Back"
-msgstr "ወደ ኋላ"
+msgstr "ወደ ኋላ"
#: templwin.src#TB_SVT_FILEVIEW.TI_DOCTEMPLATE_PREV.toolboxitem.text
msgid "Up One Level"
-msgstr "አንድ ደረጃ ወደ ላይ"
+msgstr "አንድ ደረጃ ወደ ላይ"
#: templwin.src#TB_SVT_FILEVIEW.TI_DOCTEMPLATE_PRINT.toolboxitem.text
msgid "Print"
@@ -138,15 +138,15 @@ msgstr "ማተሚያ"
#: templwin.src#TB_SVT_FRAMEWIN.TI_DOCTEMPLATE_DOCINFO.toolboxitem.text
msgid "Document Properties"
-msgstr "የሰነድ ባህሪዎች"
+msgstr "የሰነድ ባህሪዎች"
#: templwin.src#TB_SVT_FRAMEWIN.TI_DOCTEMPLATE_PREVIEW.toolboxitem.text
msgid "Preview"
-msgstr "ቅድመ እይታ"
+msgstr "ቅድመ እይታ"
#: templwin.src#DLG_DOCTEMPLATE.FT_DOCTEMPLATE_LINK.fixedtext.text
msgid "~Get more templates online..."
-msgstr "ተጨማሪ ቴምፕሌትስ በመስመር ላይ ያግኙ ..."
+msgstr "ተጨማሪ ቴምፕሌትስ በመስመር ላይ ያግኙ ..."
#: templwin.src#DLG_DOCTEMPLATE.BTN_DOCTEMPLATE_MANAGE.pushbutton.text
msgid "Organi~ze..."
@@ -162,7 +162,7 @@ msgstr "~መክፈቻ"
#: templwin.src#DLG_DOCTEMPLATE.modaldialog.text
msgid "Templates and Documents"
-msgstr "ቴምፕሌቶች እና ሰነዶች"
+msgstr "ቴምፕሌቶች እና ሰነዶች"
#: templwin.src#STRARY_SVT_DOCINFO.1.itemlist.text
msgctxt "templwin.src#STRARY_SVT_DOCINFO.1.itemlist.text"
@@ -179,7 +179,7 @@ msgstr "ቀን"
#: templwin.src#STRARY_SVT_DOCINFO.4.itemlist.text
msgid "Keywords"
-msgstr "ቁልፍ ቃል"
+msgstr "ቁልፍ ቃል"
#: templwin.src#STRARY_SVT_DOCINFO.5.itemlist.text
msgid "Description"
@@ -192,19 +192,19 @@ msgstr "አይነት"
#: templwin.src#STRARY_SVT_DOCINFO.7.itemlist.text
msgid "Modified on"
-msgstr "ተሻሽሏል በ"
+msgstr "ተሻሽሏል በ"
#: templwin.src#STRARY_SVT_DOCINFO.8.itemlist.text
msgid "Modified by"
-msgstr "የተሻሻለው በ"
+msgstr "የተሻሻለው በ"
#: templwin.src#STRARY_SVT_DOCINFO.9.itemlist.text
msgid "Printed on"
-msgstr "የታተመው በ"
+msgstr "የታተመው በ"
#: templwin.src#STRARY_SVT_DOCINFO.10.itemlist.text
msgid "Printed by"
-msgstr "የታተመው በ"
+msgstr "የታተመው በ"
#: templwin.src#STRARY_SVT_DOCINFO.11.itemlist.text
msgid "Subject"
@@ -217,16 +217,16 @@ msgstr "መጠን"
#: templwin.src#STR_SVT_NEWDOC_HELP.string.text
msgid "Click here to create new documents."
-msgstr "እዚህ ይጫኑ አዲስ ሰነድ ለመፍጠር"
+msgstr "እዚህ ይጫኑ አዲስ ሰነድ ለመፍጠር"
#: templwin.src#STR_SVT_MYDOCS_HELP.string.text
msgid "Contains your letters, reports and other documents"
-msgstr "የእርስዎን ደብዳቤዎች መግለጫዎች እና ሌሎች ሰነዶችን ይዟል"
+msgstr "የእርስዎን ደብዳቤዎች መግለጫዎች እና ሌሎች ሰነዶችን ይዟል"
#: templwin.src#STR_SVT_TEMPLATES_HELP.string.text
msgid "Contains templates for creating new documents"
-msgstr "አዲስ ሰነድ መፍጠሪያ ቴምፕሌቶችን ይዟል"
+msgstr "አዲስ ሰነድ መፍጠሪያ ቴምፕሌቶችን ይዟል"
#: templwin.src#STR_SVT_SAMPLES_HELP.string.text
msgid "Contains a selection of sample letters, reports and other documents"
-msgstr "የተመረጡ ናሙና ደብዳቤዎች መግለጫዎች እና ሌሎች ሰነዶችን ይዟል"
+msgstr "የተመረጡ ናሙና ደብዳቤዎች መግለጫዎች እና ሌሎች ሰነዶችን ይዟል"
diff --git a/translations/source/am/svtools/source/dialogs.po b/translations/source/am/svtools/source/dialogs.po
index ece571b0c2d..88fe49427cd 100644
--- a/translations/source/am/svtools/source/dialogs.po
+++ b/translations/source/am/svtools/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-05-13 18:34+0200\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -719,66 +719,6 @@ msgstr "የተወሰነውን ፋይል መክፈት አልተቻለም"
msgid "$(ERR) activating object"
msgstr "$(ERR) እቃውን በማስነሳት ላይ"
-#: so3res.src#STR_INS_OBJECT.string.text
-msgid "Inserts a new %1-Object into your document."
-msgstr "ማስገቢያ አዲስ %1-እቃ ወደ እርስዎ ሰነድ ውስጥ"
-
-#: so3res.src#STR_INS_OBJECT_ICON.string.text
-msgid "Inserts a new %1-Object into your document as a symbol."
-msgstr "ማስገቢያ አዲስ %1-እቃ ወደ እርስዎ ሰነድ ውስጥ እንደ ምልክት"
-
-#: so3res.src#STR_INS_FILE.string.text
-msgid "Inserts the contents of the file into your document to enable later editing in the original application."
-msgstr "የፋይሉን ይዞታዎች ያስገቡ ወደ እርስዎ ሰነድ በኋላ ማረም እንዲችሉ ዋናውን መተግበሪያ"
-
-#: so3res.src#STR_INS_PLUGIN.string.text
-msgid "Inserts a plug-in object into your document with a reference to the plug-in data. When the object is activated, the plug-in is automatically executed."
-msgstr "ተሰኪውን - እቃ ወደ እርስዎ ሰነድ ውስጥ ያስገቡ በማመሳከሪያው ተስኪ ዳታ ፡ እቃው በሚነሳበት ጊዜ ተስኪው ራሱ በራሱ ይፈጸማል"
-
-#: so3res.src#STR_INS_APPLET.string.text
-msgid "Inserts an applet object into your document. When the object is activated, the applet is automatically executed."
-msgstr "የእቃውን ክፍል ወደ እርስዎ ሰነድ ውስጥ ያስገቡ ፡ እቃው በሚነሳበት ጊዜ ክፍሉ ራሱ በራሱ ይፈጸማል"
-
-#: so3res.src#STR_INS_FILE_ICON.string.text
-msgid "Inserts the contents of the file as an icon into your document."
-msgstr "የፋይል ይዞታዎችን እንደ ምልክት ማስገቢያ ወደ እርስዎ ሰነድ ውስጥ"
-
-#: so3res.src#STR_INS_FILE_LINK.string.text
-msgid "Inserts the contents of the file into your document and creates a link to the source file. Changes made to the source file will be reflected in your document."
-msgstr "የፋይሉን ይዞታዎች ወደ እርስዎ ሰነድ ማስገቢያ እና አገናኝ መፍጠሪያ ወደ ፋይሉ ምንጭ ፡ ወደ ፋይሉ ምንጭ የሚደረግ ማንኛውም ለውጥ በእርስዎ ሰነድ ላይ ይታያል"
-
-#: so3res.src#STR_INS_FILE_ICON_LINK.string.text
-msgid "Inserts an icon into your document representing the file. Changes made to the source file will be reflected in your document."
-msgstr "ወደ እርስዎ ሰነድ ውስጥ ምልክቶች ማስገቢያ ፋይሉ የሚወክለውን ፡ ወደ ፋይሉ ምንጭ የሚደረግ ማንኛውም ለውጥ በእርስዎ ሰነድ ላይ ይታያል"
-
-#: so3res.src#STR_PASTE.string.text
-msgid "Pastes the contents of the clipboard as %1 in your document."
-msgstr "የቁራጭ ሰሌዳውን ይዞታዎች መለጠፊያ ወደ %1 እርስዎ ሰነድ ውስጥ"
-
-#: so3res.src#STR_CONVERT_TO.string.text
-msgid "Converts the selected %1object to the object type %2."
-msgstr "መቀየሪያ የተመረጠውን %1 እቃ ወደ እቃው አይነት %2."
-
-#: so3res.src#STR_ACTIVATE_AS.string.text
-msgid "All objects of type %1 are activated as %2, but not converted"
-msgstr "ሁሉንም የእቃዎች አይነት %1 ተነስተዋል እንደ %2, ነገር ግን አልተቀየሩም"
-
-#: so3res.src#STR_VERB_OPEN.string.text
-msgid "~Open"
-msgstr "~መክፈቻ"
-
-#: so3res.src#STR_VERB_PROPS.string.text
-msgid "~Properties"
-msgstr "~ባህሪዎች"
-
-#: so3res.src#STR_PLUGIN_CANT_SHOW.string.text
-msgid "Plug-in % cannot be displayed."
-msgstr "ተሰኪ-ውን % ማሳያት አልተቻለም"
-
-#: so3res.src#STR_ERROR_DDE.string.text
-msgid "DDE link to % for % area % are not available."
-msgstr "DDE አገናኝ ወደ % ከ % ቦታ % ዝግጁ አይደለም"
-
#: so3res.src#STR_ERROR_OBJNOCREATE.string.text
msgid "Object % could not be inserted."
msgstr "አካሉን % ማስገባት አልተቻለም"
@@ -791,18 +731,10 @@ msgstr "አካሉን ከ ፋይል % ማስገባት አልተቻለም"
msgid "Plug-in from document % could not be inserted."
msgstr "ተሰ-ኪውን ከ ሰነድ ውስጥ % ማስገባት አልተቻለም"
-#: so3res.src#STR_QUERYUPDATELINKS.string.text
-msgid "Update all links?"
-msgstr "ሁሉንም አገናኞች ላሻሽል?"
-
#: so3res.src#STR_FURTHER_OBJECT.string.text
msgid "Further objects"
msgstr "ተጨማሪ እቃዎች"
-#: so3res.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "Applet ማረሚያ"
-
#: so3res.src#MI_PLUGIN.MI_PLUGIN_DEACTIVATE.menuitem.text
msgid "Deactivate"
msgstr "አታስነሳ"
diff --git a/translations/source/am/swext/mediawiki/help.po b/translations/source/am/swext/mediawiki/help.po
index 50fb6fd8ae1..3964fa2cfdb 100644
--- a/translations/source/am/swext/mediawiki/help.po
+++ b/translations/source/am/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+swext%2Fmediawiki%2Fhelp.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-30 00:51+0200\n"
+"PO-Revision-Date: 2012-07-08 20:35+0200\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -22,7 +22,7 @@ msgstr "ዊኪ አታሚ"
#: wiki.xhp#bm_id3154408.help.text
msgid "<bookmark_value>Wiki;Wiki Publisher</bookmark_value><bookmark_value>Wiki Publisher</bookmark_value><bookmark_value>extensions;MediaWiki</bookmark_value>"
-msgstr "<bookmark_value>ዊኪ ;ዊኪ አታሚ</bookmark_value><bookmark_value>ዊኪ አታሚ</bookmark_value><bookmark_value>ተጨማሪዎች ;ብዙሀን መገናኛ ዊኪ</bookmark_value>"
+msgstr "<bookmark_value>ዊኪ ;ዊኪ አታሚ</bookmark_value><bookmark_value>ዊኪ አታሚ</bookmark_value><bookmark_value>ተጨማሪዎች ;MediaWiki </bookmark_value>"
#: wiki.xhp#hd_id5993530.help.text
msgctxt "wiki.xhp#hd_id5993530.help.text"
@@ -31,7 +31,7 @@ msgstr "ዊኪ አታሚ"
#: wiki.xhp#par_id9647511.help.text
msgid "<ahelp hid=\".\">By using the Wiki Publisher you can upload your current Writer text document to a MediaWiki server. After uploading, all Wiki users can read your document on the Wiki.</ahelp>"
-msgstr "<ahelp hid=\".\">ዊኪ አታሚን በመጠቀም አሁን የጻፉትን የጽሁፍ ሰነድ ወደ ብዙሀን መገናኛ ዊኪ ሰርቨር መጫን ይችላሉ ፡ ጭነው ሲጨርሱ ሁሉም የዊኪ ተጠቃሚዎች እርስዎ የጫኑትን ሰነድ በዊኪ ላይ ማንበብ ይችላሉ</ahelp>"
+msgstr "<ahelp hid=\".\">ዊኪ አታሚን በመጠቀም አሁን የጻፉትን የጽሁፍ ሰነድ ወደ MediaWiki ሰርቨር መጫን ይችላሉ ፡ ጭነው ሲጨርሱ ሁሉም የዊኪ ተጠቃሚዎች እርስዎ የጫኑትን ሰነድ በዊኪ ላይ ማንበብ ይችላሉ</ahelp>"
#: wiki.xhp#par_id6468703.help.text
msgid "<ahelp hid=\".\">Choose <item type=\"menuitem\">File - Send - To MediaWiki</item> to upload the current Writer document to a MediaWiki server.</ahelp>"
@@ -103,7 +103,7 @@ msgstr "በመግቢያ ቃል ሳጥን ውስጥ የመግቢያ ቃልዎን
#: wiki.xhp#par_id292062.help.text
msgid "Optionally enable \"Save password\" to save the password between sessions. A master password is used to maintain access to all saved passwords. Choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security</item> to enable the master password. \"Save password\" is unavailable when the master password is not enabled."
-msgstr "በምርጫ ያስችሉ \"የመግቢያ ቃል ማስቀመጫ\" የመግቢያ ቃሉን ለማስቀመጥ በክፍለ ጊዜዎች መሀከል ፡ ዋናው የመግቢያ ቃል የተቀመጡትን ሁሉንም የመግቢያ ቃሎች ይጠብቃል ይንከባከባል ፡ ይምረጡ <item type=\"menuitem\">መሳሪያዎች - ምርጫዎች - %PRODUCTNAME - ደህንነት </item> ዋናውን የመግቢያ ቃል ለማስቻል ፡ \"የመግቢያ ቃል ማስቀመጫ\" አይኖርም ዋናውን የመግቢያ ቃል ካላስቻሉ "
+msgstr "በምርጫ ያስችሉ \"የመግቢያ ቃል ማስቀመጫ\" የመግቢያ ቃሉን ለማስቀመጥ በክፍለ ጊዜዎች መሀከል ፡ ዋናው የመግቢያ ቃል የተቀመጡትን ሁሉንም የመግቢያ ቃሎች ይጠብቃል ይንከባከባል ፡ ይምረጡ <item type=\"menuitem\">መሳሪያዎች - ምርጫዎች - %PRODUCTNAME - ደህንነት </item> ዋናውን የመግቢያ ቃል ለማስቻል ፡ \"የመግቢያ ቃል ማስቀመጫ\" አይኖርም ዋናውን የመግቢያ ቃል ካላስቻሉ"
#: wiki.xhp#hd_id7044892.help.text
msgid "To Create a New Wiki Page"
@@ -215,15 +215,16 @@ msgstr "ራስጌዎች"
#: wikiformats.xhp#par_id508133.help.text
msgid "Apply a heading paragraph style to the headings in your Writer document. The Wiki will show the heading styles of the same outline level, formatted as defined by the Wiki engine."
-msgstr ""
+msgstr "የአርእስት አንቀጽ ዘዴ ለእርእስቶቹ በመጻፊያው ሰነድ ውስጥ ያስገቡ ፡ ዊኪ ተመሳሳይ የአርእስት ዘዴዎች በተመሳሳይ ረቂቅ ያሳያል ፡ በዊኪ አቀራረብ አገላለጽ"
#: wikiformats.xhp#hd_id7217627.help.text
msgid "Hyperlinks"
msgstr "Hyperlinks"
#: wikiformats.xhp#par_id3735465.help.text
+#, fuzzy
msgid "Native OpenDocument hyperlinks are transformed into \"external\" Wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the Wiki web. For creating Wiki links that point to other subjects of the same Wiki domain, use Wiki links."
-msgstr ""
+msgstr "Native OpenDocument hyperlinks are transformed into \"external\" Wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the Wiki web. For creating Wiki links that point to other subjects of the same Wiki domain, use Wiki links."
#: wikiformats.xhp#hd_id941190.help.text
msgid "Lists"
@@ -231,7 +232,7 @@ msgstr "ዝርዝሮች"
#: wikiformats.xhp#par_id8942838.help.text
msgid "Lists can reliably be exported when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use Format - Bullets and Numbering to define and apply the respective list style."
-msgstr ""
+msgstr "አስተማማኝ ዝርዝሮችን መላክ ይቻላል ለሁሉም ዝርዝር ተስማሚ የዝርዝር ዘዴ ሲጠቀሙ ፡ ይጠቀሙ ቁጥር መስጫ ወይንም የነጥቦችን ምልክት በመጻፊያ ውስጥ ለማመንጨት ፡ ዝርዝር ብቻ ከፈለጉ ያለ ቁጥር መስጫ ወይንም ነጥቦችን ፡ ይጠቀሙ አቀራረብ - ነጥቦች እና ቁጥር መስጫ የእያንዳንዱን ዝርዝር ዘዴ ለመግለጽ እና ለመፈጸም"
#: wikiformats.xhp#hd_id7026886.help.text
msgid "Paragraphs"
@@ -247,11 +248,11 @@ msgstr "ግልጽ የጽሁፍ ማሰለፊያ ለዊክ ጽሁፎች መጠቀ
#: wikiformats.xhp#hd_id7486190.help.text
msgid "Pre-formatted text"
-msgstr ""
+msgstr "Pre-formatted ጽሁፍ"
#: wikiformats.xhp#par_id1459395.help.text
msgid "A paragraph style with a fixed-width font is transformed as pre-formatted text. Pre-formatted text is shown on the Wiki with a border around the text."
-msgstr ""
+msgstr "የአንቀጽ ዘዴ በተወሰነ-ስፋት ፊደል ይቀየራል እንደ pre-formatted ጽሁፍ ፡ Pre-formatted text በዊኪ ላይ ጽሁፉ በድንበር ተከቦ ይታያል"
#: wikiformats.xhp#hd_id4834131.help.text
msgid "Character styles"
@@ -259,7 +260,7 @@ msgstr "የባህሪ ዘዴዎች"
#: wikiformats.xhp#par_id6397595.help.text
msgid "Character styles modify the appearance of parts of a paragraph. The transformation supports bold, italics, bold/italics, subscript and superscript. All fixed width fonts are transformed into the Wiki typewriter style."
-msgstr ""
+msgstr "የባህሪ ዘዴዎች የአንቀጹን ክፍል አቀራረቡን ያሻሽላሉ ፡ የተቀየረው ማድመቅን ፡ ማዝመምን ፡ ትንሽ ከፍ ብሎ መጻፍን ፡ በትንንሽ ፊደል መጻፍን ይደግፋል ፡ ሁሉንም የተወሰነ ስፋት ያላቸው ፊደሎች ወደ ዊኪ የአጻጻፍ ዘዴ ይቀየራሉ"
#: wikiformats.xhp#hd_id5152745.help.text
msgid "Footnotes"
@@ -267,7 +268,7 @@ msgstr "የግርጌ ማስታወሻዎች"
#: wikiformats.xhp#par_id5238196.help.text
msgid "Note: The transformation uses the new style of footnotes with <ref> and <references> tags that requires the Cite.php extension to be installed into MediaWiki. If those tags occur as plain text in the transformation result, ask the Wiki administrator to install this extension."
-msgstr ""
+msgstr "ማስታወሻ : መቀየሪያው አዲሱን የግርጌ ማስታወሻን ዘዴ ይጠቀማል ከ <ref> እና <references> tags that requires the Cite.php extension to be installed into MediaWiki. If those tags occur እንደ መደበኛ ጽሁፍ ከተገኙ በመቀየሪያው ውጤት ውስጥ የዊኪ አስተዳዳሪውን ተጨማሪዎቹን እንዲገጥም ይጠይቁ"
#: wikiformats.xhp#hd_id9405499.help.text
msgid "Images"
@@ -275,7 +276,7 @@ msgstr "ምስሎች"
#: wikiformats.xhp#par_id3541673.help.text
msgid "Images cannot be exported by a transformation producing a single file of Wiki text. However, if the image is already uploaded to the target Wiki domain (e. g. WikiMedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported."
-msgstr ""
+msgstr "ምስሎችን መላክ አይቻልም በመቀየሪያው ነጠላ ፋይል እንዲፈጥሩ በዊክ ጽሁፍ ላይ ፡ ነገር ግን ምስሉ ቀደም ብሎ ተጭኖ ከሆነ ወደ ኢላማው ዊኪ ግዛት (ለምሳሌ WikiMedia Commons ) ከዚያ መቀየሪያው ዋጋ ያለው የምስል ቁራጭ (tag) ምስሉን ያካተተ ይፈጥራል ፡ የምስል መግለጫዎችም የተደገፉ ናቸው"
#: wikiformats.xhp#hd_id2162236.help.text
msgid "Tables"
@@ -283,11 +284,11 @@ msgstr "ሰንጠረዦች"
#: wikiformats.xhp#par_id3037202.help.text
msgid "Simple tables are supported well. Table headers are translated into corresponding Wiki style table headers. However, custom formatting of table borders, column sizes and background colors is ignored."
-msgstr ""
+msgstr "ቀላል ሰንጠረዦች የተደገፉ ናቸው ፡ የሰንጠረዥ ራስጌዎች ይቀየራሉ ወደ ተስማሚው የዊኪ ዘዴ ሰንጠረዥ ራስጌ ፡ ነገር ግን custom formatting የሰንጠረዥ ድንበሮች ፡ አምዶች መጠኖች እና የመደቦች ቀለም ይተዋሉ"
#: wikiformats.xhp#hd_id2954496.help.text
msgid "Joined Cells"
-msgstr ""
+msgstr "የተጋጠሙ ክፍሎች"
#: wikiformats.xhp#par_id8253730.help.text
msgid "OpenDocument and especially LibreOffice represent tables that have joined cells that span rows as tables with nested tables. In contrast, the wiki model of table is to declare column and row spans for such joined cells. "
@@ -295,7 +296,7 @@ msgstr ""
#: wikiformats.xhp#par_id8163090.help.text
msgid "If only columns of the same row are joined, the result of the transformation resembles the source document very well."
-msgstr ""
+msgstr "አምዶች ብቻ ከተመሳሳይ ረድፎች ጋር ከተጋጠሙ ፡ የለውጡ ውጤቱ በጣም የሰነዱን ምንጭ ይመስላል"
#: wikiformats.xhp#hd_id425122.help.text
msgid "Borders"
@@ -307,7 +308,7 @@ msgstr ""
#: wikiformats.xhp#hd_id6255073.help.text
msgid "Charset and special characters"
-msgstr ""
+msgstr "Charset and የተለዩ ባህሪዎች"
#: wikiformats.xhp#par_id8216193.help.text
msgid "The charset of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default charset. This might cause \"special characters\" to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can cut and paste the transformation result to your program of choice."
diff --git a/translations/source/am/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po b/translations/source/am/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
index 9110d7cc2c9..63612e0f1e5 100644
--- a/translations/source/am/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
+++ b/translations/source/am/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+swext%2Fmediawiki%2Fsrc%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FCustom.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-04-13 00:43+0200\n"
+"PO-Revision-Date: 2012-07-01 20:04+0200\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -57,7 +57,7 @@ msgstr "~የመግቢያ ቃል"
#: WikiExtension.xcu#.WikiExtension.Strings.Dlg_SendTitle.value.text
msgid "Send to MediaWiki"
-msgstr "ወደ ሜዲያ ዊኪ መላኪያ"
+msgstr "ወደ MediaWiki መላኪያ"
#: WikiExtension.xcu#.WikiExtension.Strings.Dlg_WikiArticle.value.text
msgid "Wiki article"
@@ -89,7 +89,7 @@ msgstr "~መላኪያ"
#: WikiExtension.xcu#.WikiExtension.Strings.Dlg_RemoveButton.value.text
msgid "~Remove"
-msgstr "ማስወገጃ"
+msgstr "~ማስወገጃ"
#: WikiExtension.xcu#.WikiExtension.Strings.Dlg_NewWikiPage_Label1.value.text
msgid "A wiki article with the title '$ARG1' does not exist yet. Do you want to create a new article with that name?"
@@ -97,7 +97,7 @@ msgstr "የ ዊኪ ጽሁፍ በዚህ አርእስት '$ARG1' እስከ አሁ
#: WikiExtension.xcu#.WikiExtension.Strings.Dlg_SendToMediaWiki_Label1.value.text
msgid "Media~Wiki Server"
-msgstr "የሜዲያ~ዊኪ ሰርቨር"
+msgstr "የ Media~Wiki ሰርቨር"
#: WikiExtension.xcu#.WikiExtension.Strings.Dlg_SendToMediaWiki_Label2.value.text
msgid "~Title"
diff --git a/translations/source/ar/cui/source/dialogs.po b/translations/source/ar/cui/source/dialogs.po
index f5444c7d1b0..67dacf04172 100644
--- a/translations/source/ar/cui/source/dialogs.po
+++ b/translations/source/ar/cui/source/dialogs.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-21 22:12+0200\n"
-"Last-Translator: safa <safaalfulaij@hotmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 06:17+0200\n"
+"Last-Translator: Faisal <fmalotaibi@kacst.edu.sa>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_WORD.fixedtext.text
@@ -1182,10 +1182,6 @@ msgstr "خصائص الإطار العائم"
msgid "Select File for Floating Frame"
msgstr "اختيار ملف للإطار العائم"
-#: svuidlg.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "تحرير البُريمج"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VERSION.string.text
msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
msgstr "الإصدارة %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
@@ -1200,7 +1196,7 @@ msgstr "وفر هذه الإصدارة %OOOVENDOR."
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_COPYRIGHT.string.text
msgid "Copyright © 2000 - 2012 LibreOffice contributors and/or their affiliates"
-msgstr ""
+msgstr "حقوق النشر © 2000 - 2012 لمساهمي ليبرأوفيس و\\أو الجهات التي ينتمون إليها"
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BASED.string.text
msgid "LibreOffice was based on OpenOffice.org"
@@ -1222,18 +1218,10 @@ msgstr "http://www.libreoffice.org"
msgid "http://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
-#: about.src#RID_DEFAULTABOUT.ABOUT_STR_LINK_LICENSE.string.text
-msgid "http://www.libreoffice.org/download/license/"
-msgstr "http://www.libreoffice.org/download/license/"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CREDITS.pushbutton.text
msgid "Credits"
msgstr "الإشادات"
-#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_LICENSE.pushbutton.text
-msgid "License"
-msgstr "الرخصة"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_WEBSITE.pushbutton.text
msgid "Website"
msgstr "الموقع"
diff --git a/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po b/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
index e2812b18de5..e175cedf4e7 100644
--- a/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+officecfg%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FUI.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2012-06-22 18:41+0200\n"
"Last-Translator: safa <safaalfulaij@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: WriterReportWindowState.xcu#..WriterReportWindowState.UIElements.States.private_resource/toolbar/standardbar.UIName.value.text
@@ -10241,6 +10241,10 @@ msgstr "~تنسيق شرطي..."
msgid "Conditional Formatting..."
msgstr "~تنسيق شرطي..."
+#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ConditionalFormatManagerDialog.Label.value.text
+msgid "Manage..."
+msgstr ""
+
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_Deselect.Label.value.text
msgid "Undo Selection"
msgstr "تراجع عن التحديد"
diff --git a/translations/source/ar/sc/source/ui/src.po b/translations/source/ar/sc/source/ui/src.po
index 4a4bbfe4a0e..d551d45f886 100644
--- a/translations/source/ar/sc/source/ui/src.po
+++ b/translations/source/ar/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fsrc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2012-06-13 14:51+0200\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9587,6 +9587,8 @@ msgid "Settings:"
msgstr "الإعدادات:"
#: solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text
+#, fuzzy
+msgctxt "solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text"
msgid "Edit..."
msgstr "تحرير..."
@@ -9619,9 +9621,8 @@ msgstr ""
msgid "Conditional Formatting for"
msgstr ""
-#: condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text
-msgctxt "condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text"
-msgid "Condition"
+#: condformatdlg.src#RID_COND_ENTRY.STR_CONDITION.string.text
+msgid "Condition "
msgstr ""
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.1.stringlist.text
@@ -9629,6 +9630,7 @@ msgid "All Cells"
msgstr ""
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text"
msgid "Cell value is"
msgstr ""
@@ -9661,14 +9663,17 @@ msgid "not equal to"
msgstr ""
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text"
msgid "between"
msgstr ""
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text"
msgid "not between"
msgstr ""
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text"
msgid "duplicate"
msgstr ""
@@ -9864,6 +9869,25 @@ msgctxt "subtdlg.src#RID_SCDLG_SUBTOTALS.tabdialog.text"
msgid "Subtotals"
msgstr "المجاميع الفرعية"
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text"
+msgid "Add"
+msgstr ""
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text"
+msgid "Remove"
+msgstr ""
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text"
+msgid "Edit..."
+msgstr ""
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.modaldialog.text
+msgid "Manage Conditional Formatting"
+msgstr ""
+
#: textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
msgctxt "textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
msgid "Font"
@@ -12143,6 +12167,42 @@ msgstr ""
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
+#: globstr.src#RID_GLOBSTR.STR_HEADER_COND.string.text
+msgid "First Condition"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text"
+msgid "Cell value is"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_COLORSCALE.string.text
+msgid "ColorScale"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DATABAR.string.text
+msgid "DataBar"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text"
+msgid "between"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text"
+msgid "not between"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_UNIQUE.string.text
+msgid "unique"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text"
+msgid "duplicate"
+msgstr ""
+
#: crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text
msgctxt "crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text"
msgid "Range"
diff --git a/translations/source/ar/scp2/source/draw.po b/translations/source/ar/scp2/source/draw.po
index bcd48c89932..60db6e68c23 100644
--- a/translations/source/ar/scp2/source/draw.po
+++ b/translations/source/ar/scp2/source/draw.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fdraw.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-13 14:42+0200\n"
-"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
+"PO-Revision-Date: 2012-07-02 09:33+0200\n"
+"Last-Translator: safa <safaalfulaij@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -45,11 +45,11 @@ msgstr "قالب رسم OpenDocument"
#: registryitem_draw.ulf#STR_REG_VAL_MS_VISIO_DOCUMENT.LngText.text
msgid "Microsoft Visio 2000/XP/2003 Document"
-msgstr ""
+msgstr "مستند مايكروسوفت فايسو 2000/اكس بي/2003"
#: registryitem_draw.ulf#STR_REG_VAL_MS_VISIO_TEMPLATE.LngText.text
msgid "Microsoft Visio 2000/XP/2003 Template"
-msgstr ""
+msgstr "قالب مايكروسوفت فايسو 2000/اكس بي/2003"
#: module_draw.ulf#STR_NAME_MODULE_PRG_DRAW.LngText.text
msgid "%PRODUCTNAME Draw"
diff --git a/translations/source/ar/scp2/source/extensions.po b/translations/source/ar/scp2/source/extensions.po
index a660f270b34..5ec8bdc5515 100644
--- a/translations/source/ar/scp2/source/extensions.po
+++ b/translations/source/ar/scp2/source/extensions.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fextensions.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-17 07:37+0200\n"
-"Last-Translator: Faisal <fmalotaibi@kacst.edu.sa>\n"
+"PO-Revision-Date: 2012-07-02 08:53+0200\n"
+"Last-Translator: safa <safaalfulaij@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -56,12 +56,10 @@ msgid "Installs Spanish support in %PRODUCTNAME %PRODUCTVERSION"
msgstr "تثبيت دعم الإسبانية في %PRODUCTNAME %PRODUCTVERSION"
#: module_extensions_sun_templates.ulf#STR_NAME_MODULE_LANGPACK_HU.LngText.text
-#, fuzzy
msgid "Hungarian"
msgstr "المجرية"
#: module_extensions_sun_templates.ulf#STR_DESC_MODULE_LANGPACK_HU.LngText.text
-#, fuzzy
msgid "Installs Hungarian support in %PRODUCTNAME %PRODUCTVERSION"
msgstr "تثبيت دعم المجرية في %PRODUCTNAME %PRODUCTVERSION"
@@ -230,16 +228,14 @@ msgid "LanguageTool Open Source language checker"
msgstr "LanguageTool أداة فحص مفتوحة المصدر"
#: module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_MYSQLC.LngText.text
-#, fuzzy
msgctxt "module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_MYSQLC.LngText.text"
msgid "MySQL Connector"
-msgstr "MySQL (Connector/OOo)"
+msgstr "مُتَّصِل MySQL"
#: module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_MYSQLC.LngText.text
-#, fuzzy
msgctxt "module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_MYSQLC.LngText.text"
msgid "MySQL Connector"
-msgstr "MySQL (Connector/OOo)"
+msgstr "مُتَّصِل MySQL"
#: module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_OOOBLOGGER.LngText.text
msgctxt "module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_OOOBLOGGER.LngText.text"
diff --git a/translations/source/ar/scp2/source/python.po b/translations/source/ar/scp2/source/python.po
index 8b132d83a8e..a126d663352 100644
--- a/translations/source/ar/scp2/source/python.po
+++ b/translations/source/ar/scp2/source/python.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fpython.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2011-04-07 12:38+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2012-07-02 08:47+0200\n"
+"Last-Translator: safa <safaalfulaij@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -29,4 +29,4 @@ msgstr "Python-UNO Bridge"
#: module_python.ulf#STR_DESC_MODULE_OPTIONAL_PYTHON.LngText.text
msgid "Adds the ability to automate %PRODUCTNAME with the Python scripting language. See https://wiki.documentfoundation.org/Development/PyUno for a complete documentation."
-msgstr ""
+msgstr "يضيف القدرة على أتمتة %PRODUCTNAME مع لغة برمجة بايثون. أنظر https://wiki.documentfoundation.org/Development/PyUno لتوثيق كامل."
diff --git a/translations/source/ar/scp2/source/stdlibs.po b/translations/source/ar/scp2/source/stdlibs.po
index 8040a7d29f0..9764e16b166 100644
--- a/translations/source/ar/scp2/source/stdlibs.po
+++ b/translations/source/ar/scp2/source/stdlibs.po
@@ -4,13 +4,14 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fstdlibs.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2012-07-02 08:30+0200\n"
+"Last-Translator: safa <safaalfulaij@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -20,4 +21,4 @@ msgstr ""
#: module_stdlibs.ulf#STR_DESC_MODULE_OPTIONAL_STDLIBS.LngText.text
msgid "libstdc++ and libgcc_s for too old Linux systems."
-msgstr ""
+msgstr "libstdc++ و libgcc_s لأنظمة لينكس القديمة جدًا."
diff --git a/translations/source/ar/sfx2/source/appl.po b/translations/source/ar/sfx2/source/appl.po
index 8d3d339ee3c..f38de546d8f 100644
--- a/translations/source/ar/sfx2/source/appl.po
+++ b/translations/source/ar/sfx2/source/appl.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fappl.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-13 14:48+0200\n"
-"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
+"PO-Revision-Date: 2012-07-07 11:14+0200\n"
+"Last-Translator: Faisal <fmalotaibi@kacst.edu.sa>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: dde.src#MD_DDE_LINKEDIT.FT_DDE_APP.fixedtext.text
@@ -48,7 +48,6 @@ msgid "Automatic"
msgstr "تلقائي"
#: app.src#STR_STANDARD_SHORTCUT.string.text
-#, fuzzy
msgctxt "app.src#STR_STANDARD_SHORTCUT.string.text"
msgid "Standard"
msgstr "قياسي"
@@ -329,7 +328,6 @@ msgid " (Signed)"
msgstr " (مُوقّع)"
#: app.src#STR_STANDARD.string.text
-#, fuzzy
msgctxt "app.src#STR_STANDARD.string.text"
msgid "Standard"
msgstr "قياسي"
@@ -349,7 +347,7 @@ msgstr "الرسم"
#: app.src#STR_SFX_FILTERNAME_ALL.string.text
msgid "All files"
-msgstr ""
+msgstr "جميع الملفات"
#: app.src#RID_SVXSTR_EDITGRFLINK.string.text
msgid "Link graphics"
diff --git a/translations/source/ar/sfx2/source/dialog.po b/translations/source/ar/sfx2/source/dialog.po
index 475069c81ea..5d487e0226f 100644
--- a/translations/source/ar/sfx2/source/dialog.po
+++ b/translations/source/ar/sfx2/source/dialog.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fdialog.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-13 14:17+0200\n"
-"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
+"PO-Revision-Date: 2012-07-07 11:19+0200\n"
+"Last-Translator: Faisal <fmalotaibi@kacst.edu.sa>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: newstyle.src#DLG_NEW_STYLE_BY_EXAMPLE.FL_COL.fixedline.text
@@ -887,19 +887,8 @@ msgid "Style Catalog"
msgstr "كتالوج الأنماط"
#: templdlg.src#STR_STYLE_ELEMTLIST.string.text
-#, fuzzy
msgid "Style List"
-msgstr ""
-"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
-"أنماط\n"
-"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
-"أنماط\n"
-"#-#-#-#-# customize.po (PACKAGE VERSION) #-#-#-#-#\n"
-"الأنماط\n"
-"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
-"أنماط\n"
-"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
-"أنماط"
+msgstr "قائمة الأنماط"
#: templdlg.src#STR_STYLE_FILTER_HIERARCHICAL.string.text
msgid "Hierarchical"
@@ -1040,7 +1029,6 @@ msgid "P~assword"
msgstr "كلمة ال~سر"
#: passwd.src#DLG_PASSWD.FT_PASSWD_CONFIRM2.fixedtext.text
-#, fuzzy
msgid "Confir~m"
msgstr "~تأكيد"
diff --git a/translations/source/ar/sfx2/source/doc.po b/translations/source/ar/sfx2/source/doc.po
index 1256895f4f4..55cd480b5a7 100644
--- a/translations/source/ar/sfx2/source/doc.po
+++ b/translations/source/ar/sfx2/source/doc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fdoc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-04-07 12:39+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -198,103 +198,43 @@ msgid "Template Management"
msgstr "إدارة القوالب"
#: templatelocnames.src#STR_TEMPLATE_NAME1.string.text
-msgid "Blue Border"
+msgid "Abstract Green"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME2.string.text
-msgid "Black and White"
+msgid "Abstract Red"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME3.string.text
-msgid "Blue and Grey"
+msgid "Abstract Yellow"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME4.string.text
-msgid "Blue Lines and Gradients"
+msgid "Bright Blue"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME5.string.text
-msgid "Blue with Bottom Title"
+msgid "DNA"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME6.string.text
-msgid "Notebook"
+msgid "Inspiration"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME7.string.text
-msgid "Brown"
-msgstr "بني"
+msgid "Lush Green"
+msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME8.string.text
-msgid "Characters with Glow"
+msgid "Metropolis"
msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME9.string.text
-msgid "Forest"
-msgstr "غابة"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME10.string.text
-msgid "Fresco"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME11.string.text
-msgid "Glacier"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME12.string.text
-msgid "Green with White Lines"
+msgid "Sunset"
msgstr ""
-#: templatelocnames.src#STR_TEMPLATE_NAME13.string.text
-msgid "Keyboard"
-msgstr "لوحة المفاتيح"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME14.string.text
-msgid "Light Blue Shapes"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME15.string.text
-msgid "Numbers on Dark Background"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME16.string.text
-msgid "Blue Step Gradients"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME17.string.text
-msgid "White Blue and Lightnings"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME18.string.text
-msgid "Noise Paper"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME19.string.text
-msgid "Red Noise Shapes"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME20.string.text
-msgid "Rounded Rectangles"
-msgstr "مستطيلات مستديرة الزوايا"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME21.string.text
-msgid "Blue and Red Gradient"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME22.string.text
-msgid "Technical Polygon"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME23.string.text
-msgid "Tunnel"
-msgstr ""
-
-#: templatelocnames.src#STR_TEMPLATE_NAME24.string.text
-msgid "Water"
-msgstr "مائي"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME25.string.text
-msgid "Wine"
+#: templatelocnames.src#STR_TEMPLATE_NAME10.string.text
+msgid "Vintage"
msgstr ""
#: doc.src#MSG_CONFIRM_FILTER.querybox.text
diff --git a/translations/source/ar/svtools/source/dialogs.po b/translations/source/ar/svtools/source/dialogs.po
index 84f229ff037..8f058d70b05 100644
--- a/translations/source/ar/svtools/source/dialogs.po
+++ b/translations/source/ar/svtools/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-06-16 08:34+0200\n"
"Last-Translator: Faisal <fmalotaibi@kacst.edu.sa>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -719,66 +719,6 @@ msgstr "تعذر فتح الملف المحدد."
msgid "$(ERR) activating object"
msgstr "$(ERR) أثناء تنشيط الكائن"
-#: so3res.src#STR_INS_OBJECT.string.text
-msgid "Inserts a new %1-Object into your document."
-msgstr "يدرج كائن %1 جديد في مستندك."
-
-#: so3res.src#STR_INS_OBJECT_ICON.string.text
-msgid "Inserts a new %1-Object into your document as a symbol."
-msgstr "يدرج كائن %1 جديد كرمز في مستندك."
-
-#: so3res.src#STR_INS_FILE.string.text
-msgid "Inserts the contents of the file into your document to enable later editing in the original application."
-msgstr "يقوم بإدراج محتويات الملف في مستندك بحيث يمكن تحريره في التطبيق الأصلي في وقت لاحق."
-
-#: so3res.src#STR_INS_PLUGIN.string.text
-msgid "Inserts a plug-in object into your document with a reference to the plug-in data. When the object is activated, the plug-in is automatically executed."
-msgstr "يقوم بإدراج كائن مُلحق في مستندك بمرجع إلى بيانات المُلحق. في حالة تنشيط الكائن، سوف يتم تنفيذ المُلحق تلقائيًا."
-
-#: so3res.src#STR_INS_APPLET.string.text
-msgid "Inserts an applet object into your document. When the object is activated, the applet is automatically executed."
-msgstr "يقوم بإدراج كائن بُريمج في مستندك. عندما يتم تنشيط الكائن، يتم تنفيذ البُريمج تلقائيًا."
-
-#: so3res.src#STR_INS_FILE_ICON.string.text
-msgid "Inserts the contents of the file as an icon into your document."
-msgstr "إدراج محتويات الملف كأيقونة داخل مستندك."
-
-#: so3res.src#STR_INS_FILE_LINK.string.text
-msgid "Inserts the contents of the file into your document and creates a link to the source file. Changes made to the source file will be reflected in your document."
-msgstr "يقوم بإدراج محتويات الملف إلى مستندك ثم يقوم بعمل ارتباط مع الملف المصدر. تظهر التغييرات في الملف المصدر أيضًا في مستندك."
-
-#: so3res.src#STR_INS_FILE_ICON_LINK.string.text
-msgid "Inserts an icon into your document representing the file. Changes made to the source file will be reflected in your document."
-msgstr "يقوم بإدراج أيقونة في مستندك تمثل محتويات الملف. التغييرات في الملف المصدر تظهر أيضًا في مستندك."
-
-#: so3res.src#STR_PASTE.string.text
-msgid "Pastes the contents of the clipboard as %1 in your document."
-msgstr "يلصق محتويات الحافظة في مستندك كـ %1."
-
-#: so3res.src#STR_CONVERT_TO.string.text
-msgid "Converts the selected %1object to the object type %2."
-msgstr "يحوّل الكائن %1 المحدد إلى كائن من النوع %2."
-
-#: so3res.src#STR_ACTIVATE_AS.string.text
-msgid "All objects of type %1 are activated as %2, but not converted"
-msgstr "جميع الكائنات من النوع %1 سوف تنشط كالنوع %2، ولكن لن يتم تحويلها"
-
-#: so3res.src#STR_VERB_OPEN.string.text
-msgid "~Open"
-msgstr "~فتح"
-
-#: so3res.src#STR_VERB_PROPS.string.text
-msgid "~Properties"
-msgstr "~خصائص"
-
-#: so3res.src#STR_PLUGIN_CANT_SHOW.string.text
-msgid "Plug-in % cannot be displayed."
-msgstr "لا يمكن عرض المُلحق %."
-
-#: so3res.src#STR_ERROR_DDE.string.text
-msgid "DDE link to % for % area % are not available."
-msgstr "الارتباط DDE مع % إلى % النطاق % غير متوفر."
-
#: so3res.src#STR_ERROR_OBJNOCREATE.string.text
msgid "Object % could not be inserted."
msgstr "تعذر إدراج الكائن %."
@@ -791,18 +731,10 @@ msgstr "تعذر إدراج كائن من الملف %."
msgid "Plug-in from document % could not be inserted."
msgstr "تعذر إدراج الملحق من المستند %."
-#: so3res.src#STR_QUERYUPDATELINKS.string.text
-msgid "Update all links?"
-msgstr "هل تريد تحديث جميع الارتباطات؟"
-
#: so3res.src#STR_FURTHER_OBJECT.string.text
msgid "Further objects"
msgstr "كائنات إضافية"
-#: so3res.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "تحرير البُريمج"
-
#: so3res.src#MI_PLUGIN.MI_PLUGIN_DEACTIVATE.menuitem.text
msgid "Deactivate"
msgstr "Deactivate"
diff --git a/translations/source/ar/svx/source/dialog.po b/translations/source/ar/svx/source/dialog.po
index 6714314d188..0f54d8299d7 100644
--- a/translations/source/ar/svx/source/dialog.po
+++ b/translations/source/ar/svx/source/dialog.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Fdialog.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-16 08:31+0200\n"
-"Last-Translator: Faisal <fmalotaibi@kacst.edu.sa>\n"
+"PO-Revision-Date: 2012-07-04 14:00+0200\n"
+"Last-Translator: safa <safaalfulaij@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -458,9 +458,8 @@ msgid "Search for St~yles"
msgstr "الب~حث عن أنماط"
#: srchdlg.src#RID_SVXDLG_SEARCH.CB_COMMENTS.checkbox.text
-#, fuzzy
msgid "Comments"
-msgstr "تعليق"
+msgstr "تعليقات"
#: srchdlg.src#RID_SVXDLG_SEARCH.CB_JAP_MATCH_FULL_HALF_WIDTH.checkbox.text
msgid "Match character width"
@@ -495,7 +494,6 @@ msgid "Values"
msgstr "القيم"
#: srchdlg.src#RID_SVXDLG_SEARCH.LB_CALC_SEARCHIN.3.stringlist.text
-#, fuzzy
msgid "Notes"
msgstr "ملاحظات"
@@ -603,7 +601,6 @@ msgid "No Shadow"
msgstr "بدون ظل"
#: fontwork.src#RID_SVXDLG_FONTWORK.TBX_SHADOW.TBI_SHADOW_NORMAL.toolboxitem.text
-#, fuzzy
msgctxt "fontwork.src#RID_SVXDLG_FONTWORK.TBX_SHADOW.TBI_SHADOW_NORMAL.toolboxitem.text"
msgid "Vertical"
msgstr "رأسي"
@@ -1057,9 +1054,8 @@ msgid "-"
msgstr "-"
#: ctredlin.src#SID_REDLIN_FILTER_PAGE.IB_CLOCK.imagebutton.quickhelptext
-#, fuzzy
msgid "Set Start Date/Time"
-msgstr "تعيين الوقت/التاريخت"
+msgstr "تعيين بداية الوقت/التاريخ"
#: ctredlin.src#SID_REDLIN_FILTER_PAGE.FT_DATE2.fixedtext.text
msgid "and"
@@ -1071,9 +1067,8 @@ msgid "-"
msgstr "-"
#: ctredlin.src#SID_REDLIN_FILTER_PAGE.IB_CLOCK2.imagebutton.quickhelptext
-#, fuzzy
msgid "Set End Date/Time"
-msgstr "تعيين الوقت/التاريخت"
+msgstr "تعيين نهاية الوقت/التاريخ"
#: ctredlin.src#SID_REDLIN_FILTER_PAGE.CB_AUTOR.checkbox.text
msgid "~Author"
@@ -1101,29 +1096,24 @@ msgid "Comment"
msgstr "تعليق"
#: ctredlin.src#SID_REDLIN_FILTER_PAGE.STR_DATE_COMBOX.string.text
-#, fuzzy
msgid "Date Condition"
-msgstr "الشرط"
+msgstr "شرط التاريخ"
#: ctredlin.src#SID_REDLIN_FILTER_PAGE.STR_DATE_SPIN.string.text
-#, fuzzy
msgid "Start Date"
-msgstr "StartDate"
+msgstr "تاريخ البدأ"
#: ctredlin.src#SID_REDLIN_FILTER_PAGE.STR_DATE_SPIN1.string.text
-#, fuzzy
msgid "End Date"
-msgstr "EndDate"
+msgstr "تاريخ الإنتهاء"
#: ctredlin.src#SID_REDLIN_FILTER_PAGE.STR_DATE_TIME_SPIN.string.text
-#, fuzzy
msgid "Start Time"
-msgstr "بدء الوسائط"
+msgstr "وقت البدأ"
#: ctredlin.src#SID_REDLIN_FILTER_PAGE.STR_DATE_TIME_SPIN1.string.text
-#, fuzzy
msgid "End Time"
-msgstr "EndTime"
+msgstr "وقت الإنتهاء"
#: ctredlin.src#SID_REDLIN_FILTER_PAGE.STR_TREE.string.text
msgid "Changes"
@@ -1713,7 +1703,6 @@ msgid "Bitmap"
msgstr "صورة نقطية"
#: sdstring.src#RID_SVXSTR_LINESTYLE.string.text
-#, fuzzy
msgctxt "sdstring.src#RID_SVXSTR_LINESTYLE.string.text"
msgid "Line Style"
msgstr "نمط الخط"
@@ -2061,250 +2050,208 @@ msgstr "محوري أحمر فاتح/أبيض"
#. l means left
#: sdstring.src#RID_SVXSTR_GRDT10.string.text
-#, fuzzy
msgid "Diagonal 1l"
-msgstr "قطري"
+msgstr "قطري 1 يسار"
#. r means right
#: sdstring.src#RID_SVXSTR_GRDT11.string.text
-#, fuzzy
msgid "Diagonal 1r"
-msgstr "قطري"
+msgstr "قطري 1 يمين"
#. l means left
#: sdstring.src#RID_SVXSTR_GRDT12.string.text
-#, fuzzy
msgid "Diagonal 2l"
-msgstr "قطري"
+msgstr "قطري 2 يسار"
#. r means right
#: sdstring.src#RID_SVXSTR_GRDT13.string.text
-#, fuzzy
msgid "Diagonal 2r"
-msgstr "قطري"
+msgstr "قطري 2 يمين"
#. l means left
#: sdstring.src#RID_SVXSTR_GRDT14.string.text
-#, fuzzy
msgid "Diagonal 3l"
-msgstr "قطري"
+msgstr "قطري 3 يسار"
#. r means right
#: sdstring.src#RID_SVXSTR_GRDT15.string.text
-#, fuzzy
msgid "Diagonal 3r"
-msgstr "قطري"
+msgstr "قطري 3 يمين"
#. l means left
#: sdstring.src#RID_SVXSTR_GRDT16.string.text
-#, fuzzy
msgid "Diagonal 4l"
-msgstr "قطري"
+msgstr "قطري 4 بسار"
#. r means right
#: sdstring.src#RID_SVXSTR_GRDT17.string.text
-#, fuzzy
msgid "Diagonal 4r"
-msgstr "قطري"
+msgstr "قطري 4 يمين"
#: sdstring.src#RID_SVXSTR_GRDT18.string.text
-#, fuzzy
msgid "Diagonal Blue"
-msgstr "قطري لأعلى"
+msgstr "قطري أزرق"
#: sdstring.src#RID_SVXSTR_GRDT19.string.text
-#, fuzzy
msgid "Diagonal Green"
-msgstr "قطري لأسفل"
+msgstr "قطري أخضر"
#: sdstring.src#RID_SVXSTR_GRDT20.string.text
-#, fuzzy
msgid "Diagonal Orange"
-msgstr "قطري لأسفل"
+msgstr "قطري برتقالي"
#: sdstring.src#RID_SVXSTR_GRDT21.string.text
-#, fuzzy
msgid "Diagonal Red"
-msgstr "قطري لأسفل"
+msgstr "قطري أحمر"
#: sdstring.src#RID_SVXSTR_GRDT22.string.text
-#, fuzzy
msgid "Diagonal Turquoise"
-msgstr "مربعات منحرفة"
+msgstr "قطري فيروزي"
#: sdstring.src#RID_SVXSTR_GRDT23.string.text
-#, fuzzy
msgid "Diagonal Violet"
-msgstr "قطري لأسفل"
+msgstr "قطري بنفسجي"
#: sdstring.src#RID_SVXSTR_GRDT24.string.text
-#, fuzzy
msgid "From a Corner"
-msgstr "زاوية مطوية"
+msgstr "من زاوية"
#: sdstring.src#RID_SVXSTR_GRDT25.string.text
msgid "From a Corner, Blue"
-msgstr ""
+msgstr "من زاويةـ أزرق"
#: sdstring.src#RID_SVXSTR_GRDT26.string.text
msgid "From a Corner, Green"
-msgstr ""
+msgstr "من زاويةـ أخضر"
#: sdstring.src#RID_SVXSTR_GRDT27.string.text
msgid "From a Corner, Orange"
-msgstr ""
+msgstr "من زاوية، برتقالي"
#: sdstring.src#RID_SVXSTR_GRDT28.string.text
msgid "From a Corner, Red"
-msgstr ""
+msgstr "من زاوية، أحمر"
#: sdstring.src#RID_SVXSTR_GRDT29.string.text
-#, fuzzy
msgid "From a Corner, Turquoise"
-msgstr "عملة تركوازية"
+msgstr "من زاوية، فيروزي"
#: sdstring.src#RID_SVXSTR_GRDT30.string.text
msgid "From a Corner, Violet"
-msgstr ""
+msgstr "من زاوية، بنفسجي"
#: sdstring.src#RID_SVXSTR_GRDT31.string.text
-#, fuzzy
msgid "From the Middle"
-msgstr "من أعلى اليسار"
+msgstr "من الوسط"
#: sdstring.src#RID_SVXSTR_GRDT32.string.text
-#, fuzzy
msgid "From the Middle, Blue"
-msgstr "من أعلى اليسار"
+msgstr "من الوسط، أزرق"
#: sdstring.src#RID_SVXSTR_GRDT33.string.text
-#, fuzzy
msgid "From the Middle, Green"
-msgstr "من أعلى اليسار"
+msgstr "من الوسط، أخضر"
#: sdstring.src#RID_SVXSTR_GRDT34.string.text
-#, fuzzy
msgid "From the Middle, Orange"
-msgstr "من أعلى اليسار"
+msgstr "من الوسط، برتقالي"
#: sdstring.src#RID_SVXSTR_GRDT35.string.text
-#, fuzzy
msgid "From the Middle, Red"
-msgstr "من أعلى اليسار"
+msgstr "من الوسط، أحمر"
#: sdstring.src#RID_SVXSTR_GRDT36.string.text
msgid "From the Middle, Turquoise"
-msgstr ""
+msgstr "من الوسط، فيروزي"
#: sdstring.src#RID_SVXSTR_GRDT37.string.text
-#, fuzzy
msgid "From the Middle, Violet"
-msgstr "من أعلى اليسار"
+msgstr "من الوسط، بنفسجي"
#: sdstring.src#RID_SVXSTR_GRDT38.string.text
msgid "Horizontal"
msgstr "أفقي"
#: sdstring.src#RID_SVXSTR_GRDT39.string.text
-#, fuzzy
msgid "Horizontal Blue"
-msgstr "أفقي للخارج"
+msgstr "أفقي أزرق"
#: sdstring.src#RID_SVXSTR_GRDT40.string.text
-#, fuzzy
msgid "Horizontal Green"
-msgstr "أفقي للداخل"
+msgstr "أفقي أخضر"
#: sdstring.src#RID_SVXSTR_GRDT41.string.text
-#, fuzzy
msgid "Horizontal Orange"
-msgstr "خط أفقي"
+msgstr "أفقي برتقالي"
#: sdstring.src#RID_SVXSTR_GRDT42.string.text
-#, fuzzy
msgid "Horizontal Red"
-msgstr "أفقي"
+msgstr "أفقي أحمر"
#: sdstring.src#RID_SVXSTR_GRDT43.string.text
-#, fuzzy
msgid "Horizontal Turquoise"
-msgstr "مسطرة أفقية"
+msgstr "أفقي فيروزي"
#: sdstring.src#RID_SVXSTR_GRDT44.string.text
-#, fuzzy
msgid "Horizontal Violet"
-msgstr "أفقي للخارج"
+msgstr "أفقي بنفسجي"
#: sdstring.src#RID_SVXSTR_GRDT45.string.text
-#, fuzzy
msgid "Radial"
msgstr "شعاعي"
#: sdstring.src#RID_SVXSTR_GRDT46.string.text
-#, fuzzy
msgid "Radial Blue"
-msgstr "شعاعي"
+msgstr "شعاعي أزرق"
#: sdstring.src#RID_SVXSTR_GRDT47.string.text
-#, fuzzy
msgid "Radial Green"
-msgstr "شعاعي أخضر/أسود"
+msgstr "شعاعي أخضر"
#: sdstring.src#RID_SVXSTR_GRDT48.string.text
-#, fuzzy
msgid "Radial Orange"
-msgstr "نطاق البيانات"
+msgstr "شعاعي برتقالي"
#: sdstring.src#RID_SVXSTR_GRDT49.string.text
-#, fuzzy
msgid "Radial Red"
-msgstr "شعاعي"
+msgstr "شعاعي أحمر"
#: sdstring.src#RID_SVXSTR_GRDT50.string.text
-#, fuzzy
msgid "Radial Turquoise"
-msgstr "تركوازي"
+msgstr "شعاعي فيروزي"
#: sdstring.src#RID_SVXSTR_GRDT51.string.text
-#, fuzzy
msgid "Radial Violet"
-msgstr "بنفسجي"
+msgstr "شعاعي بنفسجي"
#: sdstring.src#RID_SVXSTR_GRDT52.string.text
-#, fuzzy
msgctxt "sdstring.src#RID_SVXSTR_GRDT52.string.text"
msgid "Vertical"
msgstr "رأسي"
#: sdstring.src#RID_SVXSTR_GRDT53.string.text
-#, fuzzy
msgid "Vertical Blue"
-msgstr "خط رأسي"
+msgstr "رأسي أزرق"
#: sdstring.src#RID_SVXSTR_GRDT54.string.text
-#, fuzzy
msgid "Vertical Green"
-msgstr "رأسي للداخل"
+msgstr "رأسي أخضر"
#: sdstring.src#RID_SVXSTR_GRDT55.string.text
-#, fuzzy
msgid "Vertical Orange"
-msgstr "خط رأسي"
+msgstr "رأسي برتقالي"
#: sdstring.src#RID_SVXSTR_GRDT56.string.text
-#, fuzzy
msgid "Vertical Red"
-msgstr "مسطرة رأسية"
+msgstr "رأسي أحمر"
#: sdstring.src#RID_SVXSTR_GRDT57.string.text
-#, fuzzy
msgid "Vertical Turquoise"
-msgstr "مسطرة رأسية"
+msgstr "رأسي فيروزي"
#: sdstring.src#RID_SVXSTR_GRDT58.string.text
-#, fuzzy
msgid "Vertical Violet"
-msgstr "رأسي للخارج"
+msgstr "رأسي بنفسجي"
#: sdstring.src#RID_SVXSTR_HATCH0.string.text
msgid "Black 45 degrees wide"
@@ -2490,7 +2437,6 @@ msgid "Dashed"
msgstr "شُرَط"
#: sdstring.src#RID_SVXSTR_DASH12.string.text
-#, fuzzy
msgctxt "sdstring.src#RID_SVXSTR_DASH12.string.text"
msgid "Line Style"
msgstr "نمط الخط"
@@ -2552,11 +2498,11 @@ msgstr ""
#: sdstring.src#RID_SVXSTR_LEND13.string.text
msgid "Triangle unfilled"
-msgstr ""
+msgstr "مثلث غير معبأ"
#: sdstring.src#RID_SVXSTR_LEND14.string.text
msgid "Diamond unfilled"
-msgstr ""
+msgstr "معين غير معبأ"
#: sdstring.src#RID_SVXSTR_LEND15.string.text
msgid "Diamond"
@@ -2564,24 +2510,23 @@ msgstr "معين"
#: sdstring.src#RID_SVXSTR_LEND16.string.text
msgid "Circle unfilled"
-msgstr ""
+msgstr "دائرة مفرغة"
#: sdstring.src#RID_SVXSTR_LEND17.string.text
msgid "Square 45 unfilled"
-msgstr ""
+msgstr "مربع قائم غير معبأ"
#: sdstring.src#RID_SVXSTR_LEND18.string.text
msgid "Square unfilled"
-msgstr ""
+msgstr "مربع مفرغ"
#: sdstring.src#RID_SVXSTR_LEND19.string.text
msgid "Half circle unfilled"
-msgstr ""
+msgstr "نصف دائرة مفرغة"
#: sdstring.src#RID_SVXSTR_LEND20.string.text
-#, fuzzy
msgid "Arrowhead"
-msgstr "رؤوس الأسهم"
+msgstr "رأس السهم"
#: sdstring.src#RID_SVXSTR_TRASNGR0.string.text
msgctxt "sdstring.src#RID_SVXSTR_TRASNGR0.string.text"
@@ -2649,7 +2594,7 @@ msgstr "مستخدم"
#: sdstring.src#RID_SVXSTR_LIBRE_GREEN_1.string.text
msgid "Green 1 (LibreOffice Main Color)"
-msgstr ""
+msgstr "أخضر 1 (لون ليبر أوفيس الرئيسي)"
#: sdstring.src#RID_SVXSTR_LIBRE_GREEN_ACCENT.string.text
#, fuzzy
@@ -2667,9 +2612,8 @@ msgid "Orange Accent"
msgstr "Grave Accent"
#: sdstring.src#RID_SVXSTR_LIBRE_PURPLE.string.text
-#, fuzzy
msgid "Purple"
-msgstr "الهدف"
+msgstr "بنفسجي"
#: sdstring.src#RID_SVXSTR_LIBRE_PURPLE_ACCENT.string.text
#, fuzzy
@@ -2730,48 +2674,20 @@ msgid "Gallery Theme"
msgstr "سمة المعرض"
#: sdstring.src#RID_SVXSTR_GALLERY_THEMEITEMS.string.text
-#, fuzzy
msgid "Theme Items"
-msgstr "مُعرّف السمة"
+msgstr "عناصر الثمات"
#: sdstring.src#RID_SVXSTR_GALLERY_THEMENAME.string.text
-#, fuzzy
msgid "Theme Name"
-msgstr "اسم الورقةل"
+msgstr "أسم الثمة"
#: sdstring.src#RID_SVXSTR_GALLERY_FILESFOUND.string.text
-#, fuzzy
msgid "Files Found"
-msgstr "لم يتم العثور على الملف."
+msgstr "وُجِدَت المفات"
#: sdstring.src#RID_SVXSTR_GALLERY_PREVIEW.string.text
-#, fuzzy
msgid "Preview"
-msgstr ""
-"#-#-#-#-# report.po (PACKAGE VERSION) #-#-#-#-#\n"
-"معاينة\n"
-"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
-"معاينة\n"
-"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
-"معاينة\n"
-"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
-"معاينة\n"
-"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
-"معاينة\n"
-"#-#-#-#-# options.po (PACKAGE VERSION) #-#-#-#-#\n"
-"معاينة\n"
-"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
-"معاينةw\n"
-"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
-"معاينة\n"
-"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
-"معاينة\n"
-"#-#-#-#-# scanner.po (PACKAGE VERSION) #-#-#-#-#\n"
-"معاينة\n"
-"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
-"معاينة\n"
-"#-#-#-#-# eps.po (PACKAGE VERSION) #-#-#-#-#\n"
-"معاينة"
+msgstr "معاينة"
#: swframeposstrings.src#RID_SVXSW_FRAMEPOSITIONS.STR_LEFT.string.text
msgctxt "swframeposstrings.src#RID_SVXSW_FRAMEPOSITIONS.STR_LEFT.string.text"
@@ -3054,10 +2970,9 @@ msgid "Source color"
msgstr "اللون الأصلي"
#: bmpmask.src#RID_SVXDLG_BMPMASK.FT_2.fixedtext.text
-#, fuzzy
msgctxt "bmpmask.src#RID_SVXDLG_BMPMASK.FT_2.fixedtext.text"
msgid "Tolerance"
-msgstr "التسامح"
+msgstr "التحمل"
#: bmpmask.src#RID_SVXDLG_BMPMASK.FT_3.fixedtext.text
msgid "Replace with..."
@@ -3079,9 +2994,8 @@ msgid "Pipette"
msgstr "ألواح الألوان"
#: bmpmask.src#RID_SVXDLG_BMPMASK.dockingwindow.text
-#, fuzzy
msgid "Color Replacer"
-msgstr "احتمال اللونe"
+msgstr "مبدّل اللون"
#: bmpmask.src#RID_SVXDLG_BMPMASK_STR_TRANSP.string.text
msgid "Transparent"
@@ -3096,10 +3010,9 @@ msgid "Color Palette"
msgstr "لوح الألوان"
#: bmpmask.src#RID_SVXDLG_BMPMASK_STR_TOLERANCE.string.text
-#, fuzzy
msgctxt "bmpmask.src#RID_SVXDLG_BMPMASK_STR_TOLERANCE.string.text"
msgid "Tolerance"
-msgstr "التسامح"
+msgstr "التحمل"
#: bmpmask.src#RID_SVXDLG_BMPMASK_STR_REPLACEWITH.string.text
msgid "Replace with"
@@ -3142,9 +3055,8 @@ msgid "V~ertical"
msgstr "عمو~دي"
#: optgrid.src#RID_SVXPAGE_GRID.FT_HORZ_POINTS.fixedtext.text
-#, fuzzy
msgid "space(s)"
-msgstr "صفحات"
+msgstr "فراغ(ات)"
#: optgrid.src#RID_SVXPAGE_GRID.CBX_SYNCHRONIZE.checkbox.text
msgid "Synchronize a~xes"
@@ -3210,7 +3122,7 @@ msgstr " درجات"
#: dlgctrl.src#STR_SWITCH.string.text
msgid "Switch"
-msgstr ""
+msgstr "حوّل"
#: contdlg.src#RID_SVXDLG_CONTOUR.TBX1.TBI_APPLY.toolboxitem.text
msgctxt "contdlg.src#RID_SVXDLG_CONTOUR.TBX1.TBI_APPLY.toolboxitem.text"
diff --git a/translations/source/ar/svx/source/src.po b/translations/source/ar/svx/source/src.po
index 2c4815ebbe6..70effc24b5b 100644
--- a/translations/source/ar/svx/source/src.po
+++ b/translations/source/ar/svx/source/src.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Fsrc.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-13 14:17+0200\n"
-"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
+"PO-Revision-Date: 2012-07-03 19:36+0200\n"
+"Last-Translator: safa <safaalfulaij@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -501,6 +501,11 @@ msgid ""
"\n"
"Therefore, some functionality may not be available."
msgstr ""
+"هذا المستند يحتوي وحدات الماكرو.\n"
+"\n"
+"وحدات الماكرو قد تحتوي فايورسات. تنفيذ وحدات الماكرو عُطّل نظرًأ لوضع إعدادات الماكرو الأمني في %PRODUCTNAME - خصائص - %PRODUCTNAME - الأمن.\n"
+"\n"
+"ولذلك، قد تكون بعض الوظائف غير متوفرة."
#: errtxt.src#RID_ERRHDL.ERRCODE_SFX_DOCUMENT_MACRO_DISABLED.string.text
msgid ""
diff --git a/translations/source/ar/svx/source/stbctrls.po b/translations/source/ar/svx/source/stbctrls.po
index 34ffec27c6d..16a3e4be253 100644
--- a/translations/source/ar/svx/source/stbctrls.po
+++ b/translations/source/ar/svx/source/stbctrls.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Fstbctrls.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-04-07 12:40+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2012-07-03 19:40+0200\n"
+"Last-Translator: safa <safaalfulaij@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -17,28 +17,28 @@ msgstr ""
#: stbctrls.src#RID_SVXSTR_INSERT_HELPTEXT.string.text
msgid "Insert mode."
-msgstr ""
+msgstr "وضع اﻹدخال."
#: stbctrls.src#RID_SVXSTR_OVERWRITE_HELPTEXT.string.text
msgid "Overwrite mode, text will be overwritten when typing."
-msgstr ""
+msgstr "نمط الكتابة على، سيتم الكتابة فوق النص عندما تكتب."
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
#: stbctrls.src#RID_SVXSTR_OVERWRITE_TEXT.string.text
msgid "Overwrite"
-msgstr ""
+msgstr "الكتابة على"
#: stbctrls.src#RID_SVXMENU_SELECTION.SELECTION_STANDARD.menuitem.text
msgid "Standard selection"
-msgstr ""
+msgstr "التحديد القياسي"
#: stbctrls.src#RID_SVXMENU_SELECTION.SELECTION_EXTENDED.menuitem.text
msgid "Extending selection"
-msgstr ""
+msgstr "يمدّد التحديد"
#: stbctrls.src#RID_SVXMENU_SELECTION.SELECTION_ADDED.menuitem.text
msgid "Adding selection"
-msgstr ""
+msgstr "يضيف التحديد"
#: stbctrls.src#RID_SVXMENU_SELECTION.SELECTION_BLOCK.menuitem.text
msgid "Block selection"
@@ -46,7 +46,7 @@ msgstr ""
#: stbctrls.src#RID_SVXSTR_XMLSEC_SIG_OK.string.text
msgid "Digital Signature: The document signature is OK."
-msgstr "التوقيع الرقمي: هذا المستند غير موقع."
+msgstr "التوقيع الرقمي: توقيع المستند مقبول."
#: stbctrls.src#RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY.string.text
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
diff --git a/translations/source/ar/svx/source/svdraw.po b/translations/source/ar/svx/source/svdraw.po
index 557d96c1a5c..1662ab1abdc 100644
--- a/translations/source/ar/svx/source/svdraw.po
+++ b/translations/source/ar/svx/source/svdraw.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Fsvdraw.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-13 14:49+0200\n"
-"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
+"PO-Revision-Date: 2012-07-03 19:42+0200\n"
+"Last-Translator: safa <safaalfulaij@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -2580,11 +2580,9 @@ msgid "Tables"
msgstr "الجداول"
#: svdstr.src#STR_ObjNameSingulFONTWORK.string.text
-#, fuzzy
msgid "font work"
msgstr "معمل الخطوط"
#: svdstr.src#STR_ObjNamePluralFONTWORK.string.text
-#, fuzzy
msgid "font works"
msgstr "معمل الخطوط"
diff --git a/translations/source/ar/svx/source/unodialogs/textconversiondlgs.po b/translations/source/ar/svx/source/unodialogs/textconversiondlgs.po
index 794b1bb59d5..f720e6b4b71 100644
--- a/translations/source/ar/svx/source/unodialogs/textconversiondlgs.po
+++ b/translations/source/ar/svx/source/unodialogs/textconversiondlgs.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Funodialogs%2Ftextconversiondlgs.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-04-11 23:06+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2012-07-02 09:18+0200\n"
+"Last-Translator: Faisal <fmalotaibi@kacst.edu.sa>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -100,7 +100,6 @@ msgid "Property"
msgstr "الخاصية"
#: chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.1.stringlist.text
-#, fuzzy
msgctxt "chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.1.stringlist.text"
msgid "Other"
msgstr "غير ذلك"
@@ -112,16 +111,14 @@ msgid "Foreign"
msgstr "أجنبي"
#: chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.3.stringlist.text
-#, fuzzy
msgctxt "chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.3.stringlist.text"
msgid "First name"
msgstr "الاسم الأول"
#: chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.4.stringlist.text
-#, fuzzy
msgctxt "chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.4.stringlist.text"
msgid "Last name"
-msgstr "اسم الأخير"
+msgstr "الاسم الأخير"
#: chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.5.stringlist.text
#, fuzzy
@@ -130,13 +127,11 @@ msgid "Title"
msgstr "المسمى الوظيفي"
#: chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.6.stringlist.text
-#, fuzzy
msgctxt "chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.6.stringlist.text"
msgid "Status"
msgstr "الحالة"
#: chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.7.stringlist.text
-#, fuzzy
msgctxt "chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.7.stringlist.text"
msgid "Place name"
msgstr "اسم المكان"
@@ -178,7 +173,6 @@ msgid "Noun"
msgstr "اسم"
#: chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.14.stringlist.text
-#, fuzzy
msgctxt "chinese_dialogs.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.14.stringlist.text"
msgid "Verb"
msgstr "فعل"
@@ -190,19 +184,16 @@ msgid "Brand name"
msgstr "اسم الماركة"
#: chinese_dialogs.src#DLG_CHINESEDICTIONARY.PB_ADD.pushbutton.text
-#, fuzzy
msgctxt "chinese_dialogs.src#DLG_CHINESEDICTIONARY.PB_ADD.pushbutton.text"
msgid "~Add"
msgstr "إضا~فة"
#: chinese_dialogs.src#DLG_CHINESEDICTIONARY.PB_MODIFY.pushbutton.text
-#, fuzzy
msgctxt "chinese_dialogs.src#DLG_CHINESEDICTIONARY.PB_MODIFY.pushbutton.text"
msgid "~Modify"
msgstr "~تعديل"
#: chinese_dialogs.src#DLG_CHINESEDICTIONARY.PB_DELETE.pushbutton.text
-#, fuzzy
msgctxt "chinese_dialogs.src#DLG_CHINESEDICTIONARY.PB_DELETE.pushbutton.text"
msgid "~Delete"
msgstr "ح~ذف"
@@ -274,7 +265,6 @@ msgid "Property"
msgstr "الخاصية"
#: chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.1.stringlist.text
-#, fuzzy
msgctxt "chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.1.stringlist.text"
msgid "Other"
msgstr "غير ذلك"
@@ -286,16 +276,14 @@ msgid "Foreign"
msgstr "أجنبي"
#: chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.3.stringlist.text
-#, fuzzy
msgctxt "chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.3.stringlist.text"
msgid "First name"
msgstr "الاسم الأول"
#: chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.4.stringlist.text
-#, fuzzy
msgctxt "chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.4.stringlist.text"
msgid "Last name"
-msgstr "اسم الأخير"
+msgstr "الاسم الأخير"
#: chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.5.stringlist.text
#, fuzzy
@@ -304,13 +292,11 @@ msgid "Title"
msgstr "المسمى الوظيفي"
#: chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.6.stringlist.text
-#, fuzzy
msgctxt "chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.6.stringlist.text"
msgid "Status"
msgstr "الحالة"
#: chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.7.stringlist.text
-#, fuzzy
msgctxt "chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.7.stringlist.text"
msgid "Place name"
msgstr "اسم المكان"
@@ -352,7 +338,6 @@ msgid "Noun"
msgstr "اسم"
#: chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.14.stringlist.text
-#, fuzzy
msgctxt "chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.LB_PROPERTY.14.stringlist.text"
msgid "Verb"
msgstr "فعل"
@@ -364,19 +349,16 @@ msgid "Brand name"
msgstr "اسم الماركة"
#: chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.PB_ADD.pushbutton.text
-#, fuzzy
msgctxt "chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.PB_ADD.pushbutton.text"
msgid "~Add"
msgstr "إضا~فة"
#: chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.PB_MODIFY.pushbutton.text
-#, fuzzy
msgctxt "chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.PB_MODIFY.pushbutton.text"
msgid "~Modify"
msgstr "~تعديل"
#: chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.PB_DELETE.pushbutton.text
-#, fuzzy
msgctxt "chinese_dictionarydialog.src#DLG_CHINESEDICTIONARY.PB_DELETE.pushbutton.text"
msgid "~Delete"
msgstr "ح~ذف"
diff --git a/translations/source/ar/wizards/source/euro.po b/translations/source/ar/wizards/source/euro.po
index b8807f42a92..b518edb5ae5 100644
--- a/translations/source/ar/wizards/source/euro.po
+++ b/translations/source/ar/wizards/source/euro.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+wizards%2Fsource%2Feuro.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-13 14:44+0200\n"
-"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
+"PO-Revision-Date: 2012-07-02 09:34+0200\n"
+"Last-Translator: safa <safaalfulaij@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -316,8 +316,9 @@ msgid "Slovak Koruna"
msgstr "كورونا سلوفاكية"
#: euro.src#CURRENCIES___16.string.text
+#, fuzzy
msgid "Estonian Kroon"
-msgstr ""
+msgstr "كرون استوني"
#: euro.src#CURRENCIES___17.string.text
msgid "The currency set for the document is not a European currency!"
diff --git a/translations/source/as/cui/source/dialogs.po b/translations/source/as/cui/source/dialogs.po
index 52e1ade9d8a..25898220582 100644
--- a/translations/source/as/cui/source/dialogs.po
+++ b/translations/source/as/cui/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-06-16 13:17+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: as_IN <kde-i18n-doc@kde.org>\n"
@@ -1181,10 +1181,6 @@ msgstr "উপঙি থকা ফ্ৰেইম বৈশিষ্টসমূ
msgid "Select File for Floating Frame"
msgstr "উপঙা ফ্ৰেইমৰ বাবে নথিপত্ৰ বাছক"
-#: svuidlg.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "এপলেটৰ সম্পাদনা কৰক"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VERSION.string.text
msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
msgstr ""
@@ -1222,18 +1218,10 @@ msgstr ""
msgid "http://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
-#: about.src#RID_DEFAULTABOUT.ABOUT_STR_LINK_LICENSE.string.text
-msgid "http://www.libreoffice.org/download/license/"
-msgstr ""
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CREDITS.pushbutton.text
msgid "Credits"
msgstr ""
-#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_LICENSE.pushbutton.text
-msgid "License"
-msgstr ""
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_WEBSITE.pushbutton.text
msgid "Website"
msgstr ""
diff --git a/translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po b/translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
index 7008d523f97..d71b8fac92a 100644
--- a/translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+officecfg%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FUI.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2012-06-16 13:17+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: as_IN <kde-i18n-doc@kde.org>\n"
@@ -10244,6 +10244,10 @@ msgstr "চৰ্তসাপেক্ষ ফৰমেটিং..."
msgid "Conditional Formatting..."
msgstr "চৰ্তসাপেক্ষ ফৰমেটিং..."
+#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ConditionalFormatManagerDialog.Label.value.text
+msgid "Manage..."
+msgstr ""
+
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_Deselect.Label.value.text
msgid "Undo Selection"
msgstr "বাছনীৰ পূৰ্ব নিৰ্দেশ বাতিল কৰক"
diff --git a/translations/source/as/sc/source/ui/src.po b/translations/source/as/sc/source/ui/src.po
index 0728e22d8fb..c3db4a9e791 100644
--- a/translations/source/as/sc/source/ui/src.po
+++ b/translations/source/as/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fsrc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2012-06-16 13:18+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: as_IN <kde-i18n-doc@kde.org>\n"
@@ -9555,6 +9555,8 @@ msgid "Settings:"
msgstr "ছেটিংছ"
#: solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text
+#, fuzzy
+msgctxt "solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text"
msgid "Edit..."
msgstr "সম্পাদনা কৰক..."
@@ -9588,16 +9590,17 @@ msgstr "আঁতৰাওক"
msgid "Conditional Formatting for"
msgstr "চৰ্তসূচক ফৰমেটিং"
-#: condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text
-msgctxt "condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text"
-msgid "Condition"
-msgstr "চৰ্ত"
+#: condformatdlg.src#RID_COND_ENTRY.STR_CONDITION.string.text
+msgid "Condition "
+msgstr ""
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.1.stringlist.text
msgid "All Cells"
msgstr ""
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text
+#, fuzzy
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text"
msgid "Cell value is"
msgstr "Cell value is"
@@ -9630,14 +9633,19 @@ msgid "not equal to"
msgstr "সমান নহয়"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text
+#, fuzzy
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text"
msgid "between"
msgstr "মাজত"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text
+#, fuzzy
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text"
msgid "not between"
msgstr "মাজত নহয়"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text"
msgid "duplicate"
msgstr ""
@@ -9835,6 +9843,25 @@ msgctxt "subtdlg.src#RID_SCDLG_SUBTOTALS.tabdialog.text"
msgid "Subtotals"
msgstr "ছাবটোটেলবোৰ"
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text"
+msgid "Add"
+msgstr ""
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text"
+msgid "Remove"
+msgstr ""
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text"
+msgid "Edit..."
+msgstr ""
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.modaldialog.text
+msgid "Manage Conditional Formatting"
+msgstr ""
+
#: textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
msgctxt "textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
msgid "Font"
@@ -12090,6 +12117,42 @@ msgstr ""
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "এই দস্তাবেজ অন্য দস্তাবেজ দ্বাৰা প্ৰসংগ কৰা হৈছে আৰু এতিয়াও সংৰক্ষণ কৰা হোৱা নাই। ইয়াক সংৰক্ষণ নকৰি বন্ধ কৰিলে তথ্যৰ হানি হব।"
+#: globstr.src#RID_GLOBSTR.STR_HEADER_COND.string.text
+msgid "First Condition"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text"
+msgid "Cell value is"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_COLORSCALE.string.text
+msgid "ColorScale"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DATABAR.string.text
+msgid "DataBar"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text"
+msgid "between"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text"
+msgid "not between"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_UNIQUE.string.text
+msgid "unique"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text"
+msgid "duplicate"
+msgstr ""
+
#: crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text
msgctxt "crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text"
msgid "Range"
diff --git a/translations/source/as/sfx2/source/doc.po b/translations/source/as/sfx2/source/doc.po
index d38c0771b95..dfbb5de9cf3 100644
--- a/translations/source/as/sfx2/source/doc.po
+++ b/translations/source/as/sfx2/source/doc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fdoc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-05-03 14:12+0530\n"
"Last-Translator: Nilamdyuti Goswami <ngoswami@redhat.com>\n"
"Language-Team: as_IN <kde-i18n-doc@kde.org>\n"
@@ -198,104 +198,44 @@ msgid "Template Management"
msgstr "নমুনা পৰিচালনা"
#: templatelocnames.src#STR_TEMPLATE_NAME1.string.text
-msgid "Blue Border"
-msgstr "নীলা সীমা"
+msgid "Abstract Green"
+msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME2.string.text
-msgid "Black and White"
-msgstr "কলা আৰু বগা"
+msgid "Abstract Red"
+msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME3.string.text
-msgid "Blue and Grey"
-msgstr "কলা আৰু ধূসৰ"
+msgid "Abstract Yellow"
+msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME4.string.text
-msgid "Blue Lines and Gradients"
-msgstr "নীলা শাৰীসমূহ আৰু গ্ৰেডিএন্টসমূহ"
+msgid "Bright Blue"
+msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME5.string.text
-msgid "Blue with Bottom Title"
-msgstr "নীলা তলৰ শাৰীৰ সৈতে"
+msgid "DNA"
+msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME6.string.text
-msgid "Notebook"
-msgstr "বহি"
+msgid "Inspiration"
+msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME7.string.text
-msgid "Brown"
-msgstr "মূগা"
+msgid "Lush Green"
+msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME8.string.text
-msgid "Characters with Glow"
-msgstr "উজ্জ্বল আখৰসমূহ"
+msgid "Metropolis"
+msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME9.string.text
-msgid "Forest"
-msgstr "অৰণ্য"
+msgid "Sunset"
+msgstr ""
#: templatelocnames.src#STR_TEMPLATE_NAME10.string.text
-msgid "Fresco"
-msgstr "ফ্ৰেস্কো"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME11.string.text
-msgid "Glacier"
-msgstr "হিমবাহ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME12.string.text
-msgid "Green with White Lines"
-msgstr "বগা শাৰীসমূহৰ সৈতে সেউজীয়া"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME13.string.text
-msgid "Keyboard"
-msgstr "কীবর্ড "
-
-#: templatelocnames.src#STR_TEMPLATE_NAME14.string.text
-msgid "Light Blue Shapes"
-msgstr "পাতল নীলা আকৃতিসমূহ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME15.string.text
-msgid "Numbers on Dark Background"
-msgstr "ডাঠ পটভূমীত নম্বৰসমূহ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME16.string.text
-msgid "Blue Step Gradients"
-msgstr "নীলা স্তৰ গ্ৰেডিএন্টসমূহ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME17.string.text
-msgid "White Blue and Lightnings"
-msgstr "বগা নীলা আৰু বিজূলীসমূহ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME18.string.text
-msgid "Noise Paper"
-msgstr "শব্দ পাত"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME19.string.text
-msgid "Red Noise Shapes"
-msgstr "ৰঙা শব্দ আকৃতিসমূহ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME20.string.text
-msgid "Rounded Rectangles"
-msgstr "গোলাকাৰ আয়তক্ষেত্ৰবোৰ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME21.string.text
-msgid "Blue and Red Gradient"
-msgstr "নীলা আৰু ৰঙা গ্ৰেডিএন্ট"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME22.string.text
-msgid "Technical Polygon"
-msgstr "কাৰিকৰী বহুভূজ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME23.string.text
-msgid "Tunnel"
-msgstr "সুৰঙ"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME24.string.text
-msgid "Water"
-msgstr "পানী"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME25.string.text
-msgid "Wine"
-msgstr "মদ"
+msgid "Vintage"
+msgstr ""
#: doc.src#MSG_CONFIRM_FILTER.querybox.text
msgid ""
diff --git a/translations/source/as/svtools/source/dialogs.po b/translations/source/as/svtools/source/dialogs.po
index cec23c27898..bbbe1e998d0 100644
--- a/translations/source/as/svtools/source/dialogs.po
+++ b/translations/source/as/svtools/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-05-03 12:03+0530\n"
"Last-Translator: Nilamdyuti Goswami <ngoswami@redhat.com>\n"
"Language-Team: as_IN <kde-i18n-doc@kde.org>\n"
@@ -719,66 +719,6 @@ msgstr "নিৰ্দিষ্ট কৰা ফাইলটো খুলিব
msgid "$(ERR) activating object"
msgstr "$(ERR) সক্ৰিয়কৰণ বস্তু"
-#: so3res.src#STR_INS_OBJECT.string.text
-msgid "Inserts a new %1-Object into your document."
-msgstr "এটা নতুন %1-বস্তু আপোনাৰ ডকুমেন্টটোলৈ ভৰায়."
-
-#: so3res.src#STR_INS_OBJECT_ICON.string.text
-msgid "Inserts a new %1-Object into your document as a symbol."
-msgstr "এটা নতুন %1-বস্তু প্ৰতীক হিচাপে আপোনাৰ ডকুমেন্টটোলৈ ভৰায়."
-
-#: so3res.src#STR_INS_FILE.string.text
-msgid "Inserts the contents of the file into your document to enable later editing in the original application."
-msgstr "মূল প্ৰয়োগটোত শেহতীয়া সম্পাদনা সক্ষম কৰিবলৈ ফাইলটোৰ বিষয়টো আপোনাৰ ডকুমেন্টটোলৈ ভৰায়."
-
-#: so3res.src#STR_INS_PLUGIN.string.text
-msgid "Inserts a plug-in object into your document with a reference to the plug-in data. When the object is activated, the plug-in is automatically executed."
-msgstr "এটা প্লাগ-ইন বস্তু আপোনাৰ ডকুমেন্টটোলৈ প্লাগ-ইন ডাটাটোৰ প্ৰসংগৰ সৈতে ভৰায় . যেতিয়া বস্তুটো সক্ৰিয় কৰা হয়, প্লাগ-ইনটো স্বয়ংক্ৰিয়ভাৱে কাৰ্যকৰী হয়."
-
-#: so3res.src#STR_INS_APPLET.string.text
-msgid "Inserts an applet object into your document. When the object is activated, the applet is automatically executed."
-msgstr "এটা এপলেট বস্তু আপোনাৰ ডকুমেন্টটোলৈ ভৰায়. যেতিয়া বস্তুটো সক্ৰিয় কৰা হয়, এপলেটটো স্বয়ংক্ৰিয়ভাৱে কাৰ্যকৰী হয়."
-
-#: so3res.src#STR_INS_FILE_ICON.string.text
-msgid "Inserts the contents of the file as an icon into your document."
-msgstr "মূল প্ৰয়োগটোত শেহতীয়া সম্পাদনা সক্ষম কৰিবলৈ ফাইলটোৰ বিষয়টো আপোনাৰ ডকুমেন্টটোলৈ ভৰায়."
-
-#: so3res.src#STR_INS_FILE_LINK.string.text
-msgid "Inserts the contents of the file into your document and creates a link to the source file. Changes made to the source file will be reflected in your document."
-msgstr "ফাইলটোৰ বিষয়বোৰ আপোনাৰ ডকুমেন্টলৈ ভৰায় আৰু উত্স ফাইলটোলৈ এটা সংযোগ সৃষ্টি কৰে. উত্স ফাইলটোলৈ কৰা পৰিৱৰ্তনবোৰ আপোনাৰ ডকুমেন্টত প্ৰতিফলিত হ'ব."
-
-#: so3res.src#STR_INS_FILE_ICON_LINK.string.text
-msgid "Inserts an icon into your document representing the file. Changes made to the source file will be reflected in your document."
-msgstr "ফাইলটো প্ৰতিনিধিত্ব কৰা এটা আইকন আপোনাৰ ডকুমেন্টলৈ ভৰাওক. উত্স ফাইলটোত কৰা সলনিবোৰ আপোনাৰ ডকুমেন্টত প্ৰতিফলিত হ'ব."
-
-#: so3res.src#STR_PASTE.string.text
-msgid "Pastes the contents of the clipboard as %1 in your document."
-msgstr "ক্লিপবৰ্ডৰ বিষয়বোৰ %1 হিচাপে আপোনাৰ ডকুমেন্টত আঠা লগায়."
-
-#: so3res.src#STR_CONVERT_TO.string.text
-msgid "Converts the selected %1object to the object type %2."
-msgstr "%1নিৰ্বাচিত বস্তুটো %2 প্ৰকাৰৰ বস্তুটোলৈ সলনি কৰে."
-
-#: so3res.src#STR_ACTIVATE_AS.string.text
-msgid "All objects of type %1 are activated as %2, but not converted"
-msgstr "%1প্ৰকাৰৰ সকলোবোৰ বস্তু %2হিচাপে সক্ৰিয় কৰা হ'ল, কিন্তু সলনি কৰা নহ'ল"
-
-#: so3res.src#STR_VERB_OPEN.string.text
-msgid "~Open"
-msgstr "খোলক"
-
-#: so3res.src#STR_VERB_PROPS.string.text
-msgid "~Properties"
-msgstr "বৈশিষ্ট্যবোৰ"
-
-#: so3res.src#STR_PLUGIN_CANT_SHOW.string.text
-msgid "Plug-in % cannot be displayed."
-msgstr " % প্লাগ-ইন প্ৰদৰ্শন কৰিব পৰা নগ'ল."
-
-#: so3res.src#STR_ERROR_DDE.string.text
-msgid "DDE link to % for % area % are not available."
-msgstr "% ৰ কাৰণে % এৰিয়া % লৈ DDE সংযোগ মজুত নাই. "
-
#: so3res.src#STR_ERROR_OBJNOCREATE.string.text
msgid "Object % could not be inserted."
msgstr "% বস্তু ভৰাব পৰা নগ'ল."
@@ -791,18 +731,10 @@ msgstr "% ফাইলৰ পৰা বস্তু ভৰাব পৰা ন
msgid "Plug-in from document % could not be inserted."
msgstr " % ডকুমেন্টৰ পৰা প্লাগ ইন ভৰাব পৰা নগ'ল."
-#: so3res.src#STR_QUERYUPDATELINKS.string.text
-msgid "Update all links?"
-msgstr "সকলোবোৰ লিংক আপডেট কৰিবনে?"
-
#: so3res.src#STR_FURTHER_OBJECT.string.text
msgid "Further objects"
msgstr "অতিৰিক্ত বস্তুবোৰ"
-#: so3res.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "এপলেটৰ সম্পাদনা কৰক"
-
#: so3res.src#MI_PLUGIN.MI_PLUGIN_DEACTIVATE.menuitem.text
msgid "Deactivate"
msgstr "নিষ্ক্রিয় কৰক"
diff --git a/translations/source/ast/cui/source/dialogs.po b/translations/source/ast/cui/source/dialogs.po
index cfe7eb47424..51d84ec2b9b 100644
--- a/translations/source/ast/cui/source/dialogs.po
+++ b/translations/source/ast/cui/source/dialogs.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-16 11:40+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-09 15:26+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_WORD.fixedtext.text
@@ -1181,10 +1181,6 @@ msgstr "Propiedaes de marcos flotantes"
msgid "Select File for Floating Frame"
msgstr "Seleicionar ficheru pa un marcu flotante"
-#: svuidlg.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "Editar Applet"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VERSION.string.text
msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
msgstr "Versión %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
@@ -1199,7 +1195,7 @@ msgstr "Productu proporcionáu por %OOOVENDOR"
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_COPYRIGHT.string.text
msgid "Copyright © 2000 - 2012 LibreOffice contributors and/or their affiliates"
-msgstr ""
+msgstr "Copyright © 2000 - 2012 Collaboradores de LibreOffice y/o los sos afiliaos"
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BASED.string.text
msgid "LibreOffice was based on OpenOffice.org"
@@ -1221,18 +1217,10 @@ msgstr "http://www.libreoffice.org"
msgid "http://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
-#: about.src#RID_DEFAULTABOUT.ABOUT_STR_LINK_LICENSE.string.text
-msgid "http://www.libreoffice.org/download/license/"
-msgstr "http://www.libreoffice.org/download/license/"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CREDITS.pushbutton.text
msgid "Credits"
msgstr "Créditos"
-#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_LICENSE.pushbutton.text
-msgid "License"
-msgstr "Llicencia"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_WEBSITE.pushbutton.text
msgid "Website"
msgstr "Sitiu web"
diff --git a/translations/source/ast/cui/source/options.po b/translations/source/ast/cui/source/options.po
index 798ee8a8ce6..f6e88a36da8 100644
--- a/translations/source/ast/cui/source/options.po
+++ b/translations/source/ast/cui/source/options.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Foptions.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-16 11:43+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2012-07-09 15:27+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_COMPANY.fixedtext.text
@@ -1919,7 +1919,7 @@ msgstr "Activar les carauterístiques esperimentales (inestable)"
#: optgdlg.src#OFA_TP_MISC.CB_MACRORECORDER.checkbox.text
msgid "Enable macro recording (limited)"
-msgstr ""
+msgstr "Activar la grabación de macros (llimitada)"
#: optgdlg.src#OFA_TP_VIEW.FL_USERINTERFACE.fixedline.text
msgid "User Interface"
diff --git a/translations/source/ast/helpcontent2/source/text/scalc/01.po b/translations/source/ast/helpcontent2/source/text/scalc/01.po
index af3e635d6a9..3cd427bb2b7 100644
--- a/translations/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/translations/source/ast/helpcontent2/source/text/scalc/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F01.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-18 18:06+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-09 16:20+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
@@ -1335,9 +1335,8 @@ msgid " <emph>pivot table</emph> is a reference to a cell or cell ran
msgstr "<emph>Tabla dinámica</emph> ye una referencia a una caxella o rangu de caxelles que s'asitia na tabla dinámica o que contién una tabla dinámica. Si'l rangu de caxelles contién delles Tables dinámiques, va utilizase la última tabla que se creó."
#: 04060109.xhp#par_id4809411.help.text
-#, fuzzy
msgid "If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the pivot table. <emph>Item n</emph> is the name of an item from that field."
-msgstr "Si nun hai pares dio <emph>Campos n / Elementos n</emph>, el gran total nun devuelve nada. Comoquier, cada par amiesta una constante que la resultancia tien de ser satisfechu. <emph>Campu n</emph> ye'l nome del campu de la Tabla dinámica. <emph>Elementu n</emph> ye'l nome del elementu del campu."
+msgstr "Si nun se dieron pares <emph>Campu n / Elementu n</emph>, devuelvese'l gran total. D'otra miente, cada par amiesta una torga que tien de satisfacer el resultáu.<emph>Campu n</emph> ye'l nome d'un campu de la Tabla dinámica.<emph>Elementu n</emph> ye'l nome d'un elementu d'esi campu."
#: 04060109.xhp#par_id6454969.help.text
msgid "If the pivot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the pivot table."
@@ -1348,14 +1347,12 @@ msgid "If the source data contains entries that are hidden by settings of the pi
msgstr "Si la fonte de datos contién entraes que tán anubríes pola configuracion de Tables dinámiques, estes inórense. L'orde de los campos pares d'elementos nun son significantes. Los nomes de los campos y elementos que nun son sensibles a la capitalización."
#: 04060109.xhp#par_id7928708.help.text
-#, fuzzy
msgid "If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a pivot table, populated using the \"Page Fields\" area of the pivot table layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation."
-msgstr "Si nengún limitante pa un campu de páxina ye dáu, el valor escoyida pa un campu esta usáu implícitamente. Si un limitante pa un campu de páxina ye dáu, tien de compaxinar col valor escoyida del campu, o se retorno un fallu. Campos de páxines son los campos enriba a la izquierda de la tabla dinámica de Datos, pobláu usando l'área de \"Campos de Páxines\" del diálogu de diseñu de la Tabla dinámica de Datos. Dende cada campu de páxina, un ítem (valor) pue ser escoyíu, lo cual significa que solo aquel ítem esta incluyíu na calculación."
+msgstr "Si nun se da nenguna torga pa un campu de páxina, s'usa implícitamente'l valor escoyíu del campu. Si se da una torga pa un campu de páxina, tien de compaxinar col valor escoyida del campu, o devuelve un fallu. Los campos de páxina son los campos enriba a la izquierda d'una tabla dinámica de Datos, pobláu usando l'área de \"Campos de Páxina\" del diálogu de diseñu de la Tabla dinámica de Datos. Dende cada campu de páxina, se pue escoyer un elementu (valor), lo que significa que sólo s'incluí nel cálculu esi elementu."
#: 04060109.xhp#par_id3864253.help.text
-#, fuzzy
msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
-msgstr "Valores subtotales de la tabla dinámica de datos namái s'usen si usen la funcion \"auto\" (sacante cuando especifiques dientro de la limitante, ver embaxo en <item type=\"literal\">Segunda sintaxi</item>)."
+msgstr "Los valores de subtotales de la tabla dinámica de datos namái s'usen si usen la función \"auto\" (sacante cuando s'especifique na torga, ver <item type=\"literal\">Segunda sintaxis</item> más abaxo)."
#: 04060109.xhp#hd_id3144016.help.text
msgid "Second Syntax"
@@ -1370,14 +1367,12 @@ msgid " <emph>Constraints</emph> is a space-separated list. Entries c
msgstr "<emph>Restricciones</emph> ye una llista separada per espacios. Les entraes puen ponese ente comines (comines simples). Tola cadena tien de ponese ente comines (comines dobles), nun siendo que faiga referencia a la cadena dende otra caxella."
#: 04060109.xhp#par_id4076357.help.text
-#, fuzzy
msgid "One of the entries can be the data field name. The data field name can be left out if the pivot table contains only one data field, otherwise it must be present."
-msgstr "Una de les entraes pue ser los nomes de los campos de datos. Los nomes de campos de datos puen ser dixebraos de les tables dinámiques de datos solamente un campu de datos, de lo contrario tien de tar presente."
+msgstr "Una de les entraes pue ser el nome del campu de datos. El nome del campu de datos pue dexase si la tabla dinámica de datos contién solamente un campu de datos, de lo contrario tien de tar presente."
#: 04060109.xhp#par_id8231757.help.text
-#, fuzzy
msgid "Each of the other entries specifies a constraint in the form <item type=\"literal\">Field[Item]</item> (with literal characters [ and ]), or only <item type=\"literal\">Item</item> if the item name is unique within all fields that are used in the pivot table."
-msgstr "Caúna de les otres entraes especifica un llinde de la forma <item type=\"literal\">Field[Item]</item> (con caráuteres lliterales [ y ]), o solamente <item type=\"literal\">Ítem</item> si'l nome del ítem ye única dientro de tolos campos utilizaos na tabla dinámica de datos."
+msgstr "Caúna de les otres entraes especifica una torga de la forma <item type=\"literal\">Campu[Elementu]</item> (con caráuteres lliterales [ y ]), o solamente <item type=\"literal\">Elementu</item> si'l nome del elementu ye únicu dientro de tolos campos utilizaos na tabla dinámica de datos."
#: 04060109.xhp#par_id3168736.help.text
msgid "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
@@ -4783,20 +4778,20 @@ msgstr "P'amosar toles caxelles ocultes, calque en primer llugar nel cuadru de l
#: 05100200.xhp#tit.help.text
msgctxt "05100200.xhp#tit.help.text"
msgid "Split Cells"
-msgstr ""
+msgstr "División de caxelles"
#: 05100200.xhp#hd_id3154654.help.text
msgctxt "05100200.xhp#hd_id3154654.help.text"
msgid "Split Cells"
-msgstr ""
+msgstr "División de caxelles"
#: 05100200.xhp#par_id3083451.help.text
msgid "<ahelp hid=\".\">Splits previously merged cells.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Divide caxelles que s'amestaron previamente</ahelp>"
#: 05100200.xhp#par_id3154023.help.text
msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>"
-msgstr ""
+msgstr "Escueyi <emph>Formatu - Combinar caxelles - Dividir caxelles</emph>"
#: 04060106.xhp#tit.help.text
msgctxt "04060106.xhp#tit.help.text"
@@ -5431,9 +5426,8 @@ msgid "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of
msgstr "<item type=\"input\">=COTH(1)</item> devuelve la cotanxente hiperbólica de 1, aprosimao 1,3130."
#: 04060106.xhp#bm_id6110552.help.text
-#, fuzzy
msgid "<bookmark_value>CSC function</bookmark_value>"
-msgstr "<bookmark_value>función ASC</bookmark_value>"
+msgstr "<bookmark_value>función CSC</bookmark_value>"
#: 04060106.xhp#hd_id9523234.149.help.text
msgid "CSC"
@@ -5441,7 +5435,7 @@ msgstr "CSC"
#: 04060106.xhp#par_id4896433.150.help.text
msgid "<ahelp hid=\"HID_FUNC_COSECANT\">Returns the cosecant of the given angle (in radians). The cosecant of an angle is equivalent to 1 divided by the sine of that angle</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_COSECANT\">Devuelve la cosecante d'un ángulu dau (en radianes). La cosecante d'un ángulu equival a 1 dividíu pol senu d'esi ángulu</ahelp>"
#: 04060106.xhp#hd_id3534032.151.help.text
msgctxt "04060106.xhp#hd_id3534032.151.help.text"
@@ -5454,12 +5448,11 @@ msgstr "CSC(Númberu)"
#: 04060106.xhp#par_id9859164.153.help.text
msgid " Returns the (trigonometric) cosecant of <emph>Number</emph>, the angle in radians."
-msgstr ""
+msgstr " Devuelve la cosecante (trigonométrica) de <emph>Númberu</emph>, l'ángulu en radianes."
#: 04060106.xhp#par_id3428494.help.text
-#, fuzzy
msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
-msgstr "To return the cosine of an angle in degrees, use the RADIANS function."
+msgstr "Pa devolver la cosecante d'un ángulu en graos, usa la función RADIANES."
#: 04060106.xhp#hd_id2577161.154.help.text
msgctxt "04060106.xhp#hd_id2577161.154.help.text"
@@ -5468,16 +5461,15 @@ msgstr "Exemplos"
#: 04060106.xhp#par_id3736803.155.help.text
msgid "<item type=\"input\">=CSC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the sine of PI/4 radians."
-msgstr ""
+msgstr "<item type=\"input\">=CSC(PI()/4)</item> devuelve aproximadamente 1.4142135624, l'inversu del senu de PI/4 radianes."
#: 04060106.xhp#par_id6016818.156.help.text
msgid "<item type=\"input\">=CSC(RADIANS(30))</item> returns 2, the cosecant of 30 degrees."
-msgstr ""
+msgstr "<item type=\"input\">=CSC(RADIANS(30))</item> devuelve 2, la cosecante de 30 graos."
#: 04060106.xhp#bm_id9288877.help.text
-#, fuzzy
msgid "<bookmark_value>CSCH function</bookmark_value>"
-msgstr "<bookmark_value>función ASC</bookmark_value>"
+msgstr "<bookmark_value>función CSCH</bookmark_value>"
#: 04060106.xhp#hd_id4325650.159.help.text
msgid "CSCH"
@@ -5485,7 +5477,7 @@ msgstr "CSCH"
#: 04060106.xhp#par_id579916.160.help.text
msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Devuelve la cosecante hiperbólica d'un númberu.</ahelp>"
#: 04060106.xhp#hd_id5336768.161.help.text
msgctxt "04060106.xhp#hd_id5336768.161.help.text"
@@ -19387,6 +19379,8 @@ msgid "SUMX2MY2(ArrayX; ArrayY)"
msgstr "SUMX2MENOSY2(MatrizX; MatrizY)"
#: 04060107.xhp#par_id3144916.173.help.text
+#, fuzzy
+msgctxt "04060107.xhp#par_id3144916.173.help.text"
msgid "<emph>ArrayX</emph> represents the first array whose elements are to be squared and added."
msgstr "<emph>MatrizX</emph> representa la primera matriz que los sos elementos llevar al cuadráu y van ser sumaos."
@@ -19421,8 +19415,9 @@ msgid "SUMX2PY2(ArrayX; ArrayY)"
msgstr "SUMAX2MASY2(MatrizX; MatrizY)"
#: 04060107.xhp#par_id3163417.182.help.text
-msgid "<emph>ArrayX</emph> represents the first array whose arguments are to be squared and added."
-msgstr "<emph>MatrizX</emph> representa'l primer arreglu que l'argumentos débese sacar raiz y sumase."
+msgctxt "04060107.xhp#par_id3163417.182.help.text"
+msgid "<emph>ArrayX</emph> represents the first array whose elements are to be squared and added."
+msgstr ""
#: 04060107.xhp#par_id3163437.183.help.text
msgid "<emph>ArrayY</emph> represents the second array, whose elements are to be squared and added."
@@ -21799,7 +21794,7 @@ msgid "\"ym\""
msgstr ""
#: func_datedif.xhp#par_id4186223.help.text
-msgid "Number of whole months when substracting years from the difference of Start date and End date."
+msgid "Number of whole months when subtracting years from the difference of Start date and End date."
msgstr ""
#: func_datedif.xhp#par_id5766472.help.text
@@ -21807,7 +21802,7 @@ msgid "\"md\""
msgstr ""
#: func_datedif.xhp#par_id1491134.help.text
-msgid "Number of whole days when substracting years and months from the difference of Start date and End date."
+msgid "Number of whole days when subtracting years and months from the difference of Start date and End date."
msgstr ""
#: func_datedif.xhp#par_id5866472.help.text
@@ -21815,7 +21810,7 @@ msgid "\"yd\""
msgstr ""
#: func_datedif.xhp#par_id1591134.help.text
-msgid "Number of whole days when substracting years from the difference of Start date and End date."
+msgid "Number of whole days when subtracting years from the difference of Start date and End date."
msgstr ""
#: func_datedif.xhp#hd_id3147477.help.text
@@ -26443,12 +26438,12 @@ msgid "N"
msgstr "N"
#: 04060104.xhp#par_id3150405.120.help.text
-msgid "<ahelp hid=\"HID_FUNC_N\">Returns the numeric value of the given parameter. Returns 0 if parameter is text, FALSE or #NA.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_N\">Devuelve'l valor numbéricu del parámetru. Devuelve 0 si'l parámetru ye testu, FALSU o #NA.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_N\">Returns the numeric value of the given parameter. Returns 0 if parameter is text or FALSE.</ahelp>"
+msgstr ""
#: 04060104.xhp#par_id9115573.help.text
-msgid "If an error occurs, other than #NA, the function returns the error value."
-msgstr "Si un fallu asocede, que nun seya #NA, la función devuelve'l valor fallu."
+msgid "If an error occurs the function returns the error value."
+msgstr ""
#: 04060104.xhp#hd_id3145774.121.help.text
msgctxt "04060104.xhp#hd_id3145774.121.help.text"
@@ -26460,8 +26455,8 @@ msgid "N(Value)"
msgstr "N(Valor)"
#: 04060104.xhp#par_id3151101.123.help.text
-msgid "<emph>Value</emph> is the parameter to be converted into a number. N() returns the numeric value if it can. It returns the logical values TRUE and FALSE as 1 and 0 respectively. It returns text and errors as 0."
-msgstr "<emph>Valor</emph> ye'l parámetru que tien de convertise nun númberu. N() devuelve'l valor numbéricu si pue. Devuelve los valores lóxicos VERDADERU y FALSU como 0 y 1, respectivamente. Devuelve testu y fallos como 0."
+msgid "<emph>Value</emph> is the parameter to be converted into a number. N() returns the numeric value if it can. It returns the logical values TRUE and FALSE as 1 and 0 respectively. It returns text as 0."
+msgstr ""
#: 04060104.xhp#hd_id3147097.124.help.text
msgctxt "04060104.xhp#hd_id3147097.124.help.text"
diff --git a/translations/source/ast/helpcontent2/source/text/scalc/04.po b/translations/source/ast/helpcontent2/source/text/scalc/04.po
index 6f4e903cd4b..9d92ec48019 100644
--- a/translations/source/ast/helpcontent2/source/text/scalc/04.po
+++ b/translations/source/ast/helpcontent2/source/text/scalc/04.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
"X-Poedit-SourceCharset: utf-8\n"
diff --git a/translations/source/ast/helpcontent2/source/text/scalc/guide.po b/translations/source/ast/helpcontent2/source/text/scalc/guide.po
index 3101536f9db..a171f9572bc 100644
--- a/translations/source/ast/helpcontent2/source/text/scalc/guide.po
+++ b/translations/source/ast/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2Fguide.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2012-06-15 14:37+0100\n"
"Last-Translator: ivarela <ivarela@ubuntu.com>\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -5597,8 +5597,8 @@ msgid "Remove a button by dragging it back to the area of the other buttons at t
msgstr "Vuelva asitiar un botón nel so sitiu moviéndolo col mur del área a los otros botones."
#: datapilot_createtable.xhp#par_id3147338.15.help.text
-msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row</emph> or <emph>Column</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
-msgstr "Si calca dos vegaes n'unu de los botones del área <emph>Filera</emph> o <emph>Columna</emph> va ver que s'amuesa'l diálogu <link href=\"text/scalc/01/12090105.xhp\" name=\"Campo de datos\">Campu de datos</link>. Escueya nél si y cómo debi $[officename] amosar y calcular los subtotales."
+msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
+msgstr ""
#: datapilot_createtable.xhp#par_id3154020.18.help.text
#, fuzzy
diff --git a/translations/source/ast/helpcontent2/source/text/shared/01.po b/translations/source/ast/helpcontent2/source/text/shared/01.po
index 91cf1027a28..e6e2080fed0 100644
--- a/translations/source/ast/helpcontent2/source/text/shared/01.po
+++ b/translations/source/ast/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared%2F01.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-06-18 18:04+0200\n"
"Last-Translator: astur <ivarela@softastur.org>\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -16268,8 +16268,8 @@ msgid "To change the object properties of a comment, for example the background
msgstr "Pa camudar les propiedaes del oxetu d'un comentariu, por exemplu el color de fondu, escueya <emph>Amosar comentariu</emph> como enantes; de siguío, faiga clic col botón derechu nel comentariu (non doble clic nel testu)."
#: 04050000.xhp#par_id3155390.7.help.text
-msgid "To edit a shown comment, double-click the comment text. To edit a comment that is not shown permanently, click in the cell that contains the comment, and then choose <emph>Insert - Comment</emph>. To specify the formatting of the comment text, right-click the comment text in edit mode."
-msgstr "Pa editar un comentariu que s'amuesa, faiga doble clic nel testu del comentariu. Pa editar un comentariu que nun s'amuesa permanentemente, faiga clic na caxella que contién el comentariu y, de siguío, escueya <emph>Inxertar - Comentariu</emph>. Pa especificar el formatu del testu del comentariu, faiga clic col botón derechu nel testu de comentariu nel mou d'edición."
+msgid "To edit a shown comment, double-click the comment text. To edit a comment that is not shown permanently, right-click in the cell that contains the comment, and then choose <emph>Insert - Comment</emph>. To specify the formatting of the comment text, right-click the comment text in edit mode."
+msgstr ""
#: 04050000.xhp#par_idN107A1.help.text
msgid "To change the position or size of a comment, drag a border or corner of the comment."
@@ -17121,8 +17121,8 @@ msgid "Whitespaces"
msgstr "Espacios en blancu"
#: xformsdatatab.xhp#par_id4331797.help.text
-msgid "<ahelp hid=\".\">Specifies how whitespaces are to be handled when a string of the current data type is being processed. Possible values are Preserve, Replace, and Collapse. The sematics follow the definition at http://www.w3.org/TR/xmlschema-2/#rf-whiteSpace.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifica cómo se deben tratar los espacios en blancu al procesar una cadena del tipu de datos actual. Los valores posibles son Caltenga (caltener), Replace (trocar) y Collapse (contraer). La semántica d'usu tien d'axustase a les definiciones de http://www.w3.org/TR/xmlschema-2/#rf-whiteSpace.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies how whitespaces are to be handled when a string of the current data type is being processed. Possible values are Preserve, Replace, and Collapse. The semantics follow the definition at http://www.w3.org/TR/xmlschema-2/#rf-whiteSpace.</ahelp>"
+msgstr ""
#: xformsdatatab.xhp#hd_id4191717.help.text
msgid "Pattern"
diff --git a/translations/source/ast/helpcontent2/source/text/shared/02.po b/translations/source/ast/helpcontent2/source/text/shared/02.po
index 3677cd46d78..ed4be93743f 100644
--- a/translations/source/ast/helpcontent2/source/text/shared/02.po
+++ b/translations/source/ast/helpcontent2/source/text/shared/02.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared%2F02.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-18 18:06+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-01 13:08+0200\n"
+"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
@@ -7201,24 +7201,20 @@ msgid "Selection Mode"
msgstr "Mou de seleición"
#: 20050000.xhp#bm_id3148668.help.text
-msgid "<bookmark_value>selection modes in text</bookmark_value><bookmark_value>text; selection modes</bookmark_value><bookmark_value>extension mode in text</bookmark_value><bookmark_value>additional selection mode</bookmark_value><bookmark_value>block selection mode</bookmark_value>"
-msgstr "<bookmark_value>maneres de seleición en testu </bookmark_value><bookmark_value>testu; mou de seleición </bookmark_value><bookmark_value>mou de seleición de testu estendíu </bookmark_value><bookmark_value>mou de seleición amestar</bookmark_value><bookmark_value>mou de seleición per bloque</bookmark_value>"
+msgid "<bookmark_value>selection modes in text</bookmark_value><bookmark_value>text; selection modes</bookmark_value><bookmark_value>extending selection mode</bookmark_value><bookmark_value>adding selection mode</bookmark_value><bookmark_value>block selection mode</bookmark_value>"
+msgstr ""
#: 20050000.xhp#hd_id3148668.1.help.text
msgid "<link href=\"text/shared/02/20050000.xhp\" name=\"Selection Mode\">Selection Mode</link>"
msgstr "<link href=\"text/shared/02/20050000.xhp\" name=\"Selection Mode\">Modo Seleición</link>"
#: 20050000.xhp#par_id3146130.2.help.text
-msgid "<ahelp hid=\".uno:StatusSelectionMode\">Displays the current selection mode. You can switch between STD = Standard, EXT = Extend, ADD = Add, BLK = Block selection.</ahelp>"
-msgstr "<ahelp hid=\".uno:StatusSelectionMode\">Amuesa el mou de seleición actual. Pue camudar ente STD = Estándar, EXT = Estendíu, AGR = Amestar, BLK = Seleición per Bloque.</ahelp>"
+msgid "<ahelp hid=\".uno:StatusSelectionMode\">Here you can switch between different selection modes.</ahelp>"
+msgstr ""
#: 20050000.xhp#par_id3153894.3.help.text
-msgid "Each click in the field cycles through the available options:"
-msgstr "Con cada pulsación nel campu amuésase una de les opciones disponibles:"
-
-#: 20050000.xhp#par_id3153394.4.help.text
-msgid "<emph>Display</emph>"
-msgstr "<emph>Visualización:</emph>"
+msgid "When you click in the field, a popup menu comes up with the available options:"
+msgstr ""
#: 20050000.xhp#par_id3149095.5.help.text
msgctxt "20050000.xhp#par_id3149095.5.help.text"
@@ -7229,49 +7225,33 @@ msgstr "<emph>Mou:</emph>"
msgid "<emph>Effect</emph>"
msgstr "<emph>Efeutu:</emph>"
-#: 20050000.xhp#par_id3149827.7.help.text
-msgid "STD"
-msgstr "STD"
-
#: 20050000.xhp#par_id3152780.8.help.text
-msgid "Standard mode"
-msgstr "Mou Estándar"
+msgid "Standard selection"
+msgstr ""
#: 20050000.xhp#par_id3147209.9.help.text
msgid "Click in text where you want to position the cursor; click in a cell to make it the active cell. Any other selection is then deselected."
msgstr "Calque nun llugar del testu p'asitiar el cursor ellí; con una pulsación nuna caxella convertir na caxella actual. va desaniciase la seleición esistente."
-#: 20050000.xhp#par_id3149763.10.help.text
-msgid "EXT"
-msgstr "EXT"
-
#: 20050000.xhp#par_id3149580.11.help.text
-msgid "Extension mode (F8)"
-msgstr "Mou Estendíu (F8)"
+msgid "Extending selection (<item type=\"keycode\">F8</item>)"
+msgstr ""
#: 20050000.xhp#par_id3153717.12.help.text
msgid "Clicking in the text extends or crops the current selection."
msgstr "Una pulsación nel testu amplía o amenorga la seleición."
-#: 20050000.xhp#par_id3154047.13.help.text
-msgid "ADD"
-msgstr "AGR"
-
#: 20050000.xhp#par_id3147620.14.help.text
-msgid "Additional selection mode (Shift+F8)"
-msgstr "Mou de seleicion adicional (Shift+F8)"
+msgid "Adding selection (<item type=\"keycode\">Shift+F8</item>)"
+msgstr ""
#: 20050000.xhp#par_id3154307.15.help.text
msgid "A new selection is added to an existing selection. The result is a multiple selection."
msgstr "Amestar una nueva seleición a otra esistente. La resultancia ye una seleición múltiple."
-#: 20050000.xhp#par_id7234717.help.text
-msgid "BLK"
-msgstr "BLK"
-
#: 20050000.xhp#par_id6971037.help.text
-msgid "Block selection mode (<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8)"
-msgstr "Bloquiar el mou seleición (<switchinline select=\"sys\"><caseinline select=\"MAC\">Comandu</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8)"
+msgid "Block selection (<item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8</item>)"
+msgstr ""
#: 20050000.xhp#par_id5258644.help.text
msgid "A block of text can be selected."
diff --git a/translations/source/ast/helpcontent2/source/text/shared/04.po b/translations/source/ast/helpcontent2/source/text/shared/04.po
index e9b2e81a309..dc1e279d6fd 100644
--- a/translations/source/ast/helpcontent2/source/text/shared/04.po
+++ b/translations/source/ast/helpcontent2/source/text/shared/04.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
"X-Poedit-SourceCharset: utf-8\n"
diff --git a/translations/source/ast/helpcontent2/source/text/shared/guide.po b/translations/source/ast/helpcontent2/source/text/shared/guide.po
index de249059b37..94cf79461b7 100644
--- a/translations/source/ast/helpcontent2/source/text/shared/guide.po
+++ b/translations/source/ast/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared%2Fguide.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2012-06-18 17:00+0200\n"
"Last-Translator: astur <ivarela@softastur.org>\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -2404,8 +2404,8 @@ msgid "$[officename] can automatically open Microsoft Office 97/2000/XP document
msgstr "$[officename] pue abrir automáticamente documentos de Microsoft Office 97/2000/XP. Sicasí delles carauterístiques de diseñu y atributos de formateáu de los documentos de Microsoft Office más complexos xestionar de forma distinta en $[officename] o nun s'almiten. Como resultáu los ficheros convertíos precisen un pocu de reformateáu manual. La cantidá de reformateáu que pue esperase ye proporcional a la complexidá de la estructura y el formateáu del documentu fonte. $[officename] nun pue executar scripts de Visual Basic, pero pue cargalos pal so analís."
#: ms_import_export_limitations.xhp#par_id0804200804174819.help.text
-msgid "The most recent versions of %PRODUCTNAME can load, but not save, the Microsoft Office Open XML document formats with the extensions docx, xlsx, and pptx. The same versions can also run some Excel Visual Basic scripts, if you enable this feature at <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - VBA Properties</item>."
-msgstr "Les versiones más modernes de %PRODUCTNAME puen cargar, pero nun guardar, los formatos de documentu Microsoft Office Open XML coles estensiones docx, xlsx, y pptx. Estes mesmes versiones puen executar tamién scripts en Visual Basic de Excel, si habilita esta carauterística en <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencies</caseinline><defaultinline>Ferramientes - Opciones</defaultinline></switchinline> - Cargar/Guardar - Propiedaes de VBA</item>."
+msgid "The most recent versions of %PRODUCTNAME can load and save the Microsoft Office Open XML document formats with the extensions docx, xlsx, and pptx. The same versions can also run some Excel Visual Basic scripts, if you enable this feature at <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - VBA Properties</item>."
+msgstr ""
#: ms_import_export_limitations.xhp#par_id3155934.3.help.text
msgid "The following lists provide a general overview of Microsoft Office features that may cause conversion challenges. These will not affect your ability to use or work with the content of the converted document."
@@ -4759,8 +4759,8 @@ msgid "<variable id=\"ms_user\"><link href=\"text/shared/guide/ms_user.xhp\" nam
msgstr "<variable id=\"ms_user\"><link href=\"text/shared/guide/ms_user.xhp\" name=\"Usar Microsoft Office y $[officename]\">Usar Microsoft Office y $[officename]</link></variable>"
#: ms_user.xhp#par_id3152801.1.help.text
-msgid "$[officename] can open and save documents in the Microsoft Office file formats. Microsoft Office Open XML formats can be read, but not saved."
-msgstr "$[officename] pue abrir y guardar documentos en formatos de ficheros de Microsoft Office. Los formatos de Microsoft Office Open XML puen ser lleíos, pero ensin guardar."
+msgid "$[officename] can open and save documents in the Microsoft Office file formats, including Microsoft Office Open XML formats."
+msgstr ""
#: ms_user.xhp#hd_id3145345.2.help.text
msgid "Opening a Microsoft Office File"
diff --git a/translations/source/ast/helpcontent2/source/text/shared/optionen.po b/translations/source/ast/helpcontent2/source/text/shared/optionen.po
index 2fe55592f3b..389191c6cac 100644
--- a/translations/source/ast/helpcontent2/source/text/shared/optionen.po
+++ b/translations/source/ast/helpcontent2/source/text/shared/optionen.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: 01070000.xhp#tit.help.text
diff --git a/translations/source/ast/helpcontent2/source/text/smath/01.po b/translations/source/ast/helpcontent2/source/text/smath/01.po
index f55570d46af..0aa38ef720f 100644
--- a/translations/source/ast/helpcontent2/source/text/smath/01.po
+++ b/translations/source/ast/helpcontent2/source/text/smath/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsmath%2F01.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-18 17:26+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2012-07-01 15:07+0200\n"
+"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
diff --git a/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po b/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
index f49b24f1fdf..5a6e6fcce46 100644
--- a/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+instsetoo_native%2Finc_openoffice%2Fwindows%2Fmsi_languages.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-16 11:59+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2012-07-09 15:30+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: CustomAc.ulf#OOO_CUSTOMACTION_1.LngText.text
@@ -1787,7 +1787,7 @@ msgstr "Presentaciones de Microsoft Po&werPoint"
#: Control.ulf#OOO_CONTROL_273.LngText.text
msgid "Microsoft &Visio Documents"
-msgstr ""
+msgstr "Documentos de Microsoft &Visio"
#: Control.ulf#OOO_CONTROL_274.LngText.text
msgid "Set [DEFINEDPRODUCT] to be the default application for Microsoft Office file types."
@@ -1860,7 +1860,7 @@ msgstr "Permitir ferramientes de teunoloxíes d'asistencia"
#: Control.ulf#OOO_CONTROL_321.LngText.text
msgid "Load [ProductName] during system start-up"
-msgstr ""
+msgstr "Cargar [ProductName] demientres l'arranque del sistema"
#: ActionTe.ulf#OOO_ACTIONTEXT_1.LngText.text
msgid "Advertising application"
diff --git a/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po b/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
index d7177944ae9..8ad222da8d4 100644
--- a/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+officecfg%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FUI.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-16 20:46+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-09 15:30+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: WriterReportWindowState.xcu#..WriterReportWindowState.UIElements.States.private_resource/toolbar/standardbar.UIName.value.text
@@ -10238,6 +10238,10 @@ msgstr "Formatéu co~ndicional"
msgid "Conditional Formatting..."
msgstr "Formatéu co~ndicional"
+#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ConditionalFormatManagerDialog.Label.value.text
+msgid "Manage..."
+msgstr "Xestionar..."
+
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_Deselect.Label.value.text
msgid "Undo Selection"
msgstr "Desfacer escoyeta"
diff --git a/translations/source/ast/sc/source/ui/optdlg.po b/translations/source/ast/sc/source/ui/optdlg.po
index 57ca56036c4..206c2c41935 100644
--- a/translations/source/ast/sc/source/ui/optdlg.po
+++ b/translations/source/ast/sc/source/ui/optdlg.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Foptdlg.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-16 21:18+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2012-07-09 15:35+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: calcoptionsdlg.src#RID_SCDLG_FORMULA_CALCOPTIONS.FT_OPTION_EDIT_CAPTION.fixedtext.text
@@ -25,7 +25,7 @@ msgstr "Sintaxis de referencia pa una referencia de cadena"
#: calcoptionsdlg.src#RID_SCDLG_FORMULA_CALCOPTIONS.STR_STRING_REF_SYNTAX_DESC.string.text
msgid "Formula syntax to use when parsing references given in string parameters. This affects built-in functions such as INDIRECT that takes a reference as a string value."
-msgstr ""
+msgstr "Sintaxis de les fórmules a usar al procesar les referencies que se dan nos parámetros de les cadenes. Afeutará a les funciones integraes tales como INDIREUTO que tomen una referencia como valor d'una cadena."
#: calcoptionsdlg.src#RID_SCDLG_FORMULA_CALCOPTIONS.STR_USE_FORMULA_SYNTAX.string.text
msgid "Use formula syntax"
diff --git a/translations/source/ast/sc/source/ui/src.po b/translations/source/ast/sc/source/ui/src.po
index 8bd8ef30ab1..6a745b1641a 100644
--- a/translations/source/ast/sc/source/ui/src.po
+++ b/translations/source/ast/sc/source/ui/src.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fsrc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-16 21:14+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-09 15:39+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: namedlg.src#RID_SCDLG_NAMES.BTN_ADD.pushbutton.text
@@ -9550,6 +9550,7 @@ msgid "Settings:"
msgstr "Configuración:"
#: solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text
+msgctxt "solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text"
msgid "Edit..."
msgstr "Editar..."
@@ -9582,16 +9583,16 @@ msgstr "Desaniciar"
msgid "Conditional Formatting for"
msgstr "Fomatéu condicional pa"
-#: condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text
-msgctxt "condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text"
-msgid "Condition"
-msgstr "Condición"
+#: condformatdlg.src#RID_COND_ENTRY.STR_CONDITION.string.text
+msgid "Condition "
+msgstr "Condición "
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.1.stringlist.text
msgid "All Cells"
msgstr "Toles caxelles"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text"
msgid "Cell value is"
msgstr "El valor de la caxella ye"
@@ -9624,14 +9625,17 @@ msgid "not equal to"
msgstr "nun ye igual a"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text"
msgid "between"
msgstr "ente"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text"
msgid "not between"
msgstr "nun ta ente"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text"
msgid "duplicate"
msgstr "duplicáu"
@@ -9826,6 +9830,25 @@ msgctxt "subtdlg.src#RID_SCDLG_SUBTOTALS.tabdialog.text"
msgid "Subtotals"
msgstr "Subtotales"
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text"
+msgid "Add"
+msgstr "Amestar"
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text"
+msgid "Remove"
+msgstr "Desaniciar"
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text"
+msgid "Edit..."
+msgstr "Editar..."
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.modaldialog.text
+msgid "Manage Conditional Formatting"
+msgstr "Xestionar el formatu condicional"
+
#: textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
msgctxt "textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
msgid "Font"
@@ -12082,6 +12105,42 @@ msgstr ""
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Esti documentu tien referencies n'otru documentu y entá nun se guardó. Zarralu ensin guardar producirá la perda de datos."
+#: globstr.src#RID_GLOBSTR.STR_HEADER_COND.string.text
+msgid "First Condition"
+msgstr "Primera condición"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text"
+msgid "Cell value is"
+msgstr "El valor de la caxella ye"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_COLORSCALE.string.text
+msgid "ColorScale"
+msgstr "EscalaColor"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DATABAR.string.text
+msgid "DataBar"
+msgstr "BarraDatos"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text"
+msgid "between"
+msgstr "ente"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text"
+msgid "not between"
+msgstr "nun ta ente"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_UNIQUE.string.text
+msgid "unique"
+msgstr "únicu"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text"
+msgid "duplicate"
+msgstr "duplicáu"
+
#: crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text
msgctxt "crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text"
msgid "Range"
diff --git a/translations/source/ast/scp2/source/draw.po b/translations/source/ast/scp2/source/draw.po
index b7fa6e5f9ca..16dbd154b46 100644
--- a/translations/source/ast/scp2/source/draw.po
+++ b/translations/source/ast/scp2/source/draw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fdraw.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-19 00:33+0200\n"
+"PO-Revision-Date: 2012-07-09 15:40+0200\n"
"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: folderitem_draw.ulf#STR_FI_NAME_ZEICHNUNG.LngText.text
@@ -45,11 +45,11 @@ msgstr "Plantía de dibuxu OpenDocument"
#: registryitem_draw.ulf#STR_REG_VAL_MS_VISIO_DOCUMENT.LngText.text
msgid "Microsoft Visio 2000/XP/2003 Document"
-msgstr ""
+msgstr "Documentu de Microsoft Visio 2000/XP/2003"
#: registryitem_draw.ulf#STR_REG_VAL_MS_VISIO_TEMPLATE.LngText.text
msgid "Microsoft Visio 2000/XP/2003 Template"
-msgstr ""
+msgstr "Plantía de Microsoft Visio 2000/XP/2003"
#: module_draw.ulf#STR_NAME_MODULE_PRG_DRAW.LngText.text
msgid "%PRODUCTNAME Draw"
diff --git a/translations/source/ast/sfx2/source/doc.po b/translations/source/ast/sfx2/source/doc.po
index 000fbaf2fe4..b8edfd81798 100644
--- a/translations/source/ast/sfx2/source/doc.po
+++ b/translations/source/ast/sfx2/source/doc.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fdoc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-02-23 02:05+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-09 15:47+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: doctdlg.src#DLG_DOC_TEMPLATE.FL_EDIT.fixedline.text
@@ -198,104 +198,44 @@ msgid "Template Management"
msgstr "Remanamientu de plantíes"
#: templatelocnames.src#STR_TEMPLATE_NAME1.string.text
-msgid "Blue Border"
-msgstr "Berbesu azul"
+msgid "Abstract Green"
+msgstr "Verde astractu"
#: templatelocnames.src#STR_TEMPLATE_NAME2.string.text
-msgid "Black and White"
-msgstr "Prieto y blanco"
+msgid "Abstract Red"
+msgstr "Bermeyo astractu"
#: templatelocnames.src#STR_TEMPLATE_NAME3.string.text
-msgid "Blue and Grey"
-msgstr "Azul y buxu"
+msgid "Abstract Yellow"
+msgstr "Mariello astractu"
#: templatelocnames.src#STR_TEMPLATE_NAME4.string.text
-msgid "Blue Lines and Gradients"
-msgstr "Llinies azules y dilíos"
+msgid "Bright Blue"
+msgstr "Azul brillante"
#: templatelocnames.src#STR_TEMPLATE_NAME5.string.text
-msgid "Blue with Bottom Title"
-msgstr "Azul col títulu abaxo"
+msgid "DNA"
+msgstr "ADN"
#: templatelocnames.src#STR_TEMPLATE_NAME6.string.text
-msgid "Notebook"
-msgstr "Cuadernu"
+msgid "Inspiration"
+msgstr "Inspiración"
#: templatelocnames.src#STR_TEMPLATE_NAME7.string.text
-msgid "Brown"
-msgstr "Marrón"
+msgid "Lush Green"
+msgstr "Verde tupíu"
#: templatelocnames.src#STR_TEMPLATE_NAME8.string.text
-msgid "Characters with Glow"
-msgstr "Caráuteres con brillu"
+msgid "Metropolis"
+msgstr "Metrópolis"
#: templatelocnames.src#STR_TEMPLATE_NAME9.string.text
-msgid "Forest"
-msgstr "Viesca"
+msgid "Sunset"
+msgstr "Atapecer"
#: templatelocnames.src#STR_TEMPLATE_NAME10.string.text
-msgid "Fresco"
-msgstr "Fresco"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME11.string.text
-msgid "Glacier"
-msgstr "Glaciar"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME12.string.text
-msgid "Green with White Lines"
-msgstr "Verde con llinies blanques"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME13.string.text
-msgid "Keyboard"
-msgstr "Tecláu"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME14.string.text
-msgid "Light Blue Shapes"
-msgstr "Formes azul claro"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME15.string.text
-msgid "Numbers on Dark Background"
-msgstr "Númberos nun fondu escuru"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME16.string.text
-msgid "Blue Step Gradients"
-msgstr "Pasos de dilíu azul"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME17.string.text
-msgid "White Blue and Lightnings"
-msgstr "Blanco, azul y rellámpagos"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME18.string.text
-msgid "Noise Paper"
-msgstr "Papel con ruíu"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME19.string.text
-msgid "Red Noise Shapes"
-msgstr "Formes con ruíu bermeyu"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME20.string.text
-msgid "Rounded Rectangles"
-msgstr "Rectángulos redondiaos"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME21.string.text
-msgid "Blue and Red Gradient"
-msgstr "Dilíu azul y bermeyu"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME22.string.text
-msgid "Technical Polygon"
-msgstr "Polígonu téunicu"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME23.string.text
-msgid "Tunnel"
-msgstr "Túnel"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME24.string.text
-msgid "Water"
-msgstr "Agua"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME25.string.text
-msgid "Wine"
-msgstr "Vinu"
+msgid "Vintage"
+msgstr "Antiguu"
#: doc.src#MSG_CONFIRM_FILTER.querybox.text
msgid ""
diff --git a/translations/source/ast/svtools/source/dialogs.po b/translations/source/ast/svtools/source/dialogs.po
index 608f889862f..b3ceb1923bc 100644
--- a/translations/source/ast/svtools/source/dialogs.po
+++ b/translations/source/ast/svtools/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-02-24 22:12+0200\n"
"Last-Translator: astur <ivarela@softastur.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -719,66 +719,6 @@ msgstr "El ficheru especificáu nun pudo abrise."
msgid "$(ERR) activating object"
msgstr "$(ERR) al activar l'oxetu"
-#: so3res.src#STR_INS_OBJECT.string.text
-msgid "Inserts a new %1-Object into your document."
-msgstr "Inxerta un oxetu %1 nel so documentu."
-
-#: so3res.src#STR_INS_OBJECT_ICON.string.text
-msgid "Inserts a new %1-Object into your document as a symbol."
-msgstr "Inxerta un oxetu %1 como símbolu nel so documentu."
-
-#: so3res.src#STR_INS_FILE.string.text
-msgid "Inserts the contents of the file into your document to enable later editing in the original application."
-msgstr "Inxerta'l conteníu del ficheru nel so documentu, de mou que pueda editalu más sero usando l'aplicación orixinal."
-
-#: so3res.src#STR_INS_PLUGIN.string.text
-msgid "Inserts a plug-in object into your document with a reference to the plug-in data. When the object is activated, the plug-in is automatically executed."
-msgstr "Inxerta un oxetu de complementu nel to documentu con una referencia a los datos del complementu. Al activar l'oxetu, s'executa de mou automáticu el complementu."
-
-#: so3res.src#STR_INS_APPLET.string.text
-msgid "Inserts an applet object into your document. When the object is activated, the applet is automatically executed."
-msgstr "Inxerta un oxetu Applet nel so documentu. Cuando s'activa l'oxetu, l'applet execútase automáticamente."
-
-#: so3res.src#STR_INS_FILE_ICON.string.text
-msgid "Inserts the contents of the file as an icon into your document."
-msgstr "Inxerta'l conteníu del ficheru como un iconu nel documentu."
-
-#: so3res.src#STR_INS_FILE_LINK.string.text
-msgid "Inserts the contents of the file into your document and creates a link to the source file. Changes made to the source file will be reflected in your document."
-msgstr "Inxerta'l conteníu del ficheru nel so documentu y cria un enllaz col ficheru fonte. Les modificaciones nel ficheru fonte aparecen tamién nel so documentu."
-
-#: so3res.src#STR_INS_FILE_ICON_LINK.string.text
-msgid "Inserts an icon into your document representing the file. Changes made to the source file will be reflected in your document."
-msgstr "Inxerta un símbolu, que representa el ficheru, nel so documentu. Les modificaciones nel ficheru fonte tamién aparecen nel so documentu."
-
-#: so3res.src#STR_PASTE.string.text
-msgid "Pastes the contents of the clipboard as %1 in your document."
-msgstr "Inxerta'l conteníu del cartafueyu como %1 nel so documentu."
-
-#: so3res.src#STR_CONVERT_TO.string.text
-msgid "Converts the selected %1object to the object type %2."
-msgstr "Convierte l'oxetu %1object escoyíu a un oxetu de triba %2."
-
-#: so3res.src#STR_ACTIVATE_AS.string.text
-msgid "All objects of type %1 are activated as %2, but not converted"
-msgstr "Tolos oxetos de triba %1 s'activen como %2, pero nun se convierten"
-
-#: so3res.src#STR_VERB_OPEN.string.text
-msgid "~Open"
-msgstr "~Abrir"
-
-#: so3res.src#STR_VERB_PROPS.string.text
-msgid "~Properties"
-msgstr "~Propiedaes"
-
-#: so3res.src#STR_PLUGIN_CANT_SHOW.string.text
-msgid "Plug-in % cannot be displayed."
-msgstr "El complementu % nun se pue amosar."
-
-#: so3res.src#STR_ERROR_DDE.string.text
-msgid "DDE link to % for % area % are not available."
-msgstr "Enllaz DDE a % pa % estaya % non disponible."
-
#: so3res.src#STR_ERROR_OBJNOCREATE.string.text
msgid "Object % could not be inserted."
msgstr "L'oxetu % nun se pudo inxertar."
@@ -791,18 +731,10 @@ msgstr "L'oxetu del ficheru % nun se pudo inxertar."
msgid "Plug-in from document % could not be inserted."
msgstr "El complementu del documentu % nun se pudo inxertar."
-#: so3res.src#STR_QUERYUPDATELINKS.string.text
-msgid "Update all links?"
-msgstr "¿Anovar tolos enllaces?"
-
#: so3res.src#STR_FURTHER_OBJECT.string.text
msgid "Further objects"
msgstr "Otros oxetos"
-#: so3res.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "Editar Applet"
-
#: so3res.src#MI_PLUGIN.MI_PLUGIN_DEACTIVATE.menuitem.text
msgid "Deactivate"
msgstr "Desactivar"
diff --git a/translations/source/be/accessibility/source/helper.po b/translations/source/be/accessibility/source/helper.po
index 048395f0474..f9f21f4ba88 100644
--- a/translations/source/be/accessibility/source/helper.po
+++ b/translations/source/be/accessibility/source/helper.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: helper\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+accessibility%2Fsource%2Fhelper.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-28 20:30+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/avmedia/source/framework.po b/translations/source/be/avmedia/source/framework.po
index 54b6d897d5b..caed9fcabbb 100644
--- a/translations/source/be/avmedia/source/framework.po
+++ b/translations/source/be/avmedia/source/framework.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: framework\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+avmedia%2Fsource%2Fframework.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/avmedia/source/viewer.po b/translations/source/be/avmedia/source/viewer.po
index 5b5e9357cb9..7e7f37b65d7 100644
--- a/translations/source/be/avmedia/source/viewer.po
+++ b/translations/source/be/avmedia/source/viewer.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: viewer\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+avmedia%2Fsource%2Fviewer.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-10-20 23:32+0300\n"
-"Last-Translator: Yury Tarasievich\n"
-"Language-Team: <en@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 08:30+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -28,7 +27,7 @@ msgstr "Усе відэа і гукавыя файлы"
#: mediawindow.src#AVMEDIA_STR_ALL_FILES.string.text
msgid "All files"
-msgstr ""
+msgstr "Усе файлы"
#: mediawindow.src#AVMEDIA_ERR_URL.errorbox.text
msgid "The format of the selected file is not supported."
diff --git a/translations/source/be/basctl/source/basicide.po b/translations/source/be/basctl/source/basicide.po
index 66aad1795d6..c461b8a6624 100644
--- a/translations/source/be/basctl/source/basicide.po
+++ b/translations/source/be/basctl/source/basicide.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: basicide\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basctl%2Fsource%2Fbasicide.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2011-11-26 11:56+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 08:30+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -689,7 +688,7 @@ msgstr "Паказваць"
#: objdlg.src#RID_BASICIDE_OBJCAT.dockingwindow.text
msgid "Object Catalog"
-msgstr ""
+msgstr "Каталог аб'ектаў"
#: objdlg.src#RID_STR_TLB_MACROS.string.text
msgid "Objects Tree"
diff --git a/translations/source/be/basctl/source/dlged.po b/translations/source/be/basctl/source/dlged.po
index 5aa05650622..e6b8e6610c7 100644
--- a/translations/source/be/basctl/source/dlged.po
+++ b/translations/source/be/basctl/source/dlged.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dlged\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basctl%2Fsource%2Fdlged.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-06 22:00+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/basic/source/classes.po b/translations/source/be/basic/source/classes.po
index f376199266c..15f614ce497 100644
--- a/translations/source/be/basic/source/classes.po
+++ b/translations/source/be/basic/source/classes.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: classes\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basic%2Fsource%2Fclasses.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/basic/source/sbx.po b/translations/source/be/basic/source/sbx.po
index bb660211272..19be2061108 100644
--- a/translations/source/be/basic/source/sbx.po
+++ b/translations/source/be/basic/source/sbx.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: sbx\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basic%2Fsource%2Fsbx.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/chart2/source/controller/dialogs.po b/translations/source/be/chart2/source/controller/dialogs.po
index 980bf6f6576..6c560ddd67b 100644
--- a/translations/source/be/chart2/source/controller/dialogs.po
+++ b/translations/source/be/chart2/source/controller/dialogs.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+chart2%2Fsource%2Fcontroller%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:20+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: tp_TitleRotation.src#TP_ALIGNMENT.BTN_TXTSTACKED.tristatebox.text
@@ -249,22 +248,19 @@ msgid "Type"
msgstr "Тып"
#: Strings.src#STR_PAGE_XERROR_BARS.string.text
-#, fuzzy
msgctxt "Strings.src#STR_PAGE_XERROR_BARS.string.text"
msgid "X Error Bars"
-msgstr "Y Error Bars"
+msgstr "Слупкі памылак X"
#: Strings.src#STR_PAGE_YERROR_BARS.string.text
-#, fuzzy
msgctxt "Strings.src#STR_PAGE_YERROR_BARS.string.text"
msgid "Y Error Bars"
-msgstr "Y Error Bars"
+msgstr "Слупкі памылак Y"
#: Strings.src#STR_PAGE_ZERROR_BARS.string.text
-#, fuzzy
msgctxt "Strings.src#STR_PAGE_ZERROR_BARS.string.text"
msgid "Z Error Bars"
-msgstr "Y Error Bars"
+msgstr "Слупкі памылак Z"
#: Strings.src#STR_PAGE_ALIGNMENT.string.text
msgctxt "Strings.src#STR_PAGE_ALIGNMENT.string.text"
@@ -446,22 +442,19 @@ msgid "Equation"
msgstr "Equation"
#: Strings.src#STR_OBJECT_ERROR_BARS_X.string.text
-#, fuzzy
msgctxt "Strings.src#STR_OBJECT_ERROR_BARS_X.string.text"
msgid "X Error Bars"
-msgstr "Y Error Bars"
+msgstr "Слупкі памылак X"
#: Strings.src#STR_OBJECT_ERROR_BARS_Y.string.text
-#, fuzzy
msgctxt "Strings.src#STR_OBJECT_ERROR_BARS_Y.string.text"
msgid "Y Error Bars"
-msgstr "Y Error Bars"
+msgstr "Слупкі памылак Y"
#: Strings.src#STR_OBJECT_ERROR_BARS_Z.string.text
-#, fuzzy
msgctxt "Strings.src#STR_OBJECT_ERROR_BARS_Z.string.text"
msgid "Z Error Bars"
-msgstr "Y Error Bars"
+msgstr "Слупкі памылак Z"
#: Strings.src#STR_OBJECT_STOCK_LOSS.string.text
msgid "Stock Loss"
diff --git a/translations/source/be/connectivity/registry/ado/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
index c4ef7c8d44b..d9bc7cb6880 100644
--- a/translations/source/be/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
@@ -1,13 +1,12 @@
#. extracted from connectivity/registry/ado/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fado%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 08:34+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -16,12 +15,12 @@ msgstr ""
#: Drivers.xcu#.Drivers.Installed.sdbc_ado__.DriverTypeDisplayName.value.text
msgid "ADO"
-msgstr ""
+msgstr "ADO"
#: Drivers.xcu#.Drivers.Installed.sdbc_ado_access_PROVIDER_Microsoft.Jet.OLEDB.4.0_DATA_SOURCE__.DriverTypeDisplayName.value.text
msgid "Microsoft Access"
-msgstr ""
+msgstr "Microsoft Access"
#: Drivers.xcu#.Drivers.Installed.sdbc_ado_access_Provider_Microsoft.ACE.OLEDB.12.0_DATA_SOURCE__.DriverTypeDisplayName.value.text
msgid "Microsoft Access 2007"
-msgstr ""
+msgstr "Microsoft Access 2007"
diff --git a/translations/source/be/connectivity/registry/calc/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
index 9f5382d9550..7adf92bf671 100644
--- a/translations/source/be/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
@@ -1,19 +1,18 @@
#. extracted from connectivity/registry/calc/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fcalc%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:19+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Drivers.xcu#.Drivers.Installed.sdbc_calc__.DriverTypeDisplayName.value.text
msgid "Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш"
diff --git a/translations/source/be/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
index 672f1561876..712f90cd10d 100644
--- a/translations/source/be/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
@@ -1,19 +1,18 @@
#. extracted from connectivity/registry/dbase/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fdbase%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:19+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Drivers.xcu#.Drivers.Installed.sdbc_dbase__.DriverTypeDisplayName.value.text
msgid "dBASE"
-msgstr ""
+msgstr "dBASE"
diff --git a/translations/source/be/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
index b2514955dac..f1748e54ec7 100644
--- a/translations/source/be/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
@@ -1,27 +1,26 @@
#. extracted from connectivity/registry/evoab2/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fevoab2%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:19+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Drivers.xcu#.Drivers.Installed.sdbc_address_evolution_local.DriverTypeDisplayName.value.text
msgid "Evolution Local"
-msgstr ""
+msgstr "Evolution, тутэйшая"
#: Drivers.xcu#.Drivers.Installed.sdbc_address_evolution_ldap.DriverTypeDisplayName.value.text
msgid "Evolution LDAP"
-msgstr ""
+msgstr "Evolution, LDAP"
#: Drivers.xcu#.Drivers.Installed.sdbc_address_evolution_groupwise.DriverTypeDisplayName.value.text
msgid "Groupwise"
-msgstr ""
+msgstr "Groupwise"
diff --git a/translations/source/be/connectivity/registry/flat/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
index f31755091e2..8aecc4cdce8 100644
--- a/translations/source/be/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
@@ -1,19 +1,18 @@
#. extracted from connectivity/registry/flat/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fflat%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:18+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Drivers.xcu#.Drivers.Installed.sdbc_flat__.DriverTypeDisplayName.value.text
msgid "Text"
-msgstr ""
+msgstr "Тэкст"
diff --git a/translations/source/be/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
index 1c3f4e8b317..305d969a4fe 100644
--- a/translations/source/be/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
@@ -1,19 +1,18 @@
#. extracted from connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fhsqldb%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:18+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Drivers.xcu#.Drivers.Installed.sdbc_embedded_hsqldb.DriverTypeDisplayName.value.text
msgid "HSQL database engine"
-msgstr ""
+msgstr "Рухавік баз даных HSQL"
diff --git a/translations/source/be/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
index 8d1e62dc4d5..77bbfdc4da2 100644
--- a/translations/source/be/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
@@ -1,23 +1,22 @@
#. extracted from connectivity/registry/jdbc/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fjdbc%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:18+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Drivers.xcu#.Drivers.Installed.jdbc__.DriverTypeDisplayName.value.text
msgid "JDBC"
-msgstr ""
+msgstr "JDBC"
#: Drivers.xcu#.Drivers.Installed.jdbc_oracle_thin__.DriverTypeDisplayName.value.text
msgid "Oracle JDBC"
-msgstr ""
+msgstr "Oracle JDBC"
diff --git a/translations/source/be/connectivity/registry/kab/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
index 9b1801cc88f..22334a52cbc 100644
--- a/translations/source/be/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
@@ -1,19 +1,18 @@
#. extracted from connectivity/registry/kab/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fkab%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-05 09:17+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Drivers.xcu#.Drivers.Installed.sdbc_address_kab.DriverTypeDisplayName.value.text
msgid "KDE Address Book"
-msgstr ""
+msgstr "Адрасная кніга KDE"
diff --git a/translations/source/be/connectivity/registry/macab/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
index d88f9a667b7..199ab47ec07 100644
--- a/translations/source/be/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
@@ -1,13 +1,12 @@
#. extracted from connectivity/registry/macab/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fmacab%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 08:33+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -16,4 +15,4 @@ msgstr ""
#: Drivers.xcu#.Drivers.Installed.sdbc_address_macab.DriverTypeDisplayName.value.text
msgid "Mac OS X Address Book"
-msgstr ""
+msgstr "Адрасная кніга Mac OS X"
diff --git a/translations/source/be/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
index ed88e144aac..a40d13364a9 100644
--- a/translations/source/be/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
@@ -1,13 +1,12 @@
#. extracted from connectivity/registry/mozab/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fmozab%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 08:33+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -16,20 +15,20 @@ msgstr ""
#: Drivers.xcu#.Drivers.Installed.sdbc_address_outlook.DriverTypeDisplayName.value.text
msgid "Microsoft Outlook Address Book"
-msgstr ""
+msgstr "Адрасная кніга Microsoft Outlook"
#: Drivers.xcu#.Drivers.Installed.sdbc_address_outlookexp.DriverTypeDisplayName.value.text
msgid "Microsoft Windows Address Book"
-msgstr ""
+msgstr "Адрасная кніга Microsoft Windows"
#: Drivers.xcu#.Drivers.Installed.sdbc_address_mozilla_.DriverTypeDisplayName.value.text
msgid "SeaMonkey Address Book"
-msgstr ""
+msgstr "Адрасная кніга SeaMonkey"
#: Drivers.xcu#.Drivers.Installed.sdbc_address_thunderbird_.DriverTypeDisplayName.value.text
msgid "Thunderbird/Icedove Address Book"
-msgstr ""
+msgstr "Адрасная кніга Thunderbird/Icedove"
#: Drivers.xcu#.Drivers.Installed.sdbc_address_ldap__.DriverTypeDisplayName.value.text
msgid "LDAP Address Book"
-msgstr ""
+msgstr "Адрасная кніга LDAP"
diff --git a/translations/source/be/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po
index 530f504200d..b81126758b4 100644
--- a/translations/source/be/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po
@@ -1,27 +1,26 @@
#. extracted from connectivity/registry/mozab2/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fmozab2%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-05 09:16+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Drivers.xcu#.Drivers.Installed.sdbc_address_mozilla_.DriverTypeDisplayName.value.text
msgid "SeaMonkey Address Book"
-msgstr ""
+msgstr "Адрасная кніга SeaMonkey"
#: Drivers.xcu#.Drivers.Installed.sdbc_address_thunderbird_.DriverTypeDisplayName.value.text
msgid "Thunderbird/Icedove Address Book"
-msgstr ""
+msgstr "Адрасная кніга Thunderbird/Icedove"
#: Drivers.xcu#.Drivers.Installed.sdbc_address_ldap__.DriverTypeDisplayName.value.text
msgid "LDAP Address Book"
-msgstr ""
+msgstr "Адрасная кніга LDAP"
diff --git a/translations/source/be/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
index f1c2b7a945b..1f13df31ede 100644
--- a/translations/source/be/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
@@ -1,27 +1,26 @@
#. extracted from connectivity/registry/mysql/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fmysql%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-05 09:17+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Drivers.xcu#.Drivers.Installed.sdbc_mysql_jdbc__.DriverTypeDisplayName.value.text
msgid "MySQL (JDBC)"
-msgstr ""
+msgstr "MySQL (JDBC)"
#: Drivers.xcu#.Drivers.Installed.sdbc_mysql_odbc__.DriverTypeDisplayName.value.text
msgid "MySQL (ODBC)"
-msgstr ""
+msgstr "MySQL (ODBC)"
#: Drivers.xcu#.Drivers.Installed.sdbc_mysql_mysqlc__.DriverTypeDisplayName.value.text
msgid "MySQL (Native)"
-msgstr ""
+msgstr "MySQL (уласны)"
diff --git a/translations/source/be/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
index eed0e24c6d2..b0baa83a226 100644
--- a/translations/source/be/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
@@ -1,19 +1,18 @@
#. extracted from connectivity/registry/odbc/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fodbc%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:17+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Drivers.xcu#.Drivers.Installed.sdbc_odbc__.DriverTypeDisplayName.value.text
msgid "ODBC"
-msgstr ""
+msgstr "ODBC"
diff --git a/translations/source/be/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
index 5a87f5ad082..30c934c84c3 100644
--- a/translations/source/be/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
@@ -1,19 +1,18 @@
#. extracted from connectivity/registry/postgresql/org/openoffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fpostgresql%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:17+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Drivers.xcu#.Drivers.Installed.sdbc_postgresql__.DriverTypeDisplayName.value.text
msgid "PostgreSQL"
-msgstr ""
+msgstr "PostgreSQL"
diff --git a/translations/source/be/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po b/translations/source/be/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po
index 0e04955056f..cc49366971e 100644
--- a/translations/source/be/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po
+++ b/translations/source/be/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po
@@ -1,19 +1,18 @@
#. extracted from connectivity/registry/tdeab/org/openofffice/Office/DataAccess.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Ftdeab%2Forg%2Fopenofffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:17+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Drivers.xcu#.Drivers.Installed.sdbc_address_tdeab.DriverTypeDisplayName.value.text
msgid "TDE Address Book"
-msgstr ""
+msgstr "Адрасная кніга TDE"
diff --git a/translations/source/be/connectivity/source/resource.po b/translations/source/be/connectivity/source/resource.po
index f318e29f5b2..30429d83dcd 100644
--- a/translations/source/be/connectivity/source/resource.po
+++ b/translations/source/be/connectivity/source/resource.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: resource\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fsource%2Fresource.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-06 21:50+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/cui/source/customize.po b/translations/source/be/cui/source/customize.po
index f9ad89c38aa..88ea66567a5 100644
--- a/translations/source/be/cui/source/customize.po
+++ b/translations/source/be/cui/source/customize.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: customize\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fcustomize.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:32+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/cui/source/dialogs.po b/translations/source/be/cui/source/dialogs.po
index d992d92a336..4143e61934a 100644
--- a/translations/source/be/cui/source/dialogs.po
+++ b/translations/source/be/cui/source/dialogs.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:07+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_WORD.fixedtext.text
@@ -139,11 +138,11 @@ msgstr "~E-mail"
#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.RB_LINKTYP_NEWS.radiobutton.text
msgid "~News"
-msgstr "~News"
+msgstr "Навіны"
#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_RECEIVER.fixedtext.text
msgid "Re~cipient"
-msgstr ""
+msgstr "Атрымальнік"
#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_SUBJECT.fixedtext.text
msgid "~Subject"
@@ -152,27 +151,27 @@ msgstr "Тэма"
#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_ADRESSBOOK.imagebutton.text
msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_ADRESSBOOK.imagebutton.text"
msgid "Data Sources..."
-msgstr "Data Sources..."
+msgstr "Крыніцы даных..."
#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_ADRESSBOOK.imagebutton.quickhelptext
msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_ADRESSBOOK.imagebutton.quickhelptext"
msgid "Data Sources..."
-msgstr "Data Sources..."
+msgstr "Крыніцы даных..."
#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.GRP_MORE.fixedline.text
msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.GRP_MORE.fixedline.text"
msgid "Further settings"
-msgstr "Further settings"
+msgstr "Далейшыя настаўленні"
#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FRAME.fixedtext.text
msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FRAME.fixedtext.text"
msgid "F~rame"
-msgstr "F~rame"
+msgstr "Рамка"
#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FORM.fixedtext.text
msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FORM.fixedtext.text"
msgid "F~orm"
-msgstr "F~orm"
+msgstr "Фармуляр"
#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.LB_FORM.1.stringlist.text
msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.LB_FORM.1.stringlist.text"
@@ -1181,62 +1180,49 @@ msgstr "Floating Frame Properties"
msgid "Select File for Floating Frame"
msgstr "Select File for Floating Frame"
-#: svuidlg.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "Правіць аплет"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VERSION.string.text
msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
-msgstr ""
+msgstr "Версія %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_DESCRIPTION.string.text
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
-msgstr ""
+msgstr "%PRODUCTNAME гэта сучасны праграмны комплекс, лёгкі ва ўжыванні, з адкрытымі выточнымі тэкстамі, які здольны апрацоўваць тэкст, разліковыя аркушы, прэзентацыі і іншае."
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VENDOR.string.text
-#, fuzzy
msgid "This release was supplied by %OOOVENDOR"
-msgstr "Пастаўшчык прадукта - %OOOVENDOR."
+msgstr "Пастаўшчык выпуска - %OOOVENDOR"
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_COPYRIGHT.string.text
msgid "Copyright © 2000 - 2012 LibreOffice contributors and/or their affiliates"
-msgstr ""
+msgstr "Copyright © 2000 - 2012 LibreOffice contributors and/or their affiliates"
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BASED.string.text
msgid "LibreOffice was based on OpenOffice.org"
-msgstr ""
+msgstr "LibreOffice быў заснаваны на OpenOffice.org"
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BASED_DERIVED.string.text
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
-msgstr ""
+msgstr "%PRODUCTNAME асноўваецца на LibreOffice, а той асноўваецца на OpenOffice.org"
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BUILD.string.text
msgid "(Build ID: $BUILDID)"
-msgstr ""
+msgstr "(Build ID: $BUILDID)"
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_LINK_WEBSITE.string.text
msgid "http://www.libreoffice.org"
-msgstr ""
+msgstr "http://www.libreoffice.org"
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_LINK_CREDITS.string.text
msgid "http://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
-#: about.src#RID_DEFAULTABOUT.ABOUT_STR_LINK_LICENSE.string.text
-msgid "http://www.libreoffice.org/download/license/"
-msgstr ""
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CREDITS.pushbutton.text
msgid "Credits"
-msgstr ""
-
-#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_LICENSE.pushbutton.text
-msgid "License"
-msgstr ""
+msgstr "Заслугі"
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_WEBSITE.pushbutton.text
msgid "Website"
-msgstr ""
+msgstr "Пляцоўка Сеціва"
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CANCEL.cancelbutton.text
msgctxt "about.src#RID_DEFAULTABOUT.ABOUT_BTN_CANCEL.cancelbutton.text"
@@ -2226,15 +2212,15 @@ msgstr "Аўтар"
#: postdlg.src#RID_SVXDLG_POSTIT.STR_NOTIZ_EDIT.string.text
msgid "Edit Comment"
-msgstr ""
+msgstr "Правіць заўвагу"
#: postdlg.src#RID_SVXDLG_POSTIT.STR_NOTIZ_INSERT.string.text
msgid "Insert Comment"
-msgstr ""
+msgstr "Уставіць заўвагу"
#: postdlg.src#RID_SVXDLG_POSTIT.modaldialog.text
msgid "Comment"
-msgstr ""
+msgstr "Заўвага"
#: iconcdlg.src#RID_SVXSTR_ICONCHOICEDLG_RESETBUT.string.text
msgid "~Back"
diff --git a/translations/source/be/cui/source/options.po b/translations/source/be/cui/source/options.po
index a19d9aa1399..419fe2cffcc 100644
--- a/translations/source/be/cui/source/options.po
+++ b/translations/source/be/cui/source/options.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: options\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Foptions.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:16+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_COMPANY.fixedtext.text
@@ -203,7 +202,7 @@ msgstr "1.2"
#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.3.stringlist.text
msgid "1.2 Extended (compat mode)"
-msgstr ""
+msgstr "1.2 пашыраны (сумяшчальны)"
#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.4.stringlist.text
msgid "1.2 Extended (recommended)"
@@ -422,15 +421,15 @@ msgstr "Бяспека макрасаў..."
#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_CERTPATH.fixedline.text
msgctxt "optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_CERTPATH.fixedline.text"
msgid "Certificate Path"
-msgstr ""
+msgstr "Шлях да сертыфіката"
#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FI_SEC_CERTPATH.fixedtext.text
msgid "Select the Network Security Services certificate directory to use for digital signatures."
-msgstr ""
+msgstr "Выберыце каталог сертыфікатаў службы Network Security Service, якім будзеце карыстацца для лічбавых подпісаў."
#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_CERTPATH.pushbutton.text
msgid "Certificate..."
-msgstr ""
+msgstr "Сертыфікат..."
#: optinet2.src#RID_SVXPAGE_INET_SECURITY.STR_SEC_NOPASSWDSAVE.string.text
msgid ""
@@ -483,7 +482,7 @@ msgstr "Праграма E-mail"
#: optinet2.src#RID_SVXPAGE_INET_MAIL.STR_DEFAULT_FILENAME.string.text
msgid "All files"
-msgstr ""
+msgstr "Усе файлы"
#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.CB_USETABLE.checkbox.text
msgid "~Apply replacement table"
@@ -1247,15 +1246,15 @@ msgstr "Рашотка"
#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.6.itemlist.text
msgid "Basic Fonts (Western)"
-msgstr ""
+msgstr "Базавыя шрыфты (Заходняе пісьмо)"
#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.7.itemlist.text
msgid "Basic Fonts (Asian)"
-msgstr ""
+msgstr "Базавыя шрыфты (Азіяцкае пісьмо)"
#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.8.itemlist.text
msgid "Basic Fonts (CTL)"
-msgstr ""
+msgstr "Базавыя шрыфты (Складаны Тэкставы Выклад)"
#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.9.itemlist.text
msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.9.itemlist.text"
@@ -1274,7 +1273,7 @@ msgstr "Змяненні"
#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.12.itemlist.text
msgid "Comparison"
-msgstr ""
+msgstr "Параўнанне"
#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.13.itemlist.text
msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.13.itemlist.text"
@@ -1283,7 +1282,7 @@ msgstr "Сумяшчальнасць"
#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.14.itemlist.text
msgid "AutoCaption"
-msgstr ""
+msgstr "AutoCaption"
#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.15.itemlist.text
msgid "Mail Merge E-mail"
@@ -1497,7 +1496,6 @@ msgid "~Java runtime environments (JRE) already installed:"
msgstr "Устаноўленыя асяроддзі Явы (JRE):"
#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_ADD.pushbutton.text
-#, fuzzy
msgctxt "optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_ADD.pushbutton.text"
msgid "~Add..."
msgstr "Дадаць..."
@@ -1614,6 +1612,8 @@ msgid ""
"You have to restart %PRODUCTNAME so the new or modified values can take effect.\n"
"Please restart %PRODUCTNAME now."
msgstr ""
+"Каб новыя або змененыя значэнні пачалі дзейнічаць, трэба перастартаваць %PRODUCTNAME.\n"
+"Перастартуйце %PRODUCTNAME зараз."
#: optmemory.src#OFA_TP_MEMORY.GB_UNDO.fixedline.text
msgid "Undo"
@@ -1870,7 +1870,7 @@ msgstr "Пачатковы стан Агента Даведкі"
#: optgdlg.src#OFA_TP_MISC.FL_FILEDLG.fixedline.text
msgid "Open/Save dialogs"
-msgstr "Open/Save dialogs"
+msgstr "Дыялогі Адкрыцця і Запісу"
#: optgdlg.src#OFA_TP_MISC.CB_FILEDLG.checkbox.text
msgid "~Use %PRODUCTNAME dialogs"
@@ -1878,7 +1878,7 @@ msgstr "Ужываць дыялогі %PRODUCTNAME"
#: optgdlg.src#OFA_TP_MISC.CB_ODMADLG.checkbox.text
msgid "Show ODMA DMS dialogs first"
-msgstr "Show ODMA DMS dialogs first"
+msgstr "Спачатку паказваць дыялогі ODMA DMS"
#: optgdlg.src#OFA_TP_MISC.FL_PRINTDLG.fixedline.text
msgid "Print dialogs"
@@ -1890,7 +1890,7 @@ msgstr "Ужываць дыялогі %PRODUCTNAME"
#: optgdlg.src#OFA_TP_MISC.FL_DOCSTATUS.fixedline.text
msgid "Document status"
-msgstr "Document status"
+msgstr "Стан дакумента"
#: optgdlg.src#OFA_TP_MISC.CB_DOCSTATUS.checkbox.text
msgid "~Printing sets \"document modified\" status"
@@ -1898,11 +1898,11 @@ msgstr "Друкаванне азначае \"дакумент зменены\""
#: optgdlg.src#OFA_TP_MISC.CB_SAVE_ALWAYS.checkbox.text
msgid "Allow to save document even when the document is not modified"
-msgstr "Allow to save document even when the document is not modified"
+msgstr "Дазволена запісваць дакумент, у якім няма змяненняў"
#: optgdlg.src#OFA_TP_MISC.FL_TWOFIGURE.fixedline.text
msgid "Year (two digits)"
-msgstr "Year (two digits)"
+msgstr "Год (дзве лічбы)"
#: optgdlg.src#OFA_TP_MISC.FT_INTERPRET.fixedtext.text
msgid "Interpret as years between"
@@ -1914,15 +1914,15 @@ msgstr "і "
#: optgdlg.src#OFA_TP_MISC.CB_EXPERIMENTAL.checkbox.text
msgid "Enable experimental (unstable) features"
-msgstr "Enable experimental (unstable) features"
+msgstr "Дазволіць эксперыментальныя (няўстойлівыя) магчымасці"
#: optgdlg.src#OFA_TP_MISC.CB_MACRORECORDER.checkbox.text
msgid "Enable macro recording (limited)"
-msgstr ""
+msgstr "Дазволіць запісванне макрасаў (абмежавана)"
#: optgdlg.src#OFA_TP_VIEW.FL_USERINTERFACE.fixedline.text
msgid "User Interface"
-msgstr "User Interface"
+msgstr "Інтэрфейс карыстальніка"
#: optgdlg.src#OFA_TP_VIEW.FT_WINDOWSIZE.fixedtext.text
msgid "Sc~aling"
@@ -1930,7 +1930,7 @@ msgstr "Маштаб"
#: optgdlg.src#OFA_TP_VIEW.FT_ICONSIZESTYLE.fixedtext.text
msgid "Icon size and style"
-msgstr "Icon size and style"
+msgstr "Памер і стыль значкоў"
#: optgdlg.src#OFA_TP_VIEW.STR_ICONSIZE.string.text
msgid "Icon size"
@@ -1939,7 +1939,7 @@ msgstr "Памер значкоў"
#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.1.stringlist.text
msgctxt "optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.1.stringlist.text"
msgid "Automatic"
-msgstr "Automatic"
+msgstr "Аўтаматычна"
#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.2.stringlist.text
msgid "Small"
@@ -1952,7 +1952,7 @@ msgstr "Вялікі"
#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.1.stringlist.text
msgctxt "optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.1.stringlist.text"
msgid "Automatic"
-msgstr "Automatic"
+msgstr "Аўтаматычна"
#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.2.stringlist.text
msgid "Galaxy (default)"
@@ -1984,7 +1984,7 @@ msgstr "Класіка"
#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.9.stringlist.text
msgid "Human"
-msgstr "Human"
+msgstr "Гуманны"
#: optgdlg.src#OFA_TP_VIEW.CB_SYSTEM_FONT.checkbox.text
msgid "Use system ~font for user interface"
@@ -1992,7 +1992,7 @@ msgstr "Сістэмны шрыфт у інтэрфейсе"
#: optgdlg.src#OFA_TP_VIEW.CB_FONTANTIALIASING.checkbox.text
msgid "Screen font antialiasing"
-msgstr "Screen font antialiasing"
+msgstr "Згладжванне шрыфтаў на экране"
#: optgdlg.src#OFA_TP_VIEW.FT_POINTLIMIT_LABEL.fixedtext.text
msgid "from"
@@ -2000,20 +2000,20 @@ msgstr "ад"
#: optgdlg.src#OFA_TP_VIEW.FT_POINTLIMIT_UNIT.fixedtext.text
msgid "Pixels"
-msgstr " Pixels"
+msgstr "кропкі"
#: optgdlg.src#OFA_TP_VIEW.FL_MENU.fixedline.text
msgid "Menu"
-msgstr "Menu"
+msgstr "Меню"
#: optgdlg.src#OFA_TP_VIEW.FT_MENU_ICONS.fixedtext.text
msgid "Icons in menus"
-msgstr "Icons in menus"
+msgstr "Значкі ў меню"
#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.1.stringlist.text
msgctxt "optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.1.stringlist.text"
msgid "Automatic"
-msgstr "Automatic"
+msgstr "Аўтаматычна"
#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.2.stringlist.text
msgid "Hide"
@@ -2037,15 +2037,15 @@ msgstr "Гісторыя выбіраных шрыфтаў"
#: optgdlg.src#OFA_TP_VIEW.FL_RENDERING.fixedline.text
msgid "Graphics output"
-msgstr "Graphics output"
+msgstr "Вывад графікі"
#: optgdlg.src#OFA_TP_VIEW.CB_USE_HARDACCELL.checkbox.text
msgid "Use hardware acceleration"
-msgstr "Use hardware acceleration"
+msgstr "З апаратным паскарэннем"
#: optgdlg.src#OFA_TP_VIEW.CB_USE_ANTIALIASE.checkbox.text
msgid "Use Anti-Aliasing"
-msgstr "Use Anti-Aliasing"
+msgstr "Са згладжваннем"
#: optgdlg.src#OFA_TP_VIEW.FL_MOUSE.fixedline.text
msgid "Mouse"
@@ -2053,7 +2053,7 @@ msgstr "Мышка"
#: optgdlg.src#OFA_TP_VIEW.FT_MOUSEPOS.fixedtext.text
msgid "Mouse positioning"
-msgstr "Mouse positioning"
+msgstr "Пастаноўка мышкі"
#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.1.stringlist.text
msgid "Default button"
@@ -2069,11 +2069,11 @@ msgstr "Без аўта-пастаноўкі"
#: optgdlg.src#OFA_TP_VIEW.FT_MOUSEMIDDLE.fixedtext.text
msgid "Middle mouse button"
-msgstr "Middle mouse button"
+msgstr "Сярэдняя кнопка мышкі"
#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.1.stringlist.text
msgid "No function"
-msgstr "No function"
+msgstr "Без дзеяння"
#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.2.stringlist.text
msgid "Automatic scrolling"
@@ -2097,7 +2097,7 @@ msgstr "%"
#: optgdlg.src#OFA_TP_LANGUAGES.FL_UI_LANG.fixedline.text
msgid "Language of"
-msgstr "Language of"
+msgstr "Мова "
#: optgdlg.src#OFA_TP_LANGUAGES.FT_USERINTERFACE.fixedtext.text
msgid "~User interface"
@@ -2105,7 +2105,7 @@ msgstr "Інтэрфейс карыстальніка"
#: optgdlg.src#OFA_TP_LANGUAGES.FT_LOCALESETTING.fixedtext.text
msgid "Locale setting"
-msgstr "Locale setting"
+msgstr "Як у лакальнасці"
#: optgdlg.src#OFA_TP_LANGUAGES.FT_DECIMALSEPARATOR.fixedtext.text
msgid "Decimal separator key"
@@ -2121,7 +2121,7 @@ msgstr "Прадвызначаныя грошы"
#: optgdlg.src#OFA_TP_LANGUAGES.FL_LINGU_LANG.fixedline.text
msgid "Default languages for documents"
-msgstr "Default languages for documents"
+msgstr "Прадвызначаныя мовы дакументаў"
#: optgdlg.src#OFA_TP_LANGUAGES.FT_WEST_LANG.fixedtext.text
msgid "Western"
@@ -2133,15 +2133,15 @@ msgstr "Азіяцкае пісьмо"
#: optgdlg.src#OFA_TP_LANGUAGES.FT_COMPLEX_LANG.fixedtext.text
msgid "C~TL"
-msgstr "C~TL"
+msgstr "Складаны выклад тэксту"
#: optgdlg.src#OFA_TP_LANGUAGES.CB_CURRENT_DOC.checkbox.text
msgid "For the current document only"
-msgstr "For the current document only"
+msgstr "Толькі для гэтага дакумента"
#: optgdlg.src#OFA_TP_LANGUAGES.FL_ENHANCED.fixedline.text
msgid "Enhanced language support"
-msgstr "Enhanced language support"
+msgstr "Паглыбленая апрацоўка мовы"
#: optgdlg.src#OFA_TP_LANGUAGES.CB_ASIANSUPPORT.checkbox.text
msgid "E~nabled for Asian languages"
@@ -2166,7 +2166,7 @@ msgstr "Чытаць код Бэйсіка"
#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_WBCTBL.checkbox.text
msgctxt "optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_WBCTBL.checkbox.text"
msgid "E~xecutable code"
-msgstr "E~xecutable code"
+msgstr "Выканальны код"
#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_STG.checkbox.text
msgid "Save ~original Basic code"
@@ -2183,7 +2183,7 @@ msgstr "Чытаць код Бэйсіка"
#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_EXECTBL.checkbox.text
msgctxt "optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_EXECTBL.checkbox.text"
msgid "E~xecutable code"
-msgstr "E~xecutable code"
+msgstr "Выканальны код"
#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_STG.checkbox.text
msgid "Sa~ve original Basic code"
@@ -2211,11 +2211,11 @@ msgstr "[S]"
#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.FT_HEADER1_EXPLANATION.fixedtext.text
msgid "[L]: Load and convert the object"
-msgstr "[L]: Чытаць і ператвараць аб'ект"
+msgstr "[L]: Чытанне і ператварэнне аб'екта"
#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.FT_HEADER2_EXPLANATION.fixedtext.text
msgid "[S]: Convert and save the object"
-msgstr "[S]: Ператвараць і запісваць аб'ект"
+msgstr "[S]: Ператварэнне і запіс аб'екта"
#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_MATH.string.text
msgid "MathType to %PRODUCTNAME Math or reverse"
@@ -2235,11 +2235,11 @@ msgstr "PowerPoint у %PRODUCTNAME Impress і адваротна"
#: dbregister.src#RID_SFXPAGE_DBREGISTER.FT_TYPE.fixedtext.text
msgid "Registered name"
-msgstr "Registered name"
+msgstr "Зарэгістраваная назва"
#: dbregister.src#RID_SFXPAGE_DBREGISTER.FT_PATH.fixedtext.text
msgid "Database file"
-msgstr "Database file"
+msgstr "Файл базы даных"
#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_NEW.pushbutton.text
msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_NEW.pushbutton.text"
@@ -2259,49 +2259,47 @@ msgstr "Сцерці"
#: dbregister.src#RID_SFXPAGE_DBREGISTER.GB_STD.fixedline.text
msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.GB_STD.fixedline.text"
msgid "Registered databases"
-msgstr "Registered databases"
+msgstr "Зарэгістраваныя базы даных"
#: dbregister.src#RID_SFXPAGE_DBREGISTER.tabpage.text
msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.tabpage.text"
msgid "Registered databases"
-msgstr "Registered databases"
+msgstr "Зарэгістраваныя базы даных"
#: certpath.src#RID_SVXDLG_CERTPATH.FL_CERTPATH.fixedline.text
msgctxt "certpath.src#RID_SVXDLG_CERTPATH.FL_CERTPATH.fixedline.text"
msgid "Certificate Path"
-msgstr ""
+msgstr "Шлях да сертыфіката"
#: certpath.src#RID_SVXDLG_CERTPATH.FT_CERTPATH.fixedtext.text
msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:"
-msgstr ""
+msgstr "Выберыце або дадайце правільны каталог сертыфікатаў службы Network Security Service для выкарыстання ў лічбавых подпісах:"
#: certpath.src#RID_SVXDLG_CERTPATH.PB_ADD.pushbutton.text
-#, fuzzy
msgctxt "certpath.src#RID_SVXDLG_CERTPATH.PB_ADD.pushbutton.text"
msgid "~Add..."
msgstr "Дадаць..."
#: certpath.src#RID_SVXDLG_CERTPATH.STR_ADDDLGTEXT.string.text
msgid "Select a Certificate directory"
-msgstr ""
+msgstr "Выбар каталога сертыфіката"
#: certpath.src#RID_SVXDLG_CERTPATH.STR_MANUAL.string.text
-#, fuzzy
msgid "manual"
msgstr "Па-свойму"
#: certpath.src#RID_SVXDLG_CERTPATH.STR_PROFILE.string.text
msgid "Profile"
-msgstr ""
+msgstr "Профіль"
#: certpath.src#RID_SVXDLG_CERTPATH.STR_DIRECTORY.string.text
msgid "Directory"
-msgstr ""
+msgstr "Каталог"
#: certpath.src#RID_SVXDLG_CERTPATH.modaldialog.text
msgctxt "certpath.src#RID_SVXDLG_CERTPATH.modaldialog.text"
msgid "Certificate Path"
-msgstr ""
+msgstr "Шлях да сертыфіката"
#: optlingu.src#RID_SVXDLG_EDIT_MODULES.FL_EDIT_MODULES_OPTIONS.fixedline.text
msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.FL_EDIT_MODULES_OPTIONS.fixedline.text"
diff --git a/translations/source/be/cui/source/tabpages.po b/translations/source/be/cui/source/tabpages.po
index 4c738104d33..ad9b5073546 100644
--- a/translations/source/be/cui/source/tabpages.po
+++ b/translations/source/be/cui/source/tabpages.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: tabpages\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Ftabpages.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:14+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: macroass.src#RID_SVXPAGE_EVENTASSIGN.STR_EVENT.string.text
@@ -2498,7 +2497,7 @@ msgstr "#12 Envelope"
#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.30.itemlist.text
msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.30.itemlist.text"
msgid "Japanese Postcard"
-msgstr ""
+msgstr "Японская паштоўка"
#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.1.itemlist.text
msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.1.itemlist.text"
@@ -2633,16 +2632,16 @@ msgstr "Dia Slide"
#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.28.itemlist.text
msgid "Screen 4:3"
-msgstr ""
+msgstr "Экран 4:3"
#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.29.itemlist.text
msgid "Screen 16:9"
-msgstr ""
+msgstr "Экран 16:9"
#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.30.itemlist.text
msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.30.itemlist.text"
msgid "Japanese Postcard"
-msgstr ""
+msgstr "Японская паштоўка"
#: measure.src#RID_SVXPAGE_MEASURE.FL_LINE.fixedline.text
msgctxt "measure.src#RID_SVXPAGE_MEASURE.FL_LINE.fixedline.text"
@@ -3409,7 +3408,7 @@ msgstr "Below paragraph"
#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_CONTEXTUALSPACING.checkbox.text
msgid "Don't add space between paragraphs of the same style"
-msgstr ""
+msgstr "Не дадаваць інтэрвал паміж абзацамі з такім самым стылем"
#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_DIST.fixedline.text
msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_DIST.fixedline.text"
@@ -4698,7 +4697,7 @@ msgstr "Запісаць спіс штрыхаванняў"
#: tabarea.src#RID_SVXPAGE_HATCH.BTN_EMBED.checkbox.text
msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_EMBED.checkbox.text"
msgid "Embed"
-msgstr ""
+msgstr "Зашыць*"
#: tabarea.src#RID_SVXPAGE_HATCH.tabpage.text
msgctxt "tabarea.src#RID_SVXPAGE_HATCH.tabpage.text"
@@ -4716,17 +4715,17 @@ msgstr "Pattern Editor"
#: tabarea.src#RID_SVXPAGE_BITMAP.FT_COLOR.fixedtext.text
msgid "~Foreground color"
-msgstr "~Foreground color"
+msgstr "Колер рысунка"
#: tabarea.src#RID_SVXPAGE_BITMAP.FT_BACKGROUND_COLOR.fixedtext.text
msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FT_BACKGROUND_COLOR.fixedtext.text"
msgid "~Background color"
-msgstr "~Background color"
+msgstr "Колер фона"
#: tabarea.src#RID_SVXPAGE_BITMAP.FT_BITMAPS_HIDDEN.fixedtext.text
msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FT_BITMAPS_HIDDEN.fixedtext.text"
msgid "Bitmap"
-msgstr "Bitmap"
+msgstr "Растр"
#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_ADD.pushbutton.text
msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_ADD.pushbutton.text"
@@ -4768,7 +4767,7 @@ msgstr "Запісаць спіс растраў"
#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_EMBED.checkbox.text
msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_EMBED.checkbox.text"
msgid "Embed"
-msgstr ""
+msgstr "Зашыць*"
#: tabarea.src#RID_SVXPAGE_BITMAP.tabpage.text
msgid "Bitmap Patterns"
@@ -4882,7 +4881,7 @@ msgstr "Запісаць спіс градыентаў"
#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_EMBED.checkbox.text
msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_EMBED.checkbox.text"
msgid "Embed"
-msgstr ""
+msgstr "Зашыць*"
#: tabarea.src#RID_SVXPAGE_GRADIENT.tabpage.text
msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.tabpage.text"
@@ -4970,7 +4969,7 @@ msgstr "Запісаць спіс колераў"
#: tabarea.src#RID_SVXPAGE_COLOR.BTN_EMBED.checkbox.text
msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_EMBED.checkbox.text"
msgid "Embed"
-msgstr ""
+msgstr "Зашыць*"
#: tabarea.src#RID_SVXPAGE_COLOR.tabpage.text
msgctxt "tabarea.src#RID_SVXPAGE_COLOR.tabpage.text"
diff --git a/translations/source/be/dbaccess/source/core/resource.po b/translations/source/be/dbaccess/source/core/resource.po
index 28215196f8a..46ea2e8b54c 100644
--- a/translations/source/be/dbaccess/source/core/resource.po
+++ b/translations/source/be/dbaccess/source/core/resource.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: resource\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fcore%2Fresource.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-06 22:01+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dbaccess/source/ext/macromigration.po b/translations/source/be/dbaccess/source/ext/macromigration.po
index 93e962ae492..8ef2703bd5b 100644
--- a/translations/source/be/dbaccess/source/ext/macromigration.po
+++ b/translations/source/be/dbaccess/source/ext/macromigration.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: macromigration\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fext%2Fmacromigration.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-12-22 22:31+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dbaccess/source/sdbtools/resource.po b/translations/source/be/dbaccess/source/sdbtools/resource.po
index d2245a7cf0b..35b11c8041f 100644
--- a/translations/source/be/dbaccess/source/sdbtools/resource.po
+++ b/translations/source/be/dbaccess/source/sdbtools/resource.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: resource\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fsdbtools%2Fresource.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dbaccess/source/ui/app.po b/translations/source/be/dbaccess/source/ui/app.po
index 989130c36c3..e37e0f168a9 100644
--- a/translations/source/be/dbaccess/source/ui/app.po
+++ b/translations/source/be/dbaccess/source/ui/app.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: app\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fapp.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-06 22:12+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dbaccess/source/ui/browser.po b/translations/source/be/dbaccess/source/ui/browser.po
index d0a73d6d7c3..5794e232e69 100644
--- a/translations/source/be/dbaccess/source/ui/browser.po
+++ b/translations/source/be/dbaccess/source/ui/browser.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: browser\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fbrowser.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dbaccess/source/ui/control.po b/translations/source/be/dbaccess/source/ui/control.po
index 347dc909c73..14fe292cfae 100644
--- a/translations/source/be/dbaccess/source/ui/control.po
+++ b/translations/source/be/dbaccess/source/ui/control.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: control\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fcontrol.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-06 22:01+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dbaccess/source/ui/dlg.po b/translations/source/be/dbaccess/source/ui/dlg.po
index 93c422c90a6..7808ecfcb21 100644
--- a/translations/source/be/dbaccess/source/ui/dlg.po
+++ b/translations/source/be/dbaccess/source/ui/dlg.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dlg\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fdlg.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-12-22 22:31+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dbaccess/source/ui/inc.po b/translations/source/be/dbaccess/source/ui/inc.po
index 937c7060793..c744fbd5d42 100644
--- a/translations/source/be/dbaccess/source/ui/inc.po
+++ b/translations/source/be/dbaccess/source/ui/inc.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: inc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Finc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dbaccess/source/ui/misc.po b/translations/source/be/dbaccess/source/ui/misc.po
index e670a8a8fc5..c6b9e2e884d 100644
--- a/translations/source/be/dbaccess/source/ui/misc.po
+++ b/translations/source/be/dbaccess/source/ui/misc.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fmisc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dbaccess/source/ui/querydesign.po b/translations/source/be/dbaccess/source/ui/querydesign.po
index 123afe7b867..caf22572a6e 100644
--- a/translations/source/be/dbaccess/source/ui/querydesign.po
+++ b/translations/source/be/dbaccess/source/ui/querydesign.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: querydesign\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fquerydesign.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dbaccess/source/ui/relationdesign.po b/translations/source/be/dbaccess/source/ui/relationdesign.po
index aa6c14fa335..dd223bed30a 100644
--- a/translations/source/be/dbaccess/source/ui/relationdesign.po
+++ b/translations/source/be/dbaccess/source/ui/relationdesign.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: relationdesign\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Frelationdesign.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-12-22 22:32+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dbaccess/source/ui/tabledesign.po b/translations/source/be/dbaccess/source/ui/tabledesign.po
index 5191d725a94..5fbb71d13ec 100644
--- a/translations/source/be/dbaccess/source/ui/tabledesign.po
+++ b/translations/source/be/dbaccess/source/ui/tabledesign.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: tabledesign\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Ftabledesign.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dbaccess/source/ui/uno.po b/translations/source/be/dbaccess/source/ui/uno.po
index 6d2b4bf0968..52015abe1e3 100644
--- a/translations/source/be/dbaccess/source/ui/uno.po
+++ b/translations/source/be/dbaccess/source/ui/uno.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: uno\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Funo.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/source/app.po b/translations/source/be/desktop/source/app.po
index d0308b085c1..c3fe9bda774 100644
--- a/translations/source/be/desktop/source/app.po
+++ b/translations/source/be/desktop/source/app.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: app\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fapp.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-01-25 13:32+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/source/deployment/gui.po b/translations/source/be/desktop/source/deployment/gui.po
index 1141b65bbd8..8e2b33c5de0 100644
--- a/translations/source/be/desktop/source/deployment/gui.po
+++ b/translations/source/be/desktop/source/deployment/gui.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: gui\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fgui.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-12-22 22:31+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/source/deployment/manager.po b/translations/source/be/desktop/source/deployment/manager.po
index 22a2169662a..2a02069920f 100644
--- a/translations/source/be/desktop/source/deployment/manager.po
+++ b/translations/source/be/desktop/source/deployment/manager.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: manager\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fmanager.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/source/deployment/misc.po b/translations/source/be/desktop/source/deployment/misc.po
index ba9e5df76c7..d9b9a8f8e6b 100644
--- a/translations/source/be/desktop/source/deployment/misc.po
+++ b/translations/source/be/desktop/source/deployment/misc.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fmisc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-26 11:53+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/source/deployment/registry.po b/translations/source/be/desktop/source/deployment/registry.po
index a029e28fd20..6db25ec5c4c 100644
--- a/translations/source/be/desktop/source/deployment/registry.po
+++ b/translations/source/be/desktop/source/deployment/registry.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: registry\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/source/deployment/registry/component.po b/translations/source/be/desktop/source/deployment/registry/component.po
index 1513590d9a7..0f958189e32 100644
--- a/translations/source/be/desktop/source/deployment/registry/component.po
+++ b/translations/source/be/desktop/source/deployment/registry/component.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: component\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fcomponent.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/source/deployment/registry/configuration.po b/translations/source/be/desktop/source/deployment/registry/configuration.po
index 339a7798199..bfddb4e0486 100644
--- a/translations/source/be/desktop/source/deployment/registry/configuration.po
+++ b/translations/source/be/desktop/source/deployment/registry/configuration.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: configuration\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fconfiguration.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/source/deployment/registry/help.po b/translations/source/be/desktop/source/deployment/registry/help.po
index 05a43db098a..7693b4bc254 100644
--- a/translations/source/be/desktop/source/deployment/registry/help.po
+++ b/translations/source/be/desktop/source/deployment/registry/help.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: help\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fhelp.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/source/deployment/registry/package.po b/translations/source/be/desktop/source/deployment/registry/package.po
index df53e41bdb9..a9e02756e55 100644
--- a/translations/source/be/desktop/source/deployment/registry/package.po
+++ b/translations/source/be/desktop/source/deployment/registry/package.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: package\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fpackage.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/source/deployment/registry/script.po b/translations/source/be/desktop/source/deployment/registry/script.po
index d6ad25a784b..045373cf0f2 100644
--- a/translations/source/be/desktop/source/deployment/registry/script.po
+++ b/translations/source/be/desktop/source/deployment/registry/script.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: script\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fscript.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/source/deployment/registry/sfwk.po b/translations/source/be/desktop/source/deployment/registry/sfwk.po
index c8f8cd1cb0b..b3df215fcc8 100644
--- a/translations/source/be/desktop/source/deployment/registry/sfwk.po
+++ b/translations/source/be/desktop/source/deployment/registry/sfwk.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: sfwk\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fsfwk.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/source/deployment/unopkg.po b/translations/source/be/desktop/source/deployment/unopkg.po
index 0613057f638..4b86aca6f20 100644
--- a/translations/source/be/desktop/source/deployment/unopkg.po
+++ b/translations/source/be/desktop/source/deployment/unopkg.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: unopkg\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Funopkg.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/desktop/win32/source/setup.po b/translations/source/be/desktop/win32/source/setup.po
deleted file mode 100644
index dac041802a8..00000000000
--- a/translations/source/be/desktop/win32/source/setup.po
+++ /dev/null
@@ -1,197 +0,0 @@
-#. extracted from desktop/win32/source/setup.oo
-msgid ""
-msgstr ""
-"Project-Id-Version: setup\n"
-"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fwin32%2Fsource%2Fsetup.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-10-20 23:32+0300\n"
-"Last-Translator: Yury Tarasievich\n"
-"Language-Team: <en@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
-"X-Accelerator-Marker: ~\n"
-
-#: setup.ulf#_APP_TITLE_.LngText.text
-msgid "Setup"
-msgstr "Устаноўка"
-
-#: setup.ulf#_APP_PROD_TITLE_.LngText.text
-msgid "The %PRODUCTNAME Setup"
-msgstr "Устаноўка %PRODUCTNAME"
-
-#: setup.ulf#_OUTOFMEM_.LngText.text
-msgid "Out of Memory"
-msgstr "Няма памяці"
-
-#: setup.ulf#_NOMSI_.LngText.text
-msgid "Setup was unable to find the msi package."
-msgstr "Не ўдалося знайсці пакет msi."
-
-#: setup.ulf#_USER_CANCELLED_.LngText.text
-msgid "Setup was cancelled"
-msgstr "Устаноўка была спынена"
-
-#: setup.ulf#_REQUIRES_ADMIN_PRIV_.LngText.text
-msgid "Administrator privileges are required for upgrading the Windows Installer."
-msgstr "Дзеля абнаўлення Windows Installer патрабуюцца сістэмныя правы Адміністратара."
-
-#: setup.ulf#_FILE_NOT_FOUND_.LngText.text
-msgid "Setup was unable to find the file '%s'."
-msgstr "Не ўдалося знайсці файл '%s'."
-
-#: setup.ulf#_INVALID_PARAM_.LngText.text
-msgid "Invalid command line option '%s'. Please use '/?' for help."
-msgstr "Недапушчальны аргумент '%s' у камандным радку. Ужывайце '/?' каб атрымаць даведку."
-
-#: setup.ulf#_SETUP_TO_OLD_.LngText.text
-msgid ""
-"This package requires at least the version '%s' of the Windows Installer. \n"
-"You have Windows Installer '%s' on your system!"
-msgstr ""
-"Гэты пакет патрабуе версію Windows Installer '%s' або навейшую. \n"
-"У вас устаноўленая версія Windows Installer '%s'."
-
-#: setup.ulf#_SETUP_NOT_FOUND_.LngText.text
-msgid ""
-"This package requires the Windows Installer. \n"
-"You need at least Windows Installer '%s' on your system!"
-msgstr ""
-"Гэты пакет патрабуе наяўнасці Windows Installer. \n"
-"Патрэбная версія Windows Installer '%s' або навейшая."
-
-#: setup.ulf#_USAGE_.LngText.text
-msgid ""
-"Usage:\n"
-" /? : Shows this dialog.\n"
-" /a : Performs an administrative installation.\n"
-" /j[u|m] : Performs an advertising installation.\n"
-" /q[n] : Do not show any user interface (silent mode).\n"
-msgstr ""
-"Карыстанне:\n"
-" /? : Паказвае гэты дыялог.\n"
-" /a : Устанаўляе ў адміністрацыйным рэжыме.\n"
-" /j[u|m] : Устанаўляе ў рэкламным рэжыме.\n"
-" /q[n] : Без інтэрфейса карыстальніка (маўклівы рэжым).\n"
-
-#: setup.ulf#_ALREADY_RUNNING_.LngText.text
-msgid "There is already a setup process running."
-msgstr "У сістэме ўжо працуе асобнік праграмы ўстаноўкі."
-
-#: setup.ulf#_UNKNOWN_ERROR_.LngText.text
-msgid "An Unknown Error occurred!"
-msgstr "Неакрэсленая памылка!"
-
-#: setup.ulf#_INVALID_PROFILE_.LngText.text
-msgid "Invalid or incomplete profile."
-msgstr "Недапушчальны або няпоўны профіль*."
-
-#: setup.ulf#_UNKNOWN_LANG_.LngText.text
-msgid "Unknown Language: %d"
-msgstr "Невядомая мова: %d"
-
-#: setup.ulf#_LANGUAGE_ZH_TW_.LngText.text
-msgid "Chinese (traditional)"
-msgstr "Кітайская (традыцыйная)"
-
-#: setup.ulf#_LANGUAGE_CS_.LngText.text
-msgid "Czech"
-msgstr "Чэшская"
-
-#: setup.ulf#_LANGUAGE_DA_.LngText.text
-msgid "Danish"
-msgstr "Дацкая"
-
-#: setup.ulf#_LANGUAGE_DE_DE_.LngText.text
-msgid "German (Germany)"
-msgstr "Нямецкая (Германія)"
-
-#: setup.ulf#_LANGUAGE_EL_.LngText.text
-msgid "Greek"
-msgstr "Грэчаская"
-
-#: setup.ulf#_LANGUAGE_EN_US_.LngText.text
-msgid "English (USA)"
-msgstr "Англійская (ЗША)"
-
-#: setup.ulf#_LANGUAGE_ES_.LngText.text
-msgid "Spanish (Spain)"
-msgstr "Іспанская (Іспанія)"
-
-#: setup.ulf#_LANGUAGE_FI_.LngText.text
-msgid "Finnish"
-msgstr "Фінская"
-
-#: setup.ulf#_LANGUAGE_FR_FR_.LngText.text
-msgid "French (France)"
-msgstr "Французская (Францыя)"
-
-#: setup.ulf#_LANGUAGE_HE_.LngText.text
-msgid "Hebrew"
-msgstr "Яўрэйская"
-
-#: setup.ulf#_LANGUAGE_HU_.LngText.text
-msgid "Hungarian"
-msgstr "Вянгерская"
-
-#: setup.ulf#_LANGUAGE_IT_IT_.LngText.text
-msgid "Italian (Italy)"
-msgstr "Італьянская (Італія)"
-
-#: setup.ulf#_LANGUAGE_JA_.LngText.text
-msgid "Japanese"
-msgstr "Японская"
-
-#: setup.ulf#_LANGUAGE_KO_.LngText.text
-msgid "Korean"
-msgstr "Карэйская"
-
-#: setup.ulf#_LANGUAGE_NL_NL_.LngText.text
-msgid "Dutch (Netherlands)"
-msgstr "Галандская (Нідэрланды)"
-
-#: setup.ulf#_LANGUAGE_NO_NO_.LngText.text
-msgid "Norwegian (Bokmål)"
-msgstr "Нарвежская (Букмал)"
-
-#: setup.ulf#_LANGUAGE_PL_.LngText.text
-msgid "Polish"
-msgstr "Польская"
-
-#: setup.ulf#_LANGUAGE_PT_BR_.LngText.text
-msgid "Portuguese (Brazil)"
-msgstr "Партугальская (Бразілія)"
-
-#: setup.ulf#_LANGUAGE_RU_.LngText.text
-msgid "Russian"
-msgstr "Руская"
-
-#: setup.ulf#_LANGUAGE_SK_.LngText.text
-msgid "Slovakian"
-msgstr "Славацкая"
-
-#: setup.ulf#_LANGUAGE_SV_SE_.LngText.text
-msgid "Swedish (Sweden)"
-msgstr "Шведская (Швецыя)"
-
-#: setup.ulf#_LANGUAGE_TH_.LngText.text
-msgid "Thai"
-msgstr "Тайская"
-
-#: setup.ulf#_LANGUAGE_TR_.LngText.text
-msgid "Turkish"
-msgstr "Турэцкая"
-
-#: setup.ulf#_LANGUAGE_ET_.LngText.text
-msgid "Estonian"
-msgstr "Эстонская"
-
-#: setup.ulf#_LANGUAGE_ZH_CN_.LngText.text
-msgid "Chinese (Simplified)"
-msgstr "Кітайская (спрошчаная)"
-
-#: setup.ulf#_LANGUAGE_PT_PT_.LngText.text
-msgid "Portuguese (Portugal)"
-msgstr "Партугальская (Партугалія)"
diff --git a/translations/source/be/dictionaries/af_ZA.po b/translations/source/be/dictionaries/af_ZA.po
index 02161be07b9..68a3ea8d87d 100644
--- a/translations/source/be/dictionaries/af_ZA.po
+++ b/translations/source/be/dictionaries/af_ZA.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: af_ZA\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Faf_ZA.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 12:57+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/an_ES.po b/translations/source/be/dictionaries/an_ES.po
index 81d29b1b46e..3629afba031 100644
--- a/translations/source/be/dictionaries/an_ES.po
+++ b/translations/source/be/dictionaries/an_ES.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: an_ES\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fan_ES.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-12-22 22:23+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/ar.po b/translations/source/be/dictionaries/ar.po
index f764f4fe895..5345b18eb1d 100644
--- a/translations/source/be/dictionaries/ar.po
+++ b/translations/source/be/dictionaries/ar.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: ar\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Far.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-04 20:27+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/be_BY.po b/translations/source/be/dictionaries/be_BY.po
index 277454c0121..d52657ba83b 100644
--- a/translations/source/be/dictionaries/be_BY.po
+++ b/translations/source/be/dictionaries/be_BY.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: be_BY\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbe_BY.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-26 11:51+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/bg_BG.po b/translations/source/be/dictionaries/bg_BG.po
index fab90fadb3e..36a6bfad278 100644
--- a/translations/source/be/dictionaries/bg_BG.po
+++ b/translations/source/be/dictionaries/bg_BG.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: bg_BG\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbg_BG.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-08 12:58+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/bn_BD.po b/translations/source/be/dictionaries/bn_BD.po
index 3daa15068ae..4f0b1d1c90d 100644
--- a/translations/source/be/dictionaries/bn_BD.po
+++ b/translations/source/be/dictionaries/bn_BD.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: bn_BD\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbn_BD.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 12:58+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/br_FR.po b/translations/source/be/dictionaries/br_FR.po
index 0b930d93ead..6a0e047abae 100644
--- a/translations/source/be/dictionaries/br_FR.po
+++ b/translations/source/be/dictionaries/br_FR.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: br_FR\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbr_FR.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 12:58+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/ca.po b/translations/source/be/dictionaries/ca.po
index 4e317e60908..de12475b57a 100644
--- a/translations/source/be/dictionaries/ca.po
+++ b/translations/source/be/dictionaries/ca.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: ca\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fca.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-08 12:58+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/cs_CZ.po b/translations/source/be/dictionaries/cs_CZ.po
index 5f813db19b2..9c189cb3989 100644
--- a/translations/source/be/dictionaries/cs_CZ.po
+++ b/translations/source/be/dictionaries/cs_CZ.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: cs_CZ\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fcs_CZ.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 12:59+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/da_DK.po b/translations/source/be/dictionaries/da_DK.po
index 9fb0503a501..e915e1b82dd 100644
--- a/translations/source/be/dictionaries/da_DK.po
+++ b/translations/source/be/dictionaries/da_DK.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: da_DK\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fda_DK.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 12:59+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/de.po b/translations/source/be/dictionaries/de.po
index a6af9bc8295..06d51e9ca59 100644
--- a/translations/source/be/dictionaries/de.po
+++ b/translations/source/be/dictionaries/de.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fde.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-11-08 12:59+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 09:30+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -16,4 +15,4 @@ msgstr ""
#: description.xml#dispname.dispname.description.text
msgid "German (Austria, Germany, Switzerland) spelling dictionaries, hyphenation rules, and thesaurus"
-msgstr ""
+msgstr "Нямецкія (Аўстрыя, Германія, Швейцарыя) правапісныя слоўнікі, правілы пераносаў і тэзаўрус"
diff --git a/translations/source/be/dictionaries/el_GR.po b/translations/source/be/dictionaries/el_GR.po
index 63bf7509f3a..8ca33df59a9 100644
--- a/translations/source/be/dictionaries/el_GR.po
+++ b/translations/source/be/dictionaries/el_GR.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: el_GR\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fel_GR.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-26 11:51+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/en.po b/translations/source/be/dictionaries/en.po
index ab941d9984a..05deb3e5b0e 100644
--- a/translations/source/be/dictionaries/en.po
+++ b/translations/source/be/dictionaries/en.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: en\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fen.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-12-22 22:24+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/en/dialog.po b/translations/source/be/dictionaries/en/dialog.po
index 982b41bd4ff..5d9e58e3ed3 100644
--- a/translations/source/be/dictionaries/en/dialog.po
+++ b/translations/source/be/dictionaries/en/dialog.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fen%2Fdialog.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-12-22 22:30+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -136,7 +135,7 @@ msgstr ""
#: en_en_US.properties#others.property.text
msgid "Others"
-msgstr "Іншыя"
+msgstr ""
#: en_en_US.properties#hlp_metric.property.text
msgid "Measurement conversion from °F, mph, ft, in, lb, gal and miles."
diff --git a/translations/source/be/dictionaries/es_ES.po b/translations/source/be/dictionaries/es_ES.po
index a347b7b6e36..4d085668390 100644
--- a/translations/source/be/dictionaries/es_ES.po
+++ b/translations/source/be/dictionaries/es_ES.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: es_ES\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fes_ES.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 12:59+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/et_EE.po b/translations/source/be/dictionaries/et_EE.po
index 22917340286..86a0bc0ec08 100644
--- a/translations/source/be/dictionaries/et_EE.po
+++ b/translations/source/be/dictionaries/et_EE.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: et_EE\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fet_EE.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:00+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/fr_FR.po b/translations/source/be/dictionaries/fr_FR.po
index 8bc42a399e9..27250c87387 100644
--- a/translations/source/be/dictionaries/fr_FR.po
+++ b/translations/source/be/dictionaries/fr_FR.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: fr_FR\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Ffr_FR.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-08 13:00+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/gd_GB.po b/translations/source/be/dictionaries/gd_GB.po
index 556f8a2cf87..2988399aa0f 100644
--- a/translations/source/be/dictionaries/gd_GB.po
+++ b/translations/source/be/dictionaries/gd_GB.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: gd_GB\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fgd_GB.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-26 11:51+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/gl.po b/translations/source/be/dictionaries/gl.po
index 626dfe8b412..a496dbb9baa 100644
--- a/translations/source/be/dictionaries/gl.po
+++ b/translations/source/be/dictionaries/gl.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: gl\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fgl.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-11-08 13:00+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/gu_IN.po b/translations/source/be/dictionaries/gu_IN.po
index 3c6ab066cad..c4919cc8f78 100644
--- a/translations/source/be/dictionaries/gu_IN.po
+++ b/translations/source/be/dictionaries/gu_IN.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: gu_IN\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fgu_IN.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:00+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/he_IL.po b/translations/source/be/dictionaries/he_IL.po
index d13582df7f0..dccf5f83341 100644
--- a/translations/source/be/dictionaries/he_IL.po
+++ b/translations/source/be/dictionaries/he_IL.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: he_IL\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhe_IL.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:00+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/hi_IN.po b/translations/source/be/dictionaries/hi_IN.po
index 44e5729c491..0c9b2d6c378 100644
--- a/translations/source/be/dictionaries/hi_IN.po
+++ b/translations/source/be/dictionaries/hi_IN.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: hi_IN\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhi_IN.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:00+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/hr_HR.po b/translations/source/be/dictionaries/hr_HR.po
index 75de4a2064e..d13d8a46f51 100644
--- a/translations/source/be/dictionaries/hr_HR.po
+++ b/translations/source/be/dictionaries/hr_HR.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: hr_HR\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhr_HR.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:00+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/hu_HU.po b/translations/source/be/dictionaries/hu_HU.po
index f281389e6ed..76cfe452f04 100644
--- a/translations/source/be/dictionaries/hu_HU.po
+++ b/translations/source/be/dictionaries/hu_HU.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: hu_HU\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhu_HU.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-12-22 22:24+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/hu_HU/dialog.po b/translations/source/be/dictionaries/hu_HU/dialog.po
index be5023bb86b..123c93b5361 100644
--- a/translations/source/be/dictionaries/hu_HU/dialog.po
+++ b/translations/source/be/dictionaries/hu_HU/dialog.po
@@ -3,28 +3,29 @@ msgid ""
msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhu_HU%2Fdialog.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-12-22 22:28+0200\n"
-"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
-"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-01-25 17:44+0200\n"
+"Last-Translator: Yury Tarasievich\n"
+"Language-Team: Belarusian <kde-i18n-doc@kde.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: hu_HU_en_US.properties#spelling.property.text
msgid "Spelling"
-msgstr "Spelling"
+msgstr "Правапіс"
#: hu_HU_en_US.properties#cap.property.text
msgid "Capitalization"
-msgstr ""
+msgstr "Загалоўныя літары"
#: hu_HU_en_US.properties#par.property.text
msgid "Parentheses"
-msgstr "Дужкі"
+msgstr ""
#: hu_HU_en_US.properties#wordpart.property.text
msgid "Word parts of compounds"
@@ -32,11 +33,11 @@ msgstr ""
#: hu_HU_en_US.properties#comma.property.text
msgid "Comma usage"
-msgstr "Ужыванне коскі"
+msgstr ""
#: hu_HU_en_US.properties#proofreading.property.text
msgid "Proofreading"
-msgstr "Вычытка*"
+msgstr ""
#: hu_HU_en_US.properties#style.property.text
msgid "Style checking"
@@ -52,7 +53,7 @@ msgstr ""
#: hu_HU_en_US.properties#grammar.property.text
msgid "Possible mistakes"
-msgstr "Магчымыя памылкі"
+msgstr ""
#: hu_HU_en_US.properties#money.property.text
msgid "Consistency of money amounts"
@@ -114,7 +115,7 @@ msgstr ""
#: hu_HU_en_US.properties#frac.property.text
msgid "Fractions"
-msgstr "Дробы"
+msgstr ""
#: hu_HU_en_US.properties#thin.property.text
msgid "Thin space"
@@ -150,4 +151,4 @@ msgstr "Слоўнікі"
#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.hu_HU.Label.value.text
msgid "Hungarian sentence checking"
-msgstr ""
+msgstr "Праверка сказаў венгерскай мовы"
diff --git a/translations/source/be/dictionaries/it_IT.po b/translations/source/be/dictionaries/it_IT.po
index 15219c3ab09..1da8d81fa42 100644
--- a/translations/source/be/dictionaries/it_IT.po
+++ b/translations/source/be/dictionaries/it_IT.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: it_IT\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fit_IT.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:01+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/ku_TR.po b/translations/source/be/dictionaries/ku_TR.po
index 7511f8a7ee9..9b692a6529e 100644
--- a/translations/source/be/dictionaries/ku_TR.po
+++ b/translations/source/be/dictionaries/ku_TR.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: ku_TR\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fku_TR.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:01+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/lt_LT.po b/translations/source/be/dictionaries/lt_LT.po
index b08e764ed69..8fde1b00e6f 100644
--- a/translations/source/be/dictionaries/lt_LT.po
+++ b/translations/source/be/dictionaries/lt_LT.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: lt_LT\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Flt_LT.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:01+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/lv_LV.po b/translations/source/be/dictionaries/lv_LV.po
index 9357a91c29b..524f4659f53 100644
--- a/translations/source/be/dictionaries/lv_LV.po
+++ b/translations/source/be/dictionaries/lv_LV.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: lv_LV\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Flv_LV.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-08 13:02+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/ne_NP.po b/translations/source/be/dictionaries/ne_NP.po
index 0d7cc1123df..15bf5b36ca7 100644
--- a/translations/source/be/dictionaries/ne_NP.po
+++ b/translations/source/be/dictionaries/ne_NP.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: ne_NP\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fne_NP.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:02+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/nl_NL.po b/translations/source/be/dictionaries/nl_NL.po
index 3fa3e8d8ff1..7a7e128b22f 100644
--- a/translations/source/be/dictionaries/nl_NL.po
+++ b/translations/source/be/dictionaries/nl_NL.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: nl_NL\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fnl_NL.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:02+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/no.po b/translations/source/be/dictionaries/no.po
index e9ff5e62056..8d21f7e9592 100644
--- a/translations/source/be/dictionaries/no.po
+++ b/translations/source/be/dictionaries/no.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: no\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fno.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:03+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/oc_FR.po b/translations/source/be/dictionaries/oc_FR.po
index 62d02215609..8b372a0b4d1 100644
--- a/translations/source/be/dictionaries/oc_FR.po
+++ b/translations/source/be/dictionaries/oc_FR.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: oc_FR\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Foc_FR.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:03+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/pl_PL.po b/translations/source/be/dictionaries/pl_PL.po
index 397fc07c755..801df480ed6 100644
--- a/translations/source/be/dictionaries/pl_PL.po
+++ b/translations/source/be/dictionaries/pl_PL.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: pl_PL\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fpl_PL.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-08 13:03+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/pt_BR.po b/translations/source/be/dictionaries/pt_BR.po
index b08bf6f55f0..25b63ed1466 100644
--- a/translations/source/be/dictionaries/pt_BR.po
+++ b/translations/source/be/dictionaries/pt_BR.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: pt_BR\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fpt_BR.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:04+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/pt_PT.po b/translations/source/be/dictionaries/pt_PT.po
index be8682e9319..848a0372a6b 100644
--- a/translations/source/be/dictionaries/pt_PT.po
+++ b/translations/source/be/dictionaries/pt_PT.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: pt_PT\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fpt_PT.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-08 13:04+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/ro.po b/translations/source/be/dictionaries/ro.po
index 079f54f86a1..37214d7e54a 100644
--- a/translations/source/be/dictionaries/ro.po
+++ b/translations/source/be/dictionaries/ro.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: ro\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fro.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:04+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/ru_RU.po b/translations/source/be/dictionaries/ru_RU.po
index 12adb5cac57..b025ada32ad 100644
--- a/translations/source/be/dictionaries/ru_RU.po
+++ b/translations/source/be/dictionaries/ru_RU.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: ru_RU\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fru_RU.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-12-22 22:25+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/ru_RU/dialog.po b/translations/source/be/dictionaries/ru_RU/dialog.po
index 472d279646c..3c14ea153fb 100644
--- a/translations/source/be/dictionaries/ru_RU/dialog.po
+++ b/translations/source/be/dictionaries/ru_RU/dialog.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fru_RU%2Fdialog.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-12-22 22:28+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/si_LK.po b/translations/source/be/dictionaries/si_LK.po
index e9afecac355..b2db14d5659 100644
--- a/translations/source/be/dictionaries/si_LK.po
+++ b/translations/source/be/dictionaries/si_LK.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: si_LK\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsi_LK.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-12-22 22:25+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/sk_SK.po b/translations/source/be/dictionaries/sk_SK.po
index 62ada335b1d..4d4edb0b806 100644
--- a/translations/source/be/dictionaries/sk_SK.po
+++ b/translations/source/be/dictionaries/sk_SK.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: sk_SK\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsk_SK.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:05+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/sl_SI.po b/translations/source/be/dictionaries/sl_SI.po
index 4d9ee8ec7b8..75059822f43 100644
--- a/translations/source/be/dictionaries/sl_SI.po
+++ b/translations/source/be/dictionaries/sl_SI.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: sl_SI\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsl_SI.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:05+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/sr.po b/translations/source/be/dictionaries/sr.po
index 5fb7ca8ebe6..53e1ae589cf 100644
--- a/translations/source/be/dictionaries/sr.po
+++ b/translations/source/be/dictionaries/sr.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: sr\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsr.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:05+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/sv_SE.po b/translations/source/be/dictionaries/sv_SE.po
index 38872474db3..4f7348308a9 100644
--- a/translations/source/be/dictionaries/sv_SE.po
+++ b/translations/source/be/dictionaries/sv_SE.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: sv_SE\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsv_SE.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-08 13:05+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/sw_TZ.po b/translations/source/be/dictionaries/sw_TZ.po
index 979c33e913f..f2afd253cc7 100644
--- a/translations/source/be/dictionaries/sw_TZ.po
+++ b/translations/source/be/dictionaries/sw_TZ.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: sw_TZ\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsw_TZ.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:06+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/te_IN.po b/translations/source/be/dictionaries/te_IN.po
index 9e901426ace..56bff4054e6 100644
--- a/translations/source/be/dictionaries/te_IN.po
+++ b/translations/source/be/dictionaries/te_IN.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: te_IN\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fte_IN.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-26 11:51+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/th_TH.po b/translations/source/be/dictionaries/th_TH.po
index 056c8180882..27c71dcd0ad 100644
--- a/translations/source/be/dictionaries/th_TH.po
+++ b/translations/source/be/dictionaries/th_TH.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: th_TH\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fth_TH.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:06+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/uk_UA.po b/translations/source/be/dictionaries/uk_UA.po
index ad34f138f92..e68cacd943a 100644
--- a/translations/source/be/dictionaries/uk_UA.po
+++ b/translations/source/be/dictionaries/uk_UA.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: uk_UA\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fuk_UA.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-08 13:06+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/vi.po b/translations/source/be/dictionaries/vi.po
index d68ec792707..0f46b9623c6 100644
--- a/translations/source/be/dictionaries/vi.po
+++ b/translations/source/be/dictionaries/vi.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: vi\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fvi.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-11-08 13:06+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/dictionaries/zu_ZA.po b/translations/source/be/dictionaries/zu_ZA.po
index 4dbc2f353b5..cbb90fd26aa 100644
--- a/translations/source/be/dictionaries/zu_ZA.po
+++ b/translations/source/be/dictionaries/zu_ZA.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: zu_ZA\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fzu_ZA.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:06+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/editeng/source/accessibility.po b/translations/source/be/editeng/source/accessibility.po
index 81d46f54d9f..ac4c05c1666 100644
--- a/translations/source/be/editeng/source/accessibility.po
+++ b/translations/source/be/editeng/source/accessibility.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: accessibility\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Faccessibility.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/editeng/source/editeng.po b/translations/source/be/editeng/source/editeng.po
index 97053ea5f63..cd393a4c751 100644
--- a/translations/source/be/editeng/source/editeng.po
+++ b/translations/source/be/editeng/source/editeng.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: editeng\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Fediteng.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-04 09:30+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -56,13 +55,11 @@ msgid "~Spellcheck..."
msgstr "~Spellcheck..."
#: editeng.src#RID_MENU_SPELL.MN_INSERT.menuitem.text
-#, fuzzy
msgctxt "editeng.src#RID_MENU_SPELL.MN_INSERT.menuitem.text"
msgid "~Add"
msgstr "Дадаць"
#: editeng.src#RID_MENU_SPELL.MN_INSERT_SINGLE.menuitem.text
-#, fuzzy
msgctxt "editeng.src#RID_MENU_SPELL.MN_INSERT_SINGLE.menuitem.text"
msgid "~Add"
msgstr "Дадаць"
diff --git a/translations/source/be/editeng/source/items.po b/translations/source/be/editeng/source/items.po
index 0a4960e3039..598824d7809 100644
--- a/translations/source/be/editeng/source/items.po
+++ b/translations/source/be/editeng/source/items.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: items\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Fitems.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2012-01-25 13:36+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/editeng/source/misc.po b/translations/source/be/editeng/source/misc.po
index a60cc9fd1d2..59d10999b59 100644
--- a/translations/source/be/editeng/source/misc.po
+++ b/translations/source/be/editeng/source/misc.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Fmisc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/editeng/source/outliner.po b/translations/source/be/editeng/source/outliner.po
index 01deac7f727..0fa9a99d89b 100644
--- a/translations/source/be/editeng/source/outliner.po
+++ b/translations/source/be/editeng/source/outliner.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: outliner\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Foutliner.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/extensions/source/abpilot.po b/translations/source/be/extensions/source/abpilot.po
index 9b7295cd87d..830bb67f349 100644
--- a/translations/source/be/extensions/source/abpilot.po
+++ b/translations/source/be/extensions/source/abpilot.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: abpilot\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fabpilot.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-01-25 13:36+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/extensions/source/bibliography.po b/translations/source/be/extensions/source/bibliography.po
index a45e8af3b23..8beb98e13ce 100644
--- a/translations/source/be/extensions/source/bibliography.po
+++ b/translations/source/be/extensions/source/bibliography.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: bibliography\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fbibliography.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/extensions/source/dbpilots.po b/translations/source/be/extensions/source/dbpilots.po
index e68f321c73e..7ca143d04c7 100644
--- a/translations/source/be/extensions/source/dbpilots.po
+++ b/translations/source/be/extensions/source/dbpilots.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dbpilots\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fdbpilots.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/extensions/source/propctrlr.po b/translations/source/be/extensions/source/propctrlr.po
index f55bcf70c89..0a16e80741c 100644
--- a/translations/source/be/extensions/source/propctrlr.po
+++ b/translations/source/be/extensions/source/propctrlr.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: propctrlr\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fpropctrlr.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/extensions/source/scanner.po b/translations/source/be/extensions/source/scanner.po
index 40dc0046d04..6f6712258ad 100644
--- a/translations/source/be/extensions/source/scanner.po
+++ b/translations/source/be/extensions/source/scanner.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: scanner\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fscanner.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-04 20:23+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/extensions/source/update/check.po b/translations/source/be/extensions/source/update/check.po
index b24d2ec0261..d63a8908c06 100644
--- a/translations/source/be/extensions/source/update/check.po
+++ b/translations/source/be/extensions/source/update/check.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: check\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fupdate%2Fcheck.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-04 09:31+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -169,9 +168,8 @@ msgid "%PRODUCTNAME update available"
msgstr "Ёсць абнаўленне %PRODUCTNAME"
#: updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_AVAIL.string.text
-#, fuzzy
msgid "Click the icon to start the download."
-msgstr "Націснуць тут, каб пачаць атрыманне."
+msgstr "Клікнуць значок, каб пачаць атрыманне."
#: updatehdl.src#RID_UPDATE_BUBBLE_T_UPDATE_NO_DOWN.string.text
msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_T_UPDATE_NO_DOWN.string.text"
@@ -179,7 +177,6 @@ msgid "%PRODUCTNAME update available"
msgstr "Ёсць абнаўленне %PRODUCTNAME"
#: updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_NO_DOWN.string.text
-#, fuzzy
msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_NO_DOWN.string.text"
msgid "Click the icon for more information."
msgstr "Націснуць тут, каб прачытаць пра гэта больш."
@@ -202,7 +199,6 @@ msgid "Download of update paused"
msgstr "Атрыманне абнаўлення прыпынена"
#: updatehdl.src#RID_UPDATE_BUBBLE_DOWNLOAD_PAUSED.string.text
-#, fuzzy
msgid "Click the icon to resume."
msgstr "Націснуць тут, каб узнавіць."
@@ -211,7 +207,6 @@ msgid "Download of update stalled"
msgstr "Атрыманне абнаўлення затармазілася"
#: updatehdl.src#RID_UPDATE_BUBBLE_ERROR_DOWNLOADING.string.text
-#, fuzzy
msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_ERROR_DOWNLOADING.string.text"
msgid "Click the icon for more information."
msgstr "Націснуць тут, каб прачытаць пра гэта больш."
@@ -221,7 +216,6 @@ msgid "Download of update completed"
msgstr "Атрыманне абнаўлення завершана"
#: updatehdl.src#RID_UPDATE_BUBBLE_DOWNLOAD_AVAIL.string.text
-#, fuzzy
msgid "Click the icon to start the installation."
msgstr "Націснуць тут, каб пачаць устаноўку."
@@ -230,7 +224,6 @@ msgid "Updates for extensions available"
msgstr "Ёсць абнаўленні для прыставак"
#: updatehdl.src#RID_UPDATE_BUBBLE_EXT_UPD_AVAIL.string.text
-#, fuzzy
msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_EXT_UPD_AVAIL.string.text"
msgid "Click the icon for more information."
msgstr "Націснуць тут, каб прачытаць пра гэта больш."
diff --git a/translations/source/be/extensions/source/update/check/org/openoffice/Office.po b/translations/source/be/extensions/source/update/check/org/openoffice/Office.po
index d857f75089f..43831fe0b65 100644
--- a/translations/source/be/extensions/source/update/check/org/openoffice/Office.po
+++ b/translations/source/be/extensions/source/update/check/org/openoffice/Office.po
@@ -1,19 +1,18 @@
#. extracted from extensions/source/update/check/org/openoffice/Office.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: Office\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fupdate%2Fcheck%2Forg%2Fopenoffice%2FOffice.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:20+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: Addons.xcu#.Addons.AddonUI.OfficeHelp.UpdateCheckJob.Title.value.text
msgid "Check for ~Updates..."
-msgstr ""
+msgstr "Ці ёсць абнаўленні..."
diff --git a/translations/source/be/filter/source/config/fragments/filters.po b/translations/source/be/filter/source/config/fragments/filters.po
index a847dc29e02..bd4657e8369 100644
--- a/translations/source/be/filter/source/config/fragments/filters.po
+++ b/translations/source/be/filter/source/config/fragments/filters.po
@@ -3,21 +3,20 @@ msgid ""
msgstr ""
"Project-Id-Version: filters\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fconfig%2Ffragments%2Ffilters.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
-"Language-Team: <en@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:06+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: StarDraw_5_0_Vorlage__StarImpress__ui.xcu#StarDraw_5.0_Vorlage__StarImpress_.UIName.value.text
msgid "StarDraw 5.0 Template (Impress)"
-msgstr ""
+msgstr "Шаблон StarDraw 5.0 (Impress)"
#: calc_OOXML_ui.xcu#Calc_Office_Open_XML.UIName.value.text
msgid "Office Open XML Spreadsheet"
@@ -54,7 +53,7 @@ msgstr "Шаблон StarDraw 3.0"
#: Text__encoded___StarWriter_GlobalDocument__ui.xcu#Text__encoded___StarWriter/GlobalDocument_.UIName.value.text
msgid "Text Encoded (Master Document)"
-msgstr ""
+msgstr "Тэкст у знаказборы (майстар-дакумент)"
#: calc_MS_Excel_2007_Binary_ui.xcu#Calc_MS_Excel_2007_Binary.UIName.value.text
msgid "Microsoft Excel 2007 Binary"
@@ -81,9 +80,8 @@ msgid "ODF Drawing"
msgstr "ODF Drawing"
#: writer_web_StarOffice_XML_Writer_ui.xcu#writer_web_StarOffice_XML_Writer.UIName.value.text
-#, fuzzy
msgid "%productname% %formatversion% Text Document (Writer/Web)"
-msgstr "Шаблон тэкставага дакумента %productname% %formatversion%"
+msgstr "Шаблон тэкставага дакумента %productname% %formatversion% (Writer/Web)"
#: StarOffice_XML__Calc__ui.xcu#StarOffice_XML__Calc_.UIName.value.text
msgid "%productname% %formatversion% Spreadsheet"
@@ -140,7 +138,7 @@ msgstr "Прэзентацыя Microsoft PowerPoint 2007/2010 XML AutoPlay"
#: draw_html_Export_ui.xcu#draw_html_Export.UIName.value.text
msgid "HTML Document (Draw)"
-msgstr ""
+msgstr "Дакумент HTML (Draw)"
#: MS_Word_2007_XML_Template.xcu#MS_Word_2007_XML_Template.UIName.value.text
msgctxt "MS_Word_2007_XML_Template.xcu#MS_Word_2007_XML_Template.UIName.value.text"
@@ -165,7 +163,7 @@ msgstr "Шаблон StarCalc 4.0"
#: writerweb8_writer_ui.xcu#writerweb8_writer.UIName.value.text
msgid "%productname% Text (Writer/Web)"
-msgstr ""
+msgstr "Тэкст %productname% (Writer/Web)"
#: impress8_template_ui.xcu#impress8_template.UIName.value.text
msgid "ODF Presentation Template"
@@ -200,7 +198,7 @@ msgstr "Microsoft PowerPoint 2007/2010 XML"
#: HTML_MasterDoc_ui.xcu#HTML_MasterDoc.UIName.value.text
msgid "HTML Document (Master Document)"
-msgstr ""
+msgstr "Дакумент HTML (майстар-дакумент)"
#: StarWriter_4_0_GlobalDocument_ui.xcu#StarWriter_4.0/GlobalDocument.UIName.value.text
msgid "StarWriter 4.0 Master Document"
@@ -241,7 +239,7 @@ msgstr "Шаблон Microsoft Word 2007/2010 XML"
#: HTML__StarWriter__ui.xcu#HTML__StarWriter_.UIName.value.text
msgid "HTML Document (Writer)"
-msgstr ""
+msgstr "Дакумент HTML (Writer)"
#: MS_Excel_2003_XML_ui.xcu#MS_Excel_2003_XML.UIName.value.text
msgid "Microsoft Excel 2003 XML"
@@ -253,7 +251,7 @@ msgstr "Разліковы аркуш Unified Office Format"
#: StarDraw_3_0_Vorlage__StarImpress__ui.xcu#StarDraw_3.0_Vorlage__StarImpress_.UIName.value.text
msgid "StarDraw 3.0 Template (Impress)"
-msgstr ""
+msgstr "Шаблон StarDraw 3.0 (Impress)"
#: StarImpress_4_0_Vorlage_ui.xcu#StarImpress_4.0_Vorlage.UIName.value.text
msgid "StarImpress 4.0 Template"
@@ -286,11 +284,11 @@ msgstr "Office Open XML Presentation Template"
#: Text__StarWriter_Web__ui.xcu#Text__StarWriter/Web_.UIName.value.text
msgid "Text (Writer/Web)"
-msgstr ""
+msgstr "Тэкст (Writer/Web)"
#: calc_HTML_WebQuery_ui.xcu#calc_HTML_WebQuery.UIName.value.text
msgid "Web Page Query (Calc)"
-msgstr ""
+msgstr "Зварот да веб-старонкі (Calc)"
#: StarOffice_XML__Impress__ui.xcu#StarOffice_XML__Impress_.UIName.value.text
msgid "%productname% %formatversion% Presentation"
@@ -314,7 +312,7 @@ msgstr "Тэкст Unified Office Format"
#: Text__encoded___StarWriter_Web__ui.xcu#Text__encoded___StarWriter/Web_.UIName.value.text
msgid "Text Encoded (Writer/Web)"
-msgstr ""
+msgstr "Тэкст у знаказборы (Writer/Web)"
#: chart8_ui.xcu#chart8.UIName.value.text
msgid "ODF Chart"
@@ -337,9 +335,8 @@ msgid "%productname% %formatversion% Drawing"
msgstr "Выява %productname% %formatversion%"
#: impress_StarOffice_XML_Draw_ui.xcu#impress_StarOffice_XML_Draw.UIName.value.text
-#, fuzzy
msgid "%productname% %formatversion% Drawing (Impress)"
-msgstr "Шаблон выявы %productname% %formatversion%"
+msgstr "Шаблон рысунка %productname% %formatversion% (Impress)"
#: StarCalc_3_0_Vorlage_Template_ui.xcu#StarCalc_3.0_Vorlage/Template.UIName.value.text
msgid "StarCalc 3.0 Template"
@@ -363,7 +360,7 @@ msgstr "Прэзентацыя Unified Office Format"
#: impress_html_Export_ui.xcu#impress_html_Export.UIName.value.text
msgid "HTML Document (Impress)"
-msgstr ""
+msgstr "Дакумент HTML (Impress)"
#: StarImpress_5_0__packed__ui.xcu#StarImpress_5.0__packed_.UIName.value.text
msgid "StarImpress 5.0 Packed"
@@ -379,4 +376,4 @@ msgstr "Тэкст CSV"
#: HTML__StarCalc__ui.xcu#HTML__StarCalc_.UIName.value.text
msgid "HTML Document (Calc)"
-msgstr ""
+msgstr "Дакумент HTML (Calc)"
diff --git a/translations/source/be/filter/source/config/fragments/internalgraphicfilters.po b/translations/source/be/filter/source/config/fragments/internalgraphicfilters.po
index ed6c976cc8a..af88ef4fadb 100644
--- a/translations/source/be/filter/source/config/fragments/internalgraphicfilters.po
+++ b/translations/source/be/filter/source/config/fragments/internalgraphicfilters.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: internalgraphicfilters\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fconfig%2Ffragments%2Finternalgraphicfilters.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/filter/source/config/fragments/types.po b/translations/source/be/filter/source/config/fragments/types.po
index 2b515d73cd2..f089db34d46 100644
--- a/translations/source/be/filter/source/config/fragments/types.po
+++ b/translations/source/be/filter/source/config/fragments/types.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: types\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fconfig%2Ffragments%2Ftypes.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/filter/source/flash.po b/translations/source/be/filter/source/flash.po
index 11771e274cd..5d8ffad46bc 100644
--- a/translations/source/be/filter/source/flash.po
+++ b/translations/source/be/filter/source/flash.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: flash\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fflash.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/filter/source/graphicfilter/eps.po b/translations/source/be/filter/source/graphicfilter/eps.po
index 285a864ea7d..688d763c423 100644
--- a/translations/source/be/filter/source/graphicfilter/eps.po
+++ b/translations/source/be/filter/source/graphicfilter/eps.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: eps\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fgraphicfilter%2Feps.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/filter/source/pdf.po b/translations/source/be/filter/source/pdf.po
index fc004c487a0..d3e73978b78 100644
--- a/translations/source/be/filter/source/pdf.po
+++ b/translations/source/be/filter/source/pdf.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: pdf\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fpdf.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-11-14 13:11+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 09:32+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -74,15 +73,15 @@ msgstr "Агульнае"
#: impdialog.src#FL_WATERMARK.fixedline.text
msgid "Watermark"
-msgstr ""
+msgstr "Вадзяны знак"
#: impdialog.src#CB_WATERMARK.checkbox.text
msgid "Sign with Watermark"
-msgstr ""
+msgstr "Падпісаць вадзяным знакам"
#: impdialog.src#FT_WATERMARK.fixedtext.text
msgid "Watermark Text"
-msgstr ""
+msgstr "Тэкст вадзянога знака"
#: impdialog.src#FL_GENERAL.fixedline.text
msgctxt "impdialog.src#FL_GENERAL.fixedline.text"
@@ -130,9 +129,8 @@ msgid "Export ~notes pages"
msgstr "Экспартаваць старонкі заўваг"
#: impdialog.src#CB_EXPORTHIDDENSLIDES.checkbox.text
-#, fuzzy
msgid "Export ~hidden pages"
-msgstr "Экспартаваць старонкі заўваг"
+msgstr "Экспартаваць схаваныя старонкі"
#: impdialog.src#CB_EXPORTEMPTYPAGES.checkbox.text
msgid "Exp~ort automatically inserted blank pages"
diff --git a/translations/source/be/filter/source/t602.po b/translations/source/be/filter/source/t602.po
index 57bbf2973e2..e8228086b43 100644
--- a/translations/source/be/filter/source/t602.po
+++ b/translations/source/be/filter/source/t602.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: t602\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Ft602.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/filter/source/xsltdialog.po b/translations/source/be/filter/source/xsltdialog.po
index a707294fa68..02aab377061 100644
--- a/translations/source/be/filter/source/xsltdialog.po
+++ b/translations/source/be/filter/source/xsltdialog.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: xsltdialog\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fxsltdialog.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-04 09:32+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -275,11 +274,11 @@ msgstr "Ператваральнік XSLT"
#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.RB_XML_TRANSFORM_SERVICE_LIBXSLT.radiobutton.text
msgid "~Builtin (LibXSLT)"
-msgstr ""
+msgstr "Унутраны (LibXSLT)"
#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.RB_XML_TRANSFORM_SERVICE_SAXON_J.radiobutton.text
msgid "~Saxon/J"
-msgstr ""
+msgstr "~Saxon/J"
#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.tabpage.text
msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.tabpage.text"
diff --git a/translations/source/be/forms/source/resource.po b/translations/source/be/forms/source/resource.po
index b5801d531ee..25e591dfe0a 100644
--- a/translations/source/be/forms/source/resource.po
+++ b/translations/source/be/forms/source/resource.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: resource\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+forms%2Fsource%2Fresource.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-10-29 19:09+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/formula/source/core/resource.po b/translations/source/be/formula/source/core/resource.po
index 7ff45d5a182..e8a8943ba92 100644
--- a/translations/source/be/formula/source/core/resource.po
+++ b/translations/source/be/formula/source/core/resource.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: resource\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+formula%2Fsource%2Fcore%2Fresource.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-12-22 22:34+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 19:41+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IF.string.text
@@ -472,7 +471,7 @@ msgstr "DAYS360"
#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DATEDIF.string.text
msgid "DATEDIF"
-msgstr ""
+msgstr "DATEDIF"
#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MIN.string.text
msgid "MIN"
diff --git a/translations/source/be/formula/source/ui/dlg.po b/translations/source/be/formula/source/ui/dlg.po
index 11c7f0d8d1c..fff97f9b821 100644
--- a/translations/source/be/formula/source/ui/dlg.po
+++ b/translations/source/be/formula/source/ui/dlg.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dlg\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+formula%2Fsource%2Fui%2Fdlg.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/fpicker/source/office.po b/translations/source/be/fpicker/source/office.po
index 2776d8aa56c..865a6c6885d 100644
--- a/translations/source/be/fpicker/source/office.po
+++ b/translations/source/be/fpicker/source/office.po
@@ -3,22 +3,21 @@ msgid ""
msgstr ""
"Project-Id-Version: office\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+fpicker%2Fsource%2Foffice.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-05 09:24+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.text
msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.quickhelptext
msgid "Create New Directory"
@@ -27,7 +26,7 @@ msgstr "Стварыць новы каталог"
#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_UP.menubutton.text
msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_UP.menubutton.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_UP.menubutton.quickhelptext
msgid "Up One Level"
@@ -35,28 +34,28 @@ msgstr "Up One Level"
#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_CONNECT_TO_SERVER.pushbutton.text
msgid "..."
-msgstr ""
+msgstr "..."
#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_CONNECT_TO_SERVER.pushbutton.quickhelptext
msgid "Connect To Server"
-msgstr ""
+msgstr "Звязацца з серверам"
#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_ADD_PLACE.pushbutton.text
msgid "+"
-msgstr ""
+msgstr "+"
#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_ADD_PLACE.pushbutton.quickhelptext
msgid "Bookmark This Place"
-msgstr ""
+msgstr "Паставіць закладку"
#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_REMOVE_PLACE.pushbutton.text
msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_REMOVE_PLACE.pushbutton.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_REMOVE_PLACE.pushbutton.quickhelptext
msgid "Remove Selected Bookmark"
-msgstr ""
+msgstr "Сцерці азначаную закладку"
#: iodlg.src#DLG_FPICKER_EXPLORERFILE.FT_EXPLORERFILE_FILENAME.fixedtext.text
msgid "File ~name:"
@@ -127,7 +126,7 @@ msgstr "Прадвызначаны каталог"
#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PLACES_TITLE.string.text
msgid "Places"
-msgstr ""
+msgstr "Месцы"
#: iodlg.src#DLG_FPICKER_QUERYFOLDERNAME.FT_SVT_QUERYFOLDERNAME_DLG_NAME.fixedtext.text
msgid "Na~me"
@@ -151,7 +150,7 @@ msgstr ""
#: iodlg.src#STR_FILTERNAME_ALL.string.text
msgid "All files"
-msgstr ""
+msgstr "Усе файлы"
#: iodlg.src#STR_SVT_ALREADYEXISTOVERWRITE.string.text
msgid ""
@@ -180,75 +179,74 @@ msgid "All Formats"
msgstr "All Formats"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SERVERNAME.fixedtext.text
-#, fuzzy
msgid "Name"
msgstr "Назва"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SERVERTYPE.fixedtext.text
msgid "Type"
-msgstr ""
+msgstr "Тып"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_HOST.fixedtext.text
msgid "Host"
-msgstr ""
+msgstr "Адрас"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_PORT.fixedtext.text
msgid "Port"
-msgstr ""
+msgstr "Порт"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_PATH.fixedtext.text
msgctxt "PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_PATH.fixedtext.text"
msgid "Path"
-msgstr ""
+msgstr "Шлях"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.CB_ADDPLACE_DAVS.checkbox.text
msgid "Secured WebDAV (HTTPS)"
-msgstr ""
+msgstr "Бяспечны WebDAV (HTTPS)"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SHARE.fixedtext.text
msgid "Share"
-msgstr ""
+msgstr "Супольны рэсурс"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SMBPATH.fixedtext.text
msgctxt "PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SMBPATH.fixedtext.text"
msgid "Path"
-msgstr ""
+msgstr "Шлях"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_CMIS_BINDING.fixedtext.text
msgid "Binding URL"
-msgstr ""
+msgstr "URL прывязкі*"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_CMIS_REPOSITORY.fixedtext.text
msgid "Repository"
-msgstr ""
+msgstr "Рэпазіторый"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.1.stringlist.text
msgid "WebDAV"
-msgstr ""
+msgstr "WebDAV"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.2.stringlist.text
msgid "FTP"
-msgstr ""
+msgstr "FTP"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.3.stringlist.text
msgid "SSH"
-msgstr ""
+msgstr "SSH"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.4.stringlist.text
msgid "Windows Share"
-msgstr ""
+msgstr "Супольны рэсурс Windows"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.5.stringlist.text
msgid "CMIS (Atom Binding)"
-msgstr ""
+msgstr "CMIS (Atom Binding)"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_USERNAME.fixedtext.text
msgid "Login"
-msgstr ""
+msgstr "Логін (аказанне)"
#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.BT_ADDPLACE_DELETE.pushbutton.text
msgid "Delete"
-msgstr ""
+msgstr "Сцерці"
#: OfficeFilePicker.src#STR_SVT_FILEPICKER_AUTO_EXTENSION.string.text
msgctxt "OfficeFilePicker.src#STR_SVT_FILEPICKER_AUTO_EXTENSION.string.text"
diff --git a/translations/source/be/framework/source/classes.po b/translations/source/be/framework/source/classes.po
index f216d4426f7..a62919749cb 100644
--- a/translations/source/be/framework/source/classes.po
+++ b/translations/source/be/framework/source/classes.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: classes\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+framework%2Fsource%2Fclasses.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/framework/source/services.po b/translations/source/be/framework/source/services.po
index d74b59f50de..d4c6390dffb 100644
--- a/translations/source/be/framework/source/services.po
+++ b/translations/source/be/framework/source/services.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: services\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+framework%2Fsource%2Fservices.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po b/translations/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po
index b716534aadd..a84f25d1943 100644
--- a/translations/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/translations/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: msi_languages\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+instsetoo_native%2Finc_openoffice%2Fwindows%2Fmsi_languages.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-05 09:25+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: CustomAc.ulf#OOO_CUSTOMACTION_1.LngText.text
@@ -591,7 +590,7 @@ msgstr "База даных устаноўкі"
#: SIS.ulf#OOO_SIS_COMMENT.LngText.text
msgid "This installer database contains the logic and data required to install LibreOffice."
-msgstr ""
+msgstr "База даных інсталятара ўтрымлівае правілы і даныя, патрэбныя для ўстаноўкі LibreOffice."
#: SIS.ulf#OOO_SIS_KEYWORDS.LngText.text
msgid "Install,MSI"
@@ -805,24 +804,23 @@ msgstr "Том"
#: Property.ulf#OOO_ARPCONTACTTEMPLATE.LngText.text
msgid "LibreOffice Community"
-msgstr ""
+msgstr "Супольнасць LibreOffice"
#: Property.ulf#OOO_ARPHELPLINKTEMPLATE.LngText.text
msgid "http://www.libreoffice.org/get-help"
-msgstr ""
+msgstr "http://www.libreoffice.org/get-help"
#: Property.ulf#OOO_ARPHELPTELEPHONETEMPLATE.LngText.text
msgid "x-xxx-xxx-xxx"
msgstr "x-xxx-xxx-xxx"
#: Property.ulf#OOO_ARPURLINFOABOUTTEMPLATE.LngText.text
-#, fuzzy
msgid "http://www.documentfoundation.org"
msgstr "http://www.documentfoundation.org"
#: Property.ulf#OOO_ARPURLUPDATEINFOTEMPLATE.LngText.text
msgid "http://www.libreoffice.org/download"
-msgstr ""
+msgstr "http://www.libreoffice.org/download"
#: Property.ulf#OOO_STR_NEW_DISPLAY_NAME.LngText.text
msgid "~New"
@@ -1003,9 +1001,8 @@ msgid "Install this application for:"
msgstr "Устанавіць гэту праграму для:"
#: Control.ulf#OOO_CONTROL_40.LngText.text
-#, fuzzy
msgid "{&MSSansBold8}User Information"
-msgstr "{&MSSansBold8}Звесткі пра кліента"
+msgstr "{&MSSansBold8}Звесткі пра карыстальніка"
#: Control.ulf#OOO_CONTROL_41.LngText.text
msgid "{\\Tahoma8}{50}"
@@ -1137,9 +1134,8 @@ msgid "&Change..."
msgstr "Змяніць..."
#: Control.ulf#OOO_CONTROL_89.LngText.text
-#, fuzzy
msgid "Click Next to install to this folder, or click Change to install to a different folder."
-msgstr "Націсніце 'Наперад', каб устанавіць у гэтым каталогу, або 'Правіць', каб устанавіць у іншым каталогу."
+msgstr "Націсніце 'Наперад', каб паставіць у гэты каталог, або 'Правіць', каб паставіць у іншы каталог."
#: Control.ulf#OOO_CONTROL_90.LngText.text
msgid "{&MSSansBold8}Destination Folder"
@@ -1790,7 +1786,7 @@ msgstr "Прэзентацыі Microsoft Po&werPoint"
#: Control.ulf#OOO_CONTROL_273.LngText.text
msgid "Microsoft &Visio Documents"
-msgstr ""
+msgstr "Дакументы Microsoft &Visio"
#: Control.ulf#OOO_CONTROL_274.LngText.text
msgid "Set [DEFINEDPRODUCT] to be the default application for Microsoft Office file types."
@@ -1847,11 +1843,11 @@ msgstr "Калі вы толькі выпрабоўваеце [ProductName], т
#: Control.ulf#OOO_CONTROL_317.LngText.text
msgid "No languages have been selected for installation. Click OK, then select one or more languages for installation."
-msgstr ""
+msgstr "Не былі выбраны ніякія мовы. Націсніце ОК, каб выбраць адну ці некалькі моваў для інсталяцыі."
#: Control.ulf#OOO_CONTROL_318.LngText.text
msgid "No applications have been selected for installation. Click OK, then select one or more applications for installation."
-msgstr ""
+msgstr "Не былі выбраны ніякія праграмы. Націсніце ОК, каб выбраць адну ці болей праграм для інсталяцыі."
#: Control.ulf#OOO_CONTROL_319.LngText.text
msgid "Create a start link on desktop"
@@ -1859,11 +1855,11 @@ msgstr "Стварыць пускавую спасылку на Стале"
#: Control.ulf#OOO_CONTROL_320.LngText.text
msgid "Support assistive technology tools"
-msgstr ""
+msgstr "Падтрымка прылад дапаможных тэхналогій"
#: Control.ulf#OOO_CONTROL_321.LngText.text
msgid "Load [ProductName] during system start-up"
-msgstr ""
+msgstr "Частковы пуск [ProductName] у час пуску сістэмы"
#: ActionTe.ulf#OOO_ACTIONTEXT_1.LngText.text
msgid "Advertising application"
diff --git a/translations/source/be/mysqlc/source.po b/translations/source/be/mysqlc/source.po
index ca552ae23c5..e5520814fb7 100644
--- a/translations/source/be/mysqlc/source.po
+++ b/translations/source/be/mysqlc/source.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: source\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+mysqlc%2Fsource.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 11:11+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po b/translations/source/be/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po
index 183779368e1..2377770b87c 100644
--- a/translations/source/be/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po
+++ b/translations/source/be/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: DataAccess\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+mysqlc%2Fsource%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po b/translations/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
index 48570d1ea51..8ae2b8273f6 100644
--- a/translations/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
+++ b/translations/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+nlpsolver%2Fhelp%2Fen%2Fcom.sun.star.comp.Calc.NLPSolver.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -16,7 +15,7 @@ msgstr ""
#: Options.xhp#tit.help.text
msgid "Options"
-msgstr "Настаўленні"
+msgstr ""
#: Options.xhp#bm_id0503200917110375_scalc.help.text
msgid "<bookmark_value>Solver for Nonlinear Problems;Options</bookmark_value>"
diff --git a/translations/source/be/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po b/translations/source/be/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po
index caaf8ceb09b..7d73c5e8633 100644
--- a/translations/source/be/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po
+++ b/translations/source/be/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+nlpsolver%2Fsrc%2Fcom%2Fsun%2Fstar%2Fcomp%2FCalc%2FNLPSolver.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/nlpsolver/src/locale.po b/translations/source/be/nlpsolver/src/locale.po
index 26b9a6482b4..32e1f77558a 100644
--- a/translations/source/be/nlpsolver/src/locale.po
+++ b/translations/source/be/nlpsolver/src/locale.po
@@ -3,15 +3,13 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+nlpsolver%2Fsrc%2Flocale.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -109,15 +107,15 @@ msgstr ""
#: NLPSolverStatusDialog_en_US.properties#NLPSolverStatusDialog.Controls.btnStop.property.text
msgid "Stop"
-msgstr "Спыніць"
+msgstr ""
#: NLPSolverStatusDialog_en_US.properties#NLPSolverStatusDialog.Controls.btnOK.property.text
msgid "OK"
-msgstr "ОК"
+msgstr ""
#: NLPSolverStatusDialog_en_US.properties#NLPSolverStatusDialog.Controls.btnContinue.property.text
msgid "Continue"
-msgstr "Працягваць"
+msgstr ""
#: NLPSolverStatusDialog_en_US.properties#NLPSolverStatusDialog.Message.StopIteration.property.text
msgid "Maximum iterations reached."
@@ -148,34 +146,33 @@ msgid "Milliseconds"
msgstr ""
#: NLPSolverStatusDialog_en_US.properties#NLPSolverStatusDialog.Time.Second.property.text
-#, fuzzy
msgid "Second"
-msgstr "Секунды"
+msgstr ""
#: NLPSolverStatusDialog_en_US.properties#NLPSolverStatusDialog.Time.Seconds.property.text
msgid "Seconds"
-msgstr "Секунды"
+msgstr ""
#: NLPSolverStatusDialog_en_US.properties#NLPSolverStatusDialog.Time.Minute.property.text
msgid "Minute"
-msgstr "Minute"
+msgstr ""
#: NLPSolverStatusDialog_en_US.properties#NLPSolverStatusDialog.Time.Minutes.property.text
msgid "Minutes"
-msgstr "мінуты"
+msgstr ""
#: NLPSolverStatusDialog_en_US.properties#NLPSolverStatusDialog.Time.Hour.property.text
msgid "Hour"
-msgstr "Hour"
+msgstr ""
#: NLPSolverStatusDialog_en_US.properties#NLPSolverStatusDialog.Time.Hours.property.text
msgid "Hours"
-msgstr "Гадзіны"
+msgstr ""
#: NLPSolverStatusDialog_en_US.properties#NLPSolverStatusDialog.Time.Day.property.text
msgid "Day"
-msgstr "Дзень"
+msgstr ""
#: NLPSolverStatusDialog_en_US.properties#NLPSolverStatusDialog.Time.Days.property.text
msgid "Days"
-msgstr "Дні"
+msgstr ""
diff --git a/translations/source/be/officecfg/registry/data/org/openoffice/Office.po b/translations/source/be/officecfg/registry/data/org/openoffice/Office.po
index 0f8dd4932de..f39ffb7ffda 100644
--- a/translations/source/be/officecfg/registry/data/org/openoffice/Office.po
+++ b/translations/source/be/officecfg/registry/data/org/openoffice/Office.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: Office\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+officecfg%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po b/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
index 0bbb79ad854..9e07df94be1 100644
--- a/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+officecfg%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FUI.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-05 09:26+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: WriterReportWindowState.xcu#..WriterReportWindowState.UIElements.States.private_resource/toolbar/standardbar.UIName.value.text
@@ -8157,7 +8156,7 @@ msgstr "Стужка настаўленняў"
#: GenericCommands.xcu#..GenericCommands.UserInterface.Commands..uno_SendFeedback.Label.value.text
msgid "Send Feedback..."
-msgstr ""
+msgstr "Выслаць водгук..."
#: GenericCommands.xcu#..GenericCommands.UserInterface.Commands..uno_ShowLicense.Label.value.text
msgid "License Information..."
@@ -9424,9 +9423,8 @@ msgid "Mean ~Value Lines"
msgstr "Лініі сярэдніх значэнняў"
#: ChartCommands.xcu#..ChartCommands.UserInterface.Commands..uno_InsertMenuXErrorBars.Label.value.text
-#, fuzzy
msgid "X Error ~Bars..."
-msgstr "Y Error ~Bars..."
+msgstr "Слупкі памылак X..."
#: ChartCommands.xcu#..ChartCommands.UserInterface.Commands..uno_InsertMenuYErrorBars.Label.value.text
msgid "Y Error ~Bars..."
@@ -9688,19 +9686,16 @@ msgid "Format Mean Value Line..."
msgstr "Format Mean Value Line..."
#: ChartCommands.xcu#..ChartCommands.UserInterface.Commands..uno_InsertXErrorBars.Label.value.text
-#, fuzzy
msgid "Insert X Error ~Bars..."
-msgstr "Insert Y Error ~Bars..."
+msgstr "Уставіць слупкі памылак X..."
#: ChartCommands.xcu#..ChartCommands.UserInterface.Commands..uno_DeleteXErrorBars.Label.value.text
-#, fuzzy
msgid "Delete X Error ~Bars"
-msgstr "Delete Y Error ~Bars"
+msgstr "Сцерці слупкі памылак X"
#: ChartCommands.xcu#..ChartCommands.UserInterface.Commands..uno_FormatXErrorBars.Label.value.text
-#, fuzzy
msgid "Format X Error Bars..."
-msgstr "Format Y Error Bars..."
+msgstr "Аформіць слупкі памылак X..."
#: ChartCommands.xcu#..ChartCommands.UserInterface.Commands..uno_InsertYErrorBars.Label.value.text
msgid "Insert Y Error ~Bars..."
@@ -10235,15 +10230,17 @@ msgid "Select Row"
msgstr "Пазначыць радок"
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ConditionalFormatMenu.Label.value.text
-#, fuzzy
msgid "C~onditional Formatting"
-msgstr "Узгодненае фарматаванне..."
+msgstr "Узгодненае фарматаванне"
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ConditionalFormatDialog.Label.value.text
-#, fuzzy
msgid "Conditional Formatting..."
msgstr "Узгодненае фарматаванне..."
+#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ConditionalFormatManagerDialog.Label.value.text
+msgid "Manage..."
+msgstr "Арганізаваць..."
+
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_Deselect.Label.value.text
msgid "Undo Selection"
msgstr "Адкаціць пазначэнне"
@@ -11119,19 +11116,19 @@ msgstr "Даць дакумент у супольны доступ..."
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ToggleSheetGrid.Label.value.text
msgid "Toggle Grid Lines for Current Sheet"
-msgstr "Toggle Grid Lines for Current Sheet"
+msgstr "Паказ ліній клетак у актыўным аркушы"
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_InsertFieldSheet.Label.value.text
msgid "Insert Sheet Name Field"
-msgstr ""
+msgstr "Уставіць поле назвы ліста"
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_InsertFieldDocTitle.Label.value.text
msgid "Insert Document Title Field"
-msgstr ""
+msgstr "Уставіць поле назвы дакумента"
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_InsertFieldDateVariable.Label.value.text
msgid "Insert Date Field (variable)"
-msgstr ""
+msgstr "Уставіць поле даты (зменнае)"
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_OpenFromCalc.Label.value.text
msgctxt "CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_OpenFromCalc.Label.value.text"
diff --git a/translations/source/be/padmin/source.po b/translations/source/be/padmin/source.po
index d4503d1610b..81c276ceb42 100644
--- a/translations/source/be/padmin/source.po
+++ b/translations/source/be/padmin/source.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: source\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+padmin%2Fsource.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 09:30+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -24,7 +23,6 @@ msgid "Disable CUPS Support"
msgstr "Не пускаць падтрымку CUPS"
#: padialog.src#RID_PADIALOG.RID_PA_BTN_CANCEL.cancelbutton.text
-#, fuzzy
msgid "Close"
msgstr "Закрыць"
@@ -90,9 +88,8 @@ msgid "Could not open printer %s."
msgstr "Не ўдалося адкрыць прынтэр %s."
#: padialog.src#RID_PA_TXT_TESTPAGE_PRINTED.string.text
-#, fuzzy
msgid "The test page was printed successfully. Please check the result."
-msgstr "Тэставая старонка надрукавана паспяхова. Праверце вынікі друку."
+msgstr "Тэставая старонка надрукавана паспяхова. Праверце вынікі."
#: padialog.src#RID_ERR_NOWRITE.string.text
msgid ""
@@ -357,7 +354,6 @@ msgid "~These printers can be imported. Please select the ones you want to impor
msgstr "Можна імпартаваць наступныя прынтэры. Выберыце з іх тыя, якія патрэбны."
#: padialog.src#RID_ADDP_PAGE_OLDPRINTERS.RID_ADDP_OLD_BTN_SELECTALL.pushbutton.text
-#, fuzzy
msgid "~Select All"
msgstr "Пазначыць усё"
diff --git a/translations/source/be/readlicense_oo/docs/readme.po b/translations/source/be/readlicense_oo/docs/readme.po
index d4b0b6a93b7..74092af98d4 100644
--- a/translations/source/be/readlicense_oo/docs/readme.po
+++ b/translations/source/be/readlicense_oo/docs/readme.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: readme\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+readlicense_oo%2Fdocs%2Freadme.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-25 13:30+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-05 09:30+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: readme.xrm#Welcome.Welcome.readmeitem.text
@@ -248,20 +247,20 @@ msgstr "Right-click within the directory and choose \"Open in Terminal\". A term
#: readme.xrm#rpminstall5.rpminstall5.readmeitem.text
msgctxt "readme.xrm#rpminstall5.rpminstall5.readmeitem.text"
msgid "For Fedora-based systems: su -c 'yum install *.rpm'"
-msgstr "For Fedora-based systems: su -c 'yum install *.rpm'"
+msgstr "Для сістэм тыпу Fedora: su -c 'yum install *.rpm'"
#: readme.xrm#rpminstall6.rpminstall6.readmeitem.text
msgctxt "readme.xrm#rpminstall6.rpminstall6.readmeitem.text"
msgid "For Mandriva-based systems: sudo urpmi *.rpm"
-msgstr "For Mandriva-based systems: sudo urpmi *.rpm"
+msgstr "Для сістэм тыпу Mandriva: sudo urpmi *.rpm"
#: readme.xrm#rpminstall7.rpminstall7.readmeitem.text
msgid "For other RPM-based systems (Suse, etc.): rpm -Uvh *.rpm"
-msgstr "For other RPM-based systems (Suse, etc.): rpm -Uvh *.rpm"
+msgstr "Для рэшты сістэм з RPM (Suse і інш.): rpm -Uvh *.rpm"
#: readme.xrm#rpminstall8.rpminstall8.readmeitem.text
msgid "The above command does the first part of the installation process. To complete the process, you also need to install the desktop integration packages. To do this, change directory to the \"desktop-integration\" directory that is within the \"RPMS\" directory, using the following command:"
-msgstr "The above command does the first part of the installation process. To complete the process, you also need to install the desktop integration packages. To do this, change directory to the \"desktop-integration\" directory that is within the \"RPMS\" directory, using the following command:"
+msgstr "Каманда, паказаная вышэй, робіць першую частку ўстаноўкі. Каб завершыць устаноўку, трэба дадаткова паставіць пакункі інтэграцыі са \"сталом\". Дзеля гэтага адкрыйце каталог \"desktop-integration\", які ляжыць унутры каталога \"RPMS\", наступнай камандай:"
#: readme.xrm#rpminstall9.rpminstall9.readmeitem.text
msgctxt "readme.xrm#rpminstall9.rpminstall9.readmeitem.text"
@@ -270,23 +269,23 @@ msgstr "cd desktop-integration"
#: readme.xrm#rpminstallA.rpminstallA.readmeitem.text
msgid "Now run the installation command again:"
-msgstr "Now run the installation command again:"
+msgstr "Зараз пусціце інсталятар нанова:"
#: readme.xrm#rpminstallB.rpminstallB.readmeitem.text
msgid "For Fedora-based systems: su -c 'yum install *freedesktop*.rpm'"
-msgstr "For Fedora-based systems: su -c 'yum install *freedesktop*.rpm'"
+msgstr "Для сістэм тыпу Fedora: su -c 'yum install *redhat*.rpm'"
#: readme.xrm#rpminstallC.rpminstallC.readmeitem.text
msgid "For Mandriva-based systems: sudo urpmi *mandriva*.rpm"
-msgstr "For Mandriva-based systems: sudo urpmi *mandriva*.rpm"
+msgstr "Для сістэм тыпу Mandriva: sudo urpmi *mandriva*.rpm"
#: readme.xrm#rpminstallF.rpminstallF.readmeitem.text
msgid "For SUSE-based systems: rpm -Uvh *suse*.rpm"
-msgstr ""
+msgstr "Для сістэм тыпу SUSE: rpm -Uvh *suse*.rpm"
#: readme.xrm#rpminstallD.rpminstallD.readmeitem.text
msgid "For other RPM-based systems: rpm -Uvh *freedesktop*.rpm"
-msgstr ""
+msgstr "Для іншых сістэм з RPM: rpm -Uvh *freedesktop*.rpm"
#: readme.xrm#rpminstallE.rpminstallE.readmeitem.text
msgctxt "readme.xrm#rpminstallE.rpminstallE.readmeitem.text"
@@ -493,11 +492,11 @@ msgstr "News: announce@documentfoundation.org *recommended to all users* (light
#: readme.xrm#subscribelist2.subscribelist2.readmeitem.text
msgid "Main user list: users@global.libreoffice.org *easy way to lurk on discussions* (heavy traffic)"
-msgstr ""
+msgstr "Галоўная рассылка для карыстальнікаў: users@libreoffice.org *сачыць за абмеркаваннямі проста* (вялікі трафік)"
#: readme.xrm#subscribelist3.subscribelist3.readmeitem.text
msgid "Marketing project: marketing@global.libreoffice.org *beyond development* (getting heavy)"
-msgstr ""
+msgstr "Праект маркетынга: marketing@libreoffice.org *па-за распрацоўкай* (трафік пачынае рабіцца вялікім)"
#: readme.xrm#subscribelist4.subscribelist4.readmeitem.text
msgid "General developer list: libreoffice@lists.freedesktop.org (heavy traffic)"
diff --git a/translations/source/be/reportbuilder/java/com/sun/star/report/function/metadata.po b/translations/source/be/reportbuilder/java/com/sun/star/report/function/metadata.po
index 50b5f2fe3a8..a30d8a08694 100644
--- a/translations/source/be/reportbuilder/java/com/sun/star/report/function/metadata.po
+++ b/translations/source/be/reportbuilder/java/com/sun/star/report/function/metadata.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+reportbuilder%2Fjava%2Fcom%2Fsun%2Fstar%2Freport%2Ffunction%2Fmetadata.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/reportbuilder/registry/data/org/openoffice/Office.po b/translations/source/be/reportbuilder/registry/data/org/openoffice/Office.po
index 4a7a51c31a7..652916069b9 100644
--- a/translations/source/be/reportbuilder/registry/data/org/openoffice/Office.po
+++ b/translations/source/be/reportbuilder/registry/data/org/openoffice/Office.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: Office\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+reportbuilder%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/reportbuilder/registry/data/org/openoffice/Office/UI.po b/translations/source/be/reportbuilder/registry/data/org/openoffice/Office/UI.po
index c72666e4038..fe6d3f46ae2 100644
--- a/translations/source/be/reportbuilder/registry/data/org/openoffice/Office/UI.po
+++ b/translations/source/be/reportbuilder/registry/data/org/openoffice/Office/UI.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+reportbuilder%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FUI.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 11:15+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/reportbuilder/registry/data/org/openoffice/TypeDetection.po b/translations/source/be/reportbuilder/registry/data/org/openoffice/TypeDetection.po
index e63deca7921..597e603fcbd 100644
--- a/translations/source/be/reportbuilder/registry/data/org/openoffice/TypeDetection.po
+++ b/translations/source/be/reportbuilder/registry/data/org/openoffice/TypeDetection.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: TypeDetection\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+reportbuilder%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FTypeDetection.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-22 18:11+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/reportbuilder/util.po b/translations/source/be/reportbuilder/util.po
index a48f95cf6c1..4344853d60b 100644
--- a/translations/source/be/reportbuilder/util.po
+++ b/translations/source/be/reportbuilder/util.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: util\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+reportbuilder%2Futil.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-11-26 11:43+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/reportdesign/source/core/resource.po b/translations/source/be/reportdesign/source/core/resource.po
index 21d027a3fc5..59e064ee1d8 100644
--- a/translations/source/be/reportdesign/source/core/resource.po
+++ b/translations/source/be/reportdesign/source/core/resource.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: resource\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+reportdesign%2Fsource%2Fcore%2Fresource.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-22 18:02+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/reportdesign/source/ui/dlg.po b/translations/source/be/reportdesign/source/ui/dlg.po
index 7391eb7e8af..f7cb3113ee7 100644
--- a/translations/source/be/reportdesign/source/ui/dlg.po
+++ b/translations/source/be/reportdesign/source/ui/dlg.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dlg\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+reportdesign%2Fsource%2Fui%2Fdlg.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/reportdesign/source/ui/inspection.po b/translations/source/be/reportdesign/source/ui/inspection.po
index a835827a235..8b94404c460 100644
--- a/translations/source/be/reportdesign/source/ui/inspection.po
+++ b/translations/source/be/reportdesign/source/ui/inspection.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: inspection\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+reportdesign%2Fsource%2Fui%2Finspection.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/reportdesign/source/ui/report.po b/translations/source/be/reportdesign/source/ui/report.po
index bf0704bc106..d3cd77417d5 100644
--- a/translations/source/be/reportdesign/source/ui/report.po
+++ b/translations/source/be/reportdesign/source/ui/report.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: report\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+reportdesign%2Fsource%2Fui%2Freport.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sc/source/core/src.po b/translations/source/be/sc/source/core/src.po
index 4ef92b0a2bc..3366e0484e6 100644
--- a/translations/source/be/sc/source/core/src.po
+++ b/translations/source/be/sc/source/core/src.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fcore%2Fsrc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 12:06+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sc/source/ui/cctrl.po b/translations/source/be/sc/source/ui/cctrl.po
index fe0fdd9b620..fce26400e6e 100644
--- a/translations/source/be/sc/source/ui/cctrl.po
+++ b/translations/source/be/sc/source/ui/cctrl.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: cctrl\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fcctrl.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sc/source/ui/dbgui.po b/translations/source/be/sc/source/ui/dbgui.po
index 720dcf74738..3e37940510e 100644
--- a/translations/source/be/sc/source/ui/dbgui.po
+++ b/translations/source/be/sc/source/ui/dbgui.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: dbgui\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fdbgui.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-11-08 11:39+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:36+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: asciiopt.src#RID_SCDLG_ASCII.FL_FIELDOPT.fixedline.text
@@ -185,7 +184,7 @@ msgstr "Азначаны абсяг"
#: pivot.src#RID_SCDLG_PIVOT_LAYOUT.FT_INFO.fixedtext.text
msgid "Drag the fields into the desired position."
-msgstr ""
+msgstr "Перацягніце патрэбныя палі куды трэба."
#: pivot.src#RID_SCDLG_PIVOT_LAYOUT.FL_LAYOUT.fixedline.text
msgid "Layout"
@@ -756,7 +755,7 @@ msgstr "Запісаць змесціва клеткі як паказана"
#: imoptdlg.src#RID_SCDLG_IMPORTOPT.CB_FORMULAS.checkbox.text
msgid "Save cell fo~rmulas instead of calculated values"
-msgstr ""
+msgstr "Запісваць формулы клетак замест вылічаных значэнняў"
#: imoptdlg.src#RID_SCDLG_IMPORTOPT.CB_QUOTEALL.checkbox.text
msgid "~Quote all text cells"
diff --git a/translations/source/be/sc/source/ui/docshell.po b/translations/source/be/sc/source/ui/docshell.po
index e89f124ce61..687b971e7ec 100644
--- a/translations/source/be/sc/source/ui/docshell.po
+++ b/translations/source/be/sc/source/ui/docshell.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: docshell\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fdocshell.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sc/source/ui/drawfunc.po b/translations/source/be/sc/source/ui/drawfunc.po
index 190ff2c918d..e802b130d5f 100644
--- a/translations/source/be/sc/source/ui/drawfunc.po
+++ b/translations/source/be/sc/source/ui/drawfunc.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: drawfunc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fdrawfunc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sc/source/ui/formdlg.po b/translations/source/be/sc/source/ui/formdlg.po
index f47d87f241e..b96997dbd6b 100644
--- a/translations/source/be/sc/source/ui/formdlg.po
+++ b/translations/source/be/sc/source/ui/formdlg.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: formdlg\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fformdlg.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sc/source/ui/miscdlgs.po b/translations/source/be/sc/source/ui/miscdlgs.po
index cc76f0051f9..4b8fbfea93e 100644
--- a/translations/source/be/sc/source/ui/miscdlgs.po
+++ b/translations/source/be/sc/source/ui/miscdlgs.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: miscdlgs\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fmiscdlgs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-26 11:36+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sc/source/ui/navipi.po b/translations/source/be/sc/source/ui/navipi.po
index f0cbeab1687..8df7c29c217 100644
--- a/translations/source/be/sc/source/ui/navipi.po
+++ b/translations/source/be/sc/source/ui/navipi.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: navipi\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fnavipi.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-26 11:35+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sc/source/ui/optdlg.po b/translations/source/be/sc/source/ui/optdlg.po
index 8eb69a605f6..c0ec0f5d68c 100644
--- a/translations/source/be/sc/source/ui/optdlg.po
+++ b/translations/source/be/sc/source/ui/optdlg.po
@@ -1,35 +1,34 @@
#. extracted from sc/source/ui/optdlg.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: optdlg\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Foptdlg.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:35+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: calcoptionsdlg.src#RID_SCDLG_FORMULA_CALCOPTIONS.FT_OPTION_EDIT_CAPTION.fixedtext.text
msgid "Value"
-msgstr ""
+msgstr "Значэнне"
#: calcoptionsdlg.src#RID_SCDLG_FORMULA_CALCOPTIONS.STR_STRING_REF_SYNTAX_CAPTION.string.text
msgid "Reference syntax for string reference"
-msgstr ""
+msgstr "Узорны сінтаксіс для разбора радка"
#: calcoptionsdlg.src#RID_SCDLG_FORMULA_CALCOPTIONS.STR_STRING_REF_SYNTAX_DESC.string.text
msgid "Formula syntax to use when parsing references given in string parameters. This affects built-in functions such as INDIRECT that takes a reference as a string value."
-msgstr ""
+msgstr "Сінтаксіс формул, з дапамогай якога будуць разбірацца ўказанні, зададзеныя ў параметрах радка. Гэта ўплывае на працу ўбудаваных функцый, такіх, як INDIRECT, якая бярэ ўказанне на аргумент у выглядзе радка."
#: calcoptionsdlg.src#RID_SCDLG_FORMULA_CALCOPTIONS.STR_USE_FORMULA_SYNTAX.string.text
msgid "Use formula syntax"
-msgstr ""
+msgstr "Формульны сінтаксіс"
#: calcoptionsdlg.src#RID_SCDLG_FORMULA_CALCOPTIONS.modaldialog.text
msgid "Detailed Calculation Settings"
-msgstr ""
+msgstr "Падрабязныя настаўленні вылічэнняў*"
diff --git a/translations/source/be/sc/source/ui/pagedlg.po b/translations/source/be/sc/source/ui/pagedlg.po
index 17315775629..75b61e84c01 100644
--- a/translations/source/be/sc/source/ui/pagedlg.po
+++ b/translations/source/be/sc/source/ui/pagedlg.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: pagedlg\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fpagedlg.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sc/source/ui/src.po b/translations/source/be/sc/source/ui/src.po
index 4c901c45774..15de7275e69 100644
--- a/translations/source/be/sc/source/ui/src.po
+++ b/translations/source/be/sc/source/ui/src.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fsrc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-05 09:50+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: namedlg.src#RID_SCDLG_NAMES.BTN_ADD.pushbutton.text
@@ -226,7 +225,6 @@ msgid "0 corresponds to 01/01/1904"
msgstr "0 адпавядае 01.01.1904"
#: optdlg.src#RID_SCPAGE_CALC.GB_DATE.fixedline.text
-#, fuzzy
msgctxt "optdlg.src#RID_SCPAGE_CALC.GB_DATE.fixedline.text"
msgid "Date"
msgstr "Дата"
@@ -281,11 +279,11 @@ msgstr "Функцыя"
#: optdlg.src#RID_SCPAGE_FORMULA.FT_FORMULA_SEP_ARRAY_C.fixedtext.text
msgid "Array co~lumn"
-msgstr "Array co~lumn"
+msgstr "Калонка матрыцы"
#: optdlg.src#RID_SCPAGE_FORMULA.FT_FORMULA_SEP_ARRAY_R.fixedtext.text
msgid "Array ~row"
-msgstr "Array ~row"
+msgstr "Радок матрыцы"
#: optdlg.src#RID_SCPAGE_FORMULA.BTN_FORMULA_SEP_RESET.pushbutton.text
msgid "Rese~t"
@@ -302,11 +300,11 @@ msgstr "Прадвызначана"
#: optdlg.src#RID_SCPAGE_FORMULA.BTN_CUSTOM_CALC_CUSTOM.radiobutton.text
msgid "Custom"
-msgstr ""
+msgstr "Па-свойму"
#: optdlg.src#RID_SCPAGE_FORMULA.BTN_CUSTOM_CALC_DETAILS.pushbutton.text
msgid "Details..."
-msgstr ""
+msgstr "Падрабязна..."
#: optdlg.src#RID_SCPAGE_COMPATIBILITY.FL_KEY_BINDINGS.fixedline.text
msgid "Key bindings"
@@ -671,7 +669,7 @@ msgstr "Колькасць аркушоў у новым дакуменце"
#: optdlg.src#RID_SCPAGE_DEFAULTS.FT_SHEETPREFIX.fixedtext.text
msgid "Prefix name for new worksheet"
-msgstr ""
+msgstr "Прэфікс назвы новага аркуша"
#: scerrors.src#RID_ERRHDLSC.SCERR_IMPORT_CONNECT___ERRCODE_RES_MASK.string.text
msgid "Impossible to connect to the file."
@@ -778,7 +776,7 @@ msgstr ""
#: scerrors.src#RID_ERRHDLSC.SCWARN_IMPORT_CELL_OVERFLOW___ERRCODE_RES_MASK.string.text
msgid "The data could not be loaded completely because the maximum number of characters per cell was exceeded."
-msgstr ""
+msgstr "Не ўдалося цалкам прачытаць даныя, таму што была перавышана максімальная колькасць знакаў на клетку."
#: scerrors.src#RID_ERRHDLSC.SCWARN_IMPORT_OPEN_FM3___ERRCODE_RES_MASK.string.text
msgid "Corresponding FM3-File could not be opened."
@@ -805,12 +803,16 @@ msgid ""
"The document contains more columns than supported in the selected format.\n"
"Additional columns were not saved."
msgstr ""
+"Дакумент утрымлівае больш калонак, чым дапускаецца ў гэтым фармаце.\n"
+"Дадатковыя калонкі не былі запісаны."
#: scerrors.src#RID_ERRHDLSC.SCWARN_EXPORT_MAXTAB___ERRCODE_RES_MASK.string.text
msgid ""
"The document contains more sheets than supported in the selected format.\n"
"Additional sheets were not saved."
msgstr ""
+"Дакумент утрымлівае больш лістоў, чым дапускаецца ў гэтым фармаце.\n"
+"Дадатковыя лісты не былі запісаны."
#: scerrors.src#RID_ERRHDLSC.SCWARN_IMPORT_INFOLOST___ERRCODE_RES_MASK.string.text
msgid ""
@@ -962,23 +964,21 @@ msgstr "Сціснуць"
#: optsolver.src#RID_SCDLG_OPTSOLVER.FT_DIRECTION.fixedtext.text
msgid "Optimize result to"
-msgstr "Optimize result to"
+msgstr "Аптымізаваць згодна з"
#: optsolver.src#RID_SCDLG_OPTSOLVER.RB_MAX.radiobutton.text
-#, fuzzy
msgctxt "optsolver.src#RID_SCDLG_OPTSOLVER.RB_MAX.radiobutton.text"
msgid "Maximum"
-msgstr "Максімальнае"
+msgstr "Максімум"
#: optsolver.src#RID_SCDLG_OPTSOLVER.RB_MIN.radiobutton.text
-#, fuzzy
msgctxt "optsolver.src#RID_SCDLG_OPTSOLVER.RB_MIN.radiobutton.text"
msgid "Minimum"
-msgstr "Мінімальнае"
+msgstr "Мінімум"
#: optsolver.src#RID_SCDLG_OPTSOLVER.RB_VALUE.radiobutton.text
msgid "Value of"
-msgstr "Value of"
+msgstr "Значэнне "
#: optsolver.src#RID_SCDLG_OPTSOLVER.IB_TARGET.imagebutton.text
msgctxt "optsolver.src#RID_SCDLG_OPTSOLVER.IB_TARGET.imagebutton.text"
@@ -2011,31 +2011,31 @@ msgstr "Пачатковая дата для вылічэння розніцы
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DATEDIF.1.string.text
msgid "Returns the number of whole days, months or years between 'start date' and 'end date'."
-msgstr ""
+msgstr "Вяртае колькасць цэлых дзён, месяцаў або гадоў паміж 'start date' і 'end date'."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DATEDIF.2.string.text
msgid "Start date"
-msgstr ""
+msgstr "Start date"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DATEDIF.3.string.text
msgid "The start date."
-msgstr ""
+msgstr "Пачатковая дата."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DATEDIF.4.string.text
msgid "End date"
-msgstr ""
+msgstr "End date"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DATEDIF.5.string.text
msgid "The end date."
-msgstr ""
+msgstr "Канчатковая дата."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DATEDIF.6.string.text
msgid "Interval"
-msgstr ""
+msgstr "Interval"
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DATEDIF.7.string.text
msgid "Interval to be calculated. Can be \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
-msgstr ""
+msgstr "Тып прамежка для вылічэння. Можа быць \"d\", \"m\", \"y\", \"ym\", \"md\" або \"yd\"."
#: scfuncs.src#RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_WEEK.1.string.text
msgid "Calculates the calendar week corresponding to the given date."
@@ -8061,7 +8061,7 @@ msgstr "Сцерці змесціва..."
#: popup.src#RID_POPUP_CELLS.FID_MERGE_ON.menuitem.text
msgid "~Merge Cells..."
-msgstr ""
+msgstr "Зліць клеткі..."
#: popup.src#RID_POPUP_CELLS.SID_INSERT_POSTIT.menuitem.text
msgid "Insert Co~mment"
@@ -8102,18 +8102,16 @@ msgid "~Text"
msgstr "Тэкст"
#: popup.src#RID_POPUP_CELLS.SID_PASTE_ONLY.SID_PASTE_ONLY_VALUE.menuitem.text
-#, fuzzy
msgid "~Number"
-msgstr "Лікі"
+msgstr "Лік"
#: popup.src#RID_POPUP_CELLS.SID_PASTE_ONLY.SID_PASTE_ONLY_FORMULA.menuitem.text
-#, fuzzy
msgid "~Formula"
-msgstr "Формулы"
+msgstr "Формула"
#: popup.src#RID_POPUP_CELLS.SID_PASTE_ONLY.menuitem.text
msgid "Paste O~nly"
-msgstr ""
+msgstr "Устаўляць толькі"
#: popup.src#RID_POPUP_CELLS.SID_DATA_SELECT.menuitem.text
msgid "~Selection List..."
@@ -8162,7 +8160,7 @@ msgstr "Не паказваць"
#: popup.src#RID_POPUP_TAB.FID_TABLE_SHOW.menuitem.text
msgid "~Show..."
-msgstr ""
+msgstr "Паказаць..."
#: popup.src#RID_POPUP_TAB.FID_TAB_SELECTALL.menuitem.text
msgid "Select All S~heets"
@@ -8245,23 +8243,21 @@ msgid "Style"
msgstr "Стыль"
#: popup.src#RID_POPUP_EDIT.RID_MN_INSERT_FIELDS.SID_INSERT_FIELD_DATE_VAR.menuitem.text
-#, fuzzy
msgctxt "popup.src#RID_POPUP_EDIT.RID_MN_INSERT_FIELDS.SID_INSERT_FIELD_DATE_VAR.menuitem.text"
msgid "Date"
msgstr "Дата"
#: popup.src#RID_POPUP_EDIT.RID_MN_INSERT_FIELDS.SID_INSERT_FIELD_SHEET.menuitem.text
msgid "Sheet Name"
-msgstr ""
+msgstr "Назва аркуша"
#: popup.src#RID_POPUP_EDIT.RID_MN_INSERT_FIELDS.SID_INSERT_FIELD_TITLE.menuitem.text
msgid "Title"
-msgstr ""
+msgstr "Загаловак"
#: popup.src#RID_POPUP_EDIT.RID_MN_INSERT_FIELDS.menuitem.text
-#, fuzzy
msgid "Insert Fields"
-msgstr "Insert Cells"
+msgstr "Уставіць палі"
#: popup.src#RID_POPUP_AUDIT.string.text
msgid "Detective Fill Mode pop-up menu"
@@ -8398,7 +8394,6 @@ msgid "Delete ~all"
msgstr "Сцерці ўсё"
#: miscdlgs.src#RID_SCDLG_DELCONT.BTN_DELSTRINGS.checkbox.text
-#, fuzzy
msgctxt "miscdlgs.src#RID_SCDLG_DELCONT.BTN_DELSTRINGS.checkbox.text"
msgid "~Text"
msgstr "Тэкст"
@@ -8979,14 +8974,13 @@ msgstr "Верхнія 10"
#: scstring.src#SCSTR_FILTER_EMPTY.string.text
msgid "Empty"
-msgstr ""
+msgstr "Пустыя"
#: scstring.src#SCSTR_FILTER_NOTEMPTY.string.text
msgid "Not Empty"
-msgstr ""
+msgstr "Непустыя"
#: scstring.src#SCSTR_NONAME.string.text
-#, fuzzy
msgid "unnamed"
msgstr "без назвы"
@@ -9554,6 +9548,7 @@ msgid "Settings:"
msgstr "Настаўленні:"
#: solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text
+msgctxt "solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text"
msgid "Edit..."
msgstr "Правіць..."
@@ -9583,26 +9578,25 @@ msgid "Remove"
msgstr "Сцерці"
#: condformatdlg.src#RID_SCDLG_CONDFORMAT.modaldialog.text
-#, fuzzy
msgid "Conditional Formatting for"
-msgstr "Узгодненае фарматаванне"
+msgstr "Узгодненае фарматаванне для"
-#: condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text
-msgctxt "condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text"
-msgid "Condition"
+#: condformatdlg.src#RID_COND_ENTRY.STR_CONDITION.string.text
+msgid "Condition "
msgstr "Умова"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.1.stringlist.text
msgid "All Cells"
-msgstr ""
+msgstr "Усе клеткі"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text"
msgid "Cell value is"
-msgstr "Значэнне клеткі"
+msgstr "Значэнне клеткі гэта"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.3.stringlist.text
msgid "Formula is"
-msgstr "Формула"
+msgstr "Формула гэта"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.1.stringlist.text
msgid "equal to"
@@ -9629,37 +9623,39 @@ msgid "not equal to"
msgstr "не роўна"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text"
msgid "between"
msgstr "паміж"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text"
msgid "not between"
msgstr "па-за"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text"
msgid "duplicate"
-msgstr ""
+msgstr "дублікат"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.10.stringlist.text
msgid "not duplicate"
-msgstr ""
+msgstr "не дублікат"
#: condformatdlg.src#RID_COND_ENTRY.FT_STYLE.fixedtext.text
msgid "Apply Style"
-msgstr ""
+msgstr "Ужыць стыль"
#: condformatdlg.src#RID_COND_ENTRY.LB_STYLE.1.stringlist.text
-#, fuzzy
msgid "New Style..."
-msgstr "~New Style..."
+msgstr "Новы стыль..."
#: condformatdlg.src#RID_COND_ENTRY.LB_COLOR_FORMAT.1.stringlist.text
msgid "Color Scale (2 Entries)"
-msgstr ""
+msgstr "Лінейка колераў (2 элементы)"
#: condformatdlg.src#RID_COND_ENTRY.LB_COLOR_FORMAT.2.stringlist.text
msgid "Color Scale (3 Entries)"
-msgstr ""
+msgstr "Лінейка колераў (3 элементы)"
#: condformatdlg.src#RID_COND_ENTRY.LB_COLOR_FORMAT.3.stringlist.text
msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_COLOR_FORMAT.3.stringlist.text"
@@ -9679,7 +9675,7 @@ msgstr "Максімальна"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.3.stringlist.text
msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.3.stringlist.text"
msgid "Percentile"
-msgstr ""
+msgstr "Вышэй за працэнт"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.4.stringlist.text
msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.4.stringlist.text"
@@ -9689,13 +9685,12 @@ msgstr "Значэнне"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.5.stringlist.text
msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.5.stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "Працэнт"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.6.stringlist.text
-#, fuzzy
msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE_COL_SCALE.6.stringlist.text"
msgid "Formula"
-msgstr "Формулы"
+msgstr "Формула"
#: condformatdlg.src#RID_COND_ENTRY.WD_PREVIEW.window.text
msgid "Example"
@@ -9703,7 +9698,7 @@ msgstr "Прыклад"
#: condformatdlg.src#RID_COND_ENTRY.BTN_OPTIONS.pushbutton.text
msgid "More options ..."
-msgstr ""
+msgstr "Больш настаўленняў..."
#: subtdlg.src#RID_SCPAGE_SUBT_OPTIONS.FL_GROUP.fixedline.text
msgid "Groups"
@@ -9736,7 +9731,6 @@ msgid "~Ascending"
msgstr "Да павялічэння"
#: subtdlg.src#RID_SCPAGE_SUBT_OPTIONS.BTN_DESCENDING.radiobutton.text
-#, fuzzy
msgid "D~escending"
msgstr "Да памяншэння"
@@ -9834,6 +9828,25 @@ msgctxt "subtdlg.src#RID_SCDLG_SUBTOTALS.tabdialog.text"
msgid "Subtotals"
msgstr "Прамежкавыя вынікі"
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text"
+msgid "Add"
+msgstr "Дадаць"
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text"
+msgid "Remove"
+msgstr "Сцерці"
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text"
+msgid "Edit..."
+msgstr "Правіць..."
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.modaldialog.text
+msgid "Manage Conditional Formatting"
+msgstr "Арганізаваць умоўнае афармленне"
+
#: textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
msgctxt "textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
msgid "Font"
@@ -10025,7 +10038,7 @@ msgstr "Да памяншэння"
#: sortdlg.src#FL_SORT.fixedline.text
msgid "Sort ~key "
-msgstr ""
+msgstr "Ключ парадкавання"
#: sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_CASESENSITIVE.checkbox.text
msgctxt "sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_CASESENSITIVE.checkbox.text"
@@ -10812,6 +10825,9 @@ msgid ""
"The sheet name must not be a duplicate of an existing name \n"
"and may not contain the characters [ ] * ? : / \\"
msgstr ""
+"Недапушчальная назва ліста.\n"
+"Назва не можа паўтараць наяўную \n"
+"і не можа ўтрымліваць знакі [ ] * ? : / \\"
#: globstr.src#RID_GLOBSTR.STR_SCENARIO.string.text
msgid "Scenario"
@@ -11695,7 +11711,6 @@ msgid "Subtotals"
msgstr "Прамежкавыя вынікі"
#: globstr.src#RID_GLOBSTR.STR_OPERATION_NONE.string.text
-#, fuzzy
msgctxt "globstr.src#RID_GLOBSTR.STR_OPERATION_NONE.string.text"
msgid "None"
msgstr "Няма"
@@ -11865,10 +11880,9 @@ msgid "Manual"
msgstr "Па-свойму"
#: globstr.src#RID_GLOBSTR.STR_RECALC_AUTO.string.text
-#, fuzzy
msgctxt "globstr.src#RID_GLOBSTR.STR_RECALC_AUTO.string.text"
msgid "Automatic"
-msgstr "Automatic"
+msgstr "Аўтаматычна"
#: globstr.src#RID_GLOBSTR.STR_ERR_LONG_NESTED_ARRAY.string.text
msgid "Nested arrays are not supported."
@@ -12089,6 +12103,42 @@ msgstr ""
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "На гэты незапісаны дакумент спасылаюцца іншыя дакументы. Закрыўшы яго без запісу, можна страціць даныя."
+#: globstr.src#RID_GLOBSTR.STR_HEADER_COND.string.text
+msgid "First Condition"
+msgstr "Першая ўмова"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text"
+msgid "Cell value is"
+msgstr "Значэнне клеткі гэта"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_COLORSCALE.string.text
+msgid "ColorScale"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DATABAR.string.text
+msgid "DataBar"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text"
+msgid "between"
+msgstr "паміж"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text"
+msgid "not between"
+msgstr "па-за"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_UNIQUE.string.text
+msgid "unique"
+msgstr "унікальнае"
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text"
+msgid "duplicate"
+msgstr "дублікат"
+
#: crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text
msgctxt "crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text"
msgid "Range"
@@ -12900,11 +12950,11 @@ msgstr "Паўтараць калонку"
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.STR_DEFAULT_INFO.string.text
msgid "Define the name and range or formula expression."
-msgstr ""
+msgstr "Вызначэнне назвы і абсяга або формульнага выражэння"
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.modelessdialog.text
msgid "Define Name"
-msgstr ""
+msgstr "Вызначэнне назвы"
#: dbnamdlg.src#RID_SCDLG_DBNAMES.FL_NAME.fixedline.text
msgid "Na~me"
@@ -12984,62 +13034,60 @@ msgstr "Вызначыць абсяг базы даных"
#: colorformat.src#RID_SCDLG_DATABAR.FL_VALUES.fixedline.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.FL_VALUES.fixedline.text"
msgid "Bar Colors"
-msgstr ""
+msgstr "Колеры слупка"
#: colorformat.src#RID_SCDLG_DATABAR.FL_BAR_COLORS.fixedline.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.FL_BAR_COLORS.fixedline.text"
msgid "Bar Colors"
-msgstr ""
+msgstr "Колеры слупка"
#: colorformat.src#RID_SCDLG_DATABAR.FL_AXIS.fixedline.text
msgid "Axis"
-msgstr ""
+msgstr "Восі"
#: colorformat.src#RID_SCDLG_DATABAR.FT_MINIMUM.fixedtext.text
-#, fuzzy
msgid "Minimum:"
-msgstr "Мінімальнае"
+msgstr "Мінімум:"
#: colorformat.src#RID_SCDLG_DATABAR.FT_MAXIMUM.fixedtext.text
-#, fuzzy
msgid "Maximum:"
-msgstr "Максімальнае"
+msgstr "Максімум:"
#: colorformat.src#RID_SCDLG_DATABAR.FT_POSITIVE.fixedtext.text
msgid "Positive:"
-msgstr ""
+msgstr "Станоўча:"
#: colorformat.src#RID_SCDLG_DATABAR.FT_NEGATIVE.fixedtext.text
msgid "Negative:"
-msgstr ""
+msgstr "Адмоўна:"
#: colorformat.src#RID_SCDLG_DATABAR.FT_POSITION.fixedtext.text
msgid "Position of vertical axis"
-msgstr ""
+msgstr "Месца вертыкальнай восі"
#: colorformat.src#RID_SCDLG_DATABAR.FT_COLOR_AXIS.fixedtext.text
msgid "Color of vertical axis"
-msgstr ""
+msgstr "Колер вертыкальнай восі"
#: colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.1.stringlist.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.1.stringlist.text"
msgid "Minimum"
-msgstr "Мінімальнае"
+msgstr "Мінімум"
#: colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.2.stringlist.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.2.stringlist.text"
msgid "Maximum"
-msgstr "Максімальнае"
+msgstr "Максімум"
#: colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.3.stringlist.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.3.stringlist.text"
msgid "Percentile"
-msgstr ""
+msgstr "Вышэй за працэнт"
#: colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.4.stringlist.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.4.stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "Працэнт"
#: colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.5.stringlist.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.5.stringlist.text"
@@ -13047,19 +13095,18 @@ msgid "Value"
msgstr "Значэнне"
#: colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.6.stringlist.text
-#, fuzzy
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_TYPE.6.stringlist.text"
msgid "Formula"
-msgstr "Формулы"
+msgstr "Формула"
#: colorformat.src#RID_SCDLG_DATABAR.LB_AXIS_POSITION.1.stringlist.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_AXIS_POSITION.1.stringlist.text"
msgid "Automatic"
-msgstr "Automatic"
+msgstr "Аўтаматычна"
#: colorformat.src#RID_SCDLG_DATABAR.LB_AXIS_POSITION.2.stringlist.text
msgid "Middle"
-msgstr ""
+msgstr "У сярэдзіне"
#: colorformat.src#RID_SCDLG_DATABAR.LB_AXIS_POSITION.3.stringlist.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.LB_AXIS_POSITION.3.stringlist.text"
@@ -13068,7 +13115,7 @@ msgstr "Няма"
#: colorformat.src#RID_SCDLG_DATABAR.STR_WARN_SAME_VALUE.string.text
msgid "Min value must be smaller than max value!"
-msgstr ""
+msgstr "Мінімальнае значэнне павінна бвць меншым за максімальнае!"
#: colorformat.src#RID_SCDLG_DATABAR.modaldialog.text
msgctxt "colorformat.src#RID_SCDLG_DATABAR.modaldialog.text"
diff --git a/translations/source/be/sc/source/ui/styleui.po b/translations/source/be/sc/source/ui/styleui.po
index d39da2afcff..7275edd923a 100644
--- a/translations/source/be/sc/source/ui/styleui.po
+++ b/translations/source/be/sc/source/ui/styleui.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: styleui\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fstyleui.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scaddins/source/analysis.po b/translations/source/be/scaddins/source/analysis.po
index dc4634f3559..71d5a1f6184 100644
--- a/translations/source/be/scaddins/source/analysis.po
+++ b/translations/source/be/scaddins/source/analysis.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: analysis\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scaddins%2Fsource%2Fanalysis.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:32+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: analysis_funcnames.src#RID_ANALYSIS_FUNCTION_NAMES.ANALYSIS_FUNCNAME_Workday.string.text
@@ -365,38 +364,35 @@ msgstr "IMSQRT"
#: analysis_funcnames.src#RID_ANALYSIS_FUNCTION_NAMES.ANALYSIS_FUNCNAME_Imtan.string.text
msgid "IMTAN"
-msgstr ""
+msgstr "IMTAN"
#: analysis_funcnames.src#RID_ANALYSIS_FUNCTION_NAMES.ANALYSIS_FUNCNAME_Imsec.string.text
msgid "IMSEC"
-msgstr ""
+msgstr "IMSEC"
#: analysis_funcnames.src#RID_ANALYSIS_FUNCTION_NAMES.ANALYSIS_FUNCNAME_Imcsc.string.text
msgid "IMCSC"
-msgstr ""
+msgstr "IMCSC"
#: analysis_funcnames.src#RID_ANALYSIS_FUNCTION_NAMES.ANALYSIS_FUNCNAME_Imcot.string.text
-#, fuzzy
msgid "IMCOT"
-msgstr "IMCOS"
+msgstr "IMCOT"
#: analysis_funcnames.src#RID_ANALYSIS_FUNCTION_NAMES.ANALYSIS_FUNCNAME_Imsinh.string.text
-#, fuzzy
msgid "IMSINH"
-msgstr "IMSIN"
+msgstr "IMSINH"
#: analysis_funcnames.src#RID_ANALYSIS_FUNCTION_NAMES.ANALYSIS_FUNCNAME_Imcosh.string.text
-#, fuzzy
msgid "IMCOSH"
-msgstr "IMCOS"
+msgstr "IMCOSH"
#: analysis_funcnames.src#RID_ANALYSIS_FUNCTION_NAMES.ANALYSIS_FUNCNAME_Imsech.string.text
msgid "IMSECH"
-msgstr ""
+msgstr "IMSECH"
#: analysis_funcnames.src#RID_ANALYSIS_FUNCTION_NAMES.ANALYSIS_FUNCNAME_Imcsch.string.text
msgid "IMCSCH"
-msgstr ""
+msgstr "IMCSCH"
#: analysis_funcnames.src#RID_ANALYSIS_FUNCTION_NAMES.ANALYSIS_FUNCNAME_Complex.string.text
msgid "COMPLEX"
@@ -1492,9 +1488,8 @@ msgid "The complex number"
msgstr "Камплексны лік"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imtan.1.string.text
-#, fuzzy
msgid "Returns the tangent of a complex number"
-msgstr "Вяртае сінус камплекснага ліку"
+msgstr "Вяртае тангенс камплекснага ліку"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imtan.2.string.text
msgctxt "analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imtan.2.string.text"
@@ -1507,9 +1502,8 @@ msgid "A complex number"
msgstr "Камплексны лік"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imsec.1.string.text
-#, fuzzy
msgid "Returns the secant of a complex number"
-msgstr "Вяртае сінус камплекснага ліку"
+msgstr "Вяртае секанс камплекснага ліку"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imsec.2.string.text
msgctxt "analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imsec.2.string.text"
@@ -1522,9 +1516,8 @@ msgid "A complex number"
msgstr "Камплексны лік"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imcsc.1.string.text
-#, fuzzy
msgid "Returns the cosecant of a complex number"
-msgstr "Вяртае косінус камплекснага ліку"
+msgstr "Вяртае касеканс камплекснага ліку"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imcsc.2.string.text
msgctxt "analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imcsc.2.string.text"
@@ -1537,9 +1530,8 @@ msgid "A complex number"
msgstr "Камплексны лік"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imcot.1.string.text
-#, fuzzy
msgid "Returns the cotangent of a complex number"
-msgstr "Вяртае косінус камплекснага ліку"
+msgstr "Вяртае катангенс камплекснага ліку"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imcot.2.string.text
msgctxt "analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imcot.2.string.text"
@@ -1552,9 +1544,8 @@ msgid "A complex number"
msgstr "Камплексны лік"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imsinh.1.string.text
-#, fuzzy
msgid "Returns the hyperbolic sine of a complex number"
-msgstr "Вяртае косінус камплекснага ліку"
+msgstr "Вяртае гіпербалічны сінус камплекснага ліку"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imsinh.2.string.text
msgctxt "analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imsinh.2.string.text"
@@ -1567,9 +1558,8 @@ msgid "A complex number"
msgstr "Камплексны лік"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imcosh.1.string.text
-#, fuzzy
msgid "Returns the hyperbolic cosine of a complex number"
-msgstr "Вяртае косінус камплекснага ліку"
+msgstr "Вяртае гіпербалічны косінус камплекснага ліку"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imcosh.2.string.text
msgctxt "analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imcosh.2.string.text"
@@ -1583,7 +1573,7 @@ msgstr "Камплексны лік"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imsech.1.string.text
msgid "Returns the hyperbolic secant of a complex number"
-msgstr ""
+msgstr "Вяртае гіпербалічны секанс камплекснага ліку"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imsech.2.string.text
msgctxt "analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imsech.2.string.text"
@@ -1597,7 +1587,7 @@ msgstr "Камплексны лік"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imcsch.1.string.text
msgid "Returns the hyperbolic cosecant of a complex number"
-msgstr ""
+msgstr "Вяртае гіпербалічны касеканс камплекснага ліку"
#: analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imcsch.2.string.text
msgctxt "analysis.src#RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Imcsch.2.string.text"
diff --git a/translations/source/be/scaddins/source/datefunc.po b/translations/source/be/scaddins/source/datefunc.po
index 6eaea2cd21b..f837d7cced4 100644
--- a/translations/source/be/scaddins/source/datefunc.po
+++ b/translations/source/be/scaddins/source/datefunc.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: datefunc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scaddins%2Fsource%2Fdatefunc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sccomp/source/solver.po b/translations/source/be/sccomp/source/solver.po
index 692460c7179..91f3c417096 100644
--- a/translations/source/be/sccomp/source/solver.po
+++ b/translations/source/be/sccomp/source/solver.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: solver\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sccomp%2Fsource%2Fsolver.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-22 17:55+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/accessories.po b/translations/source/be/scp2/source/accessories.po
index b64928b86cd..00c0fdf35a5 100644
--- a/translations/source/be/scp2/source/accessories.po
+++ b/translations/source/be/scp2/source/accessories.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: accessories\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Faccessories.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/activex.po b/translations/source/be/scp2/source/activex.po
index 5eb8e51d211..2982e36e036 100644
--- a/translations/source/be/scp2/source/activex.po
+++ b/translations/source/be/scp2/source/activex.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: activex\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Factivex.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/base.po b/translations/source/be/scp2/source/base.po
index 4b93679e22a..4e074939bf0 100644
--- a/translations/source/be/scp2/source/base.po
+++ b/translations/source/be/scp2/source/base.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: base\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fbase.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-11-06 22:05+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:50+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: module_base.ulf#STR_NAME_MODULE_PRG_BASE.LngText.text
@@ -42,12 +41,12 @@ msgstr "Даведка на тэмы %PRODUCTNAME Base"
#: postgresqlsdbc.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_POSTGRESQLSDBC.LngText.text
msgctxt "postgresqlsdbc.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_POSTGRESQLSDBC.LngText.text"
msgid "PostgreSQL Connector"
-msgstr ""
+msgstr "Злучальнік PostgreSQL"
#: postgresqlsdbc.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_POSTGRESQLSDBC.LngText.text
msgctxt "postgresqlsdbc.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_POSTGRESQLSDBC.LngText.text"
msgid "PostgreSQL Connector"
-msgstr ""
+msgstr "Злучальнік PostgreSQL"
#: folderitem_base.ulf#STR_FI_TOOLTIP_BASE.LngText.text
msgid "Manage databases, create queries and reports to track and manage your information by using Base."
diff --git a/translations/source/be/scp2/source/binfilter.po b/translations/source/be/scp2/source/binfilter.po
index b66ee4488ad..2574c7479f5 100644
--- a/translations/source/be/scp2/source/binfilter.po
+++ b/translations/source/be/scp2/source/binfilter.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: binfilter\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fbinfilter.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/calc.po b/translations/source/be/scp2/source/calc.po
index 7309153ff90..f84a0156ba1 100644
--- a/translations/source/be/scp2/source/calc.po
+++ b/translations/source/be/scp2/source/calc.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: calc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fcalc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-04 20:12+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/draw.po b/translations/source/be/scp2/source/draw.po
index ea270b13d54..3542e85792f 100644
--- a/translations/source/be/scp2/source/draw.po
+++ b/translations/source/be/scp2/source/draw.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: draw\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fdraw.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-10-20 23:32+0300\n"
-"Last-Translator: Yury Tarasievich\n"
-"Language-Team: <en@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 09:50+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: folderitem_draw.ulf#STR_FI_NAME_ZEICHNUNG.LngText.text
@@ -45,11 +44,11 @@ msgstr "Шаблон рысунку OpenDocument"
#: registryitem_draw.ulf#STR_REG_VAL_MS_VISIO_DOCUMENT.LngText.text
msgid "Microsoft Visio 2000/XP/2003 Document"
-msgstr ""
+msgstr "Дакумент Microsoft Visio 2000/XP/2003"
#: registryitem_draw.ulf#STR_REG_VAL_MS_VISIO_TEMPLATE.LngText.text
msgid "Microsoft Visio 2000/XP/2003 Template"
-msgstr ""
+msgstr "Шаблон Microsoft Visio 2000/XP/2003"
#: module_draw.ulf#STR_NAME_MODULE_PRG_DRAW.LngText.text
msgid "%PRODUCTNAME Draw"
diff --git a/translations/source/be/scp2/source/extensions.po b/translations/source/be/scp2/source/extensions.po
index 016c7fa3a6b..439be7ecfd8 100644
--- a/translations/source/be/scp2/source/extensions.po
+++ b/translations/source/be/scp2/source/extensions.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: extensions\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fextensions.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-12-22 22:44+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/gnome.po b/translations/source/be/scp2/source/gnome.po
index 72f3586f459..26a356de4b8 100644
--- a/translations/source/be/scp2/source/gnome.po
+++ b/translations/source/be/scp2/source/gnome.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: gnome\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fgnome.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/graphicfilter.po b/translations/source/be/scp2/source/graphicfilter.po
index 41d3a01f302..3ecdefdd4c9 100644
--- a/translations/source/be/scp2/source/graphicfilter.po
+++ b/translations/source/be/scp2/source/graphicfilter.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: graphicfilter\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fgraphicfilter.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/impress.po b/translations/source/be/scp2/source/impress.po
index b0e70494077..859f046def3 100644
--- a/translations/source/be/scp2/source/impress.po
+++ b/translations/source/be/scp2/source/impress.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: impress\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fimpress.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/javafilter.po b/translations/source/be/scp2/source/javafilter.po
index 8f868bf9d2f..b36be3bf633 100644
--- a/translations/source/be/scp2/source/javafilter.po
+++ b/translations/source/be/scp2/source/javafilter.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: javafilter\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fjavafilter.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/kde.po b/translations/source/be/scp2/source/kde.po
index 756f5f28eab..f384abbd6f2 100644
--- a/translations/source/be/scp2/source/kde.po
+++ b/translations/source/be/scp2/source/kde.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: kde\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fkde.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/math.po b/translations/source/be/scp2/source/math.po
index cd43fb6902b..0851828b293 100644
--- a/translations/source/be/scp2/source/math.po
+++ b/translations/source/be/scp2/source/math.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: math\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fmath.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/onlineupdate.po b/translations/source/be/scp2/source/onlineupdate.po
index 0918dd7ee9e..1745eb5a774 100644
--- a/translations/source/be/scp2/source/onlineupdate.po
+++ b/translations/source/be/scp2/source/onlineupdate.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: onlineupdate\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fonlineupdate.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/ooo.po b/translations/source/be/scp2/source/ooo.po
index 961663eb9fa..5170032ae01 100644
--- a/translations/source/be/scp2/source/ooo.po
+++ b/translations/source/be/scp2/source/ooo.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: ooo\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fooo.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-05 09:52+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: module_systemint.ulf#STR_NAME_MODULE_OPTIONAL_SYSTEMINTEGRATION.LngText.text
@@ -357,7 +356,7 @@ msgstr "Lao"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_LO.LngText.text
msgid "Installs Lao help in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Installs Lao help in %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Ставіць даведку %PRODUCTNAME %PRODUCTVERSION на мове лао"
#: module_helppack.ulf#STR_NAME_MODULE_HELPPACK_NSO.LngText.text
msgctxt "module_helppack.ulf#STR_NAME_MODULE_HELPPACK_NSO.LngText.text"
@@ -371,22 +370,20 @@ msgstr "Installs Northern Sotho help in %PRODUCTNAME %PRODUCTVERSION"
#: module_helppack.ulf#STR_NAME_MODULE_HELPPACK_BN.LngText.text
msgctxt "module_helppack.ulf#STR_NAME_MODULE_HELPPACK_BN.LngText.text"
msgid "Bengali (Bangladesh)"
-msgstr ""
+msgstr "Бенгальская (Бангладэш)"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_BN.LngText.text
-#, fuzzy
msgid "Installs Bengali (Bangladesh) help in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Installs Bengali help in %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Ставіць даведку %PRODUCTNAME %PRODUCTVERSION на бенгальскай мове"
#: module_helppack.ulf#STR_NAME_MODULE_HELPPACK_BN_IN.LngText.text
msgctxt "module_helppack.ulf#STR_NAME_MODULE_HELPPACK_BN_IN.LngText.text"
msgid "Bengali (India)"
-msgstr ""
+msgstr "Бенгальская (Індыя)"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_BN_IN.LngText.text
-#, fuzzy
msgid "Installs Bengali (India) help in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Installs Bengali help in %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Ставіць даведку %PRODUCTNAME %PRODUCTVERSION на бенгальскай (Індыя) мове"
#: module_helppack.ulf#STR_NAME_MODULE_HELPPACK_OR.LngText.text
msgctxt "module_helppack.ulf#STR_NAME_MODULE_HELPPACK_OR.LngText.text"
@@ -1120,7 +1117,6 @@ msgid "Bulgarian spelling dictionary, hyphenation rules, and thesaurus"
msgstr "Балгарскі правапісны слоўнік, узоры пераносаў і тэзаўрус"
#: module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_BN.LngText.text
-#, fuzzy
msgid "Bengali"
msgstr "Бенгальская"
@@ -1882,22 +1878,20 @@ msgstr "Ставіць інтэрфейс на мове сота (паўночн
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_BN.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_BN.LngText.text"
msgid "Bengali (Bangladesh)"
-msgstr ""
+msgstr "Бенгальская (Бангладэш)"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_BN.LngText.text
-#, fuzzy
msgid "Installs the Bengali (Bangladesh) user interface"
msgstr "Ставіць інтэрфейс на бенгальскай мове"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_BN_IN.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_BN_IN.LngText.text"
msgid "Bengali (India)"
-msgstr ""
+msgstr "Бенгальская (Індыя)"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_BN_IN.LngText.text
-#, fuzzy
msgid "Installs the Bengali (India) user interface"
-msgstr "Ставіць інтэрфейс на бенгальскай мове"
+msgstr "Ставіць інтэрфейс на бенгальскай (Індыя) мове"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_OR.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_OR.LngText.text"
@@ -2512,12 +2506,11 @@ msgstr "Ставіць інтэрфейс на люксембургскай мо
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_AM.LngText.text
msgid "Amharic"
-msgstr ""
+msgstr "Амхарская"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_AM.LngText.text
-#, fuzzy
msgid "Installs the Amharic user interface"
-msgstr "Ставіць інтэрфейс на арабскай мове"
+msgstr "Ставіць інтэрфейс на амхарскай мове"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_QTZ.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_QTZ.LngText.text"
diff --git a/translations/source/be/scp2/source/python.po b/translations/source/be/scp2/source/python.po
index 1652497016a..1235e6bb6af 100644
--- a/translations/source/be/scp2/source/python.po
+++ b/translations/source/be/scp2/source/python.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: python\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fpython.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-26 11:35+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/quickstart.po b/translations/source/be/scp2/source/quickstart.po
index 5004d0e2ece..04926815a09 100644
--- a/translations/source/be/scp2/source/quickstart.po
+++ b/translations/source/be/scp2/source/quickstart.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: quickstart\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fquickstart.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/sdkoo.po b/translations/source/be/scp2/source/sdkoo.po
index 2c4bf669e1e..120b5199f36 100644
--- a/translations/source/be/scp2/source/sdkoo.po
+++ b/translations/source/be/scp2/source/sdkoo.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: sdkoo\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fsdkoo.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/smoketest.po b/translations/source/be/scp2/source/smoketest.po
index 1eb959748f3..bff9ee43835 100644
--- a/translations/source/be/scp2/source/smoketest.po
+++ b/translations/source/be/scp2/source/smoketest.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: smoketest\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fsmoketest.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-12-22 22:42+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/stdlibs.po b/translations/source/be/scp2/source/stdlibs.po
index a0bb1d88ffb..987a589ddf0 100644
--- a/translations/source/be/scp2/source/stdlibs.po
+++ b/translations/source/be/scp2/source/stdlibs.po
@@ -1,23 +1,22 @@
#. extracted from scp2/source/stdlibs.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: stdlibs\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fstdlibs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-05 09:53+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: module_stdlibs.ulf#STR_NAME_MODULE_OPTIONAL_STDLIBS.LngText.text
msgid "Standard Compiler Libraries"
-msgstr ""
+msgstr "Стандартныя бібліятэкі кампілятара"
#: module_stdlibs.ulf#STR_DESC_MODULE_OPTIONAL_STDLIBS.LngText.text
msgid "libstdc++ and libgcc_s for too old Linux systems."
-msgstr ""
+msgstr "libstdc++ і libgcc_s для састарэлых Лінукс-сістэм."
diff --git a/translations/source/be/scp2/source/tde.po b/translations/source/be/scp2/source/tde.po
index 2df807251b2..071308228e4 100644
--- a/translations/source/be/scp2/source/tde.po
+++ b/translations/source/be/scp2/source/tde.po
@@ -1,23 +1,22 @@
#. extracted from scp2/source/tde.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: tde\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Ftde.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-05 09:53+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: module_tde.ulf#STR_NAME_MODULE_OPTIONAL_TDE.LngText.text
msgid "TDE Integration"
-msgstr ""
+msgstr "Інтэграцыя з TDE"
#: module_tde.ulf#STR_DESC_MODULE_OPTIONAL_TDE.LngText.text
msgid "System integration of %PRODUCTNAME %PRODUCTVERSION into TDE."
-msgstr ""
+msgstr "Сістэмная інтэграцыя %PRODUCTNAME %PRODUCTVERSION з TDE."
diff --git a/translations/source/be/scp2/source/testtool.po b/translations/source/be/scp2/source/testtool.po
deleted file mode 100644
index b1d8634196f..00000000000
--- a/translations/source/be/scp2/source/testtool.po
+++ /dev/null
@@ -1,24 +0,0 @@
-#. extracted from scp2/source/testtool.oo
-msgid ""
-msgstr ""
-"Project-Id-Version: testtool\n"
-"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Ftesttool.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-10-20 23:32+0300\n"
-"Last-Translator: Yury Tarasievich\n"
-"Language-Team: <en@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
-"X-Accelerator-Marker: ~\n"
-
-#: module_testtool.ulf#STR_NAME_MODULE_OPTIONAL_TESTTOOL.LngText.text
-msgctxt "module_testtool.ulf#STR_NAME_MODULE_OPTIONAL_TESTTOOL.LngText.text"
-msgid "Testtool"
-msgstr "Тэст-прылада*"
-
-#: module_testtool.ulf#STR_DESC_MODULE_OPTIONAL_TESTTOOL.LngText.text
-msgctxt "module_testtool.ulf#STR_DESC_MODULE_OPTIONAL_TESTTOOL.LngText.text"
-msgid "Testtool"
-msgstr "Тэст-прылада*"
diff --git a/translations/source/be/scp2/source/winexplorerext.po b/translations/source/be/scp2/source/winexplorerext.po
index c3f5538237f..03fac51312c 100644
--- a/translations/source/be/scp2/source/winexplorerext.po
+++ b/translations/source/be/scp2/source/winexplorerext.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: winexplorerext\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fwinexplorerext.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/writer.po b/translations/source/be/scp2/source/writer.po
index 22997a503df..63905db12ab 100644
--- a/translations/source/be/scp2/source/writer.po
+++ b/translations/source/be/scp2/source/writer.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: writer\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fwriter.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scp2/source/xsltfilter.po b/translations/source/be/scp2/source/xsltfilter.po
index 4d03b14045c..23ed50d903f 100644
--- a/translations/source/be/scp2/source/xsltfilter.po
+++ b/translations/source/be/scp2/source/xsltfilter.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: xsltfilter\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fxsltfilter.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/scripting/source/pyprov.po b/translations/source/be/scripting/source/pyprov.po
index 9b094230d2e..a8789176580 100644
--- a/translations/source/be/scripting/source/pyprov.po
+++ b/translations/source/be/scripting/source/pyprov.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: pyprov\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scripting%2Fsource%2Fpyprov.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-11-26 11:13+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sd/source/core.po b/translations/source/be/sd/source/core.po
index c1dbc57ae9e..7fcf77e7e33 100644
--- a/translations/source/be/sd/source/core.po
+++ b/translations/source/be/sd/source/core.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: core\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sd%2Fsource%2Fcore.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-12-22 22:59+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sd/source/filter/html.po b/translations/source/be/sd/source/filter/html.po
index c481f12704a..5293aeafd11 100644
--- a/translations/source/be/sd/source/filter/html.po
+++ b/translations/source/be/sd/source/filter/html.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: html\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sd%2Fsource%2Ffilter%2Fhtml.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sd/source/ui/accessibility.po b/translations/source/be/sd/source/ui/accessibility.po
index ab900a6e960..9cf02246df0 100644
--- a/translations/source/be/sd/source/ui/accessibility.po
+++ b/translations/source/be/sd/source/ui/accessibility.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: accessibility\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sd%2Fsource%2Fui%2Faccessibility.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sd/source/ui/animations.po b/translations/source/be/sd/source/ui/animations.po
index 0bcdac7f48d..41dbcb4986b 100644
--- a/translations/source/be/sd/source/ui/animations.po
+++ b/translations/source/be/sd/source/ui/animations.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: animations\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sd%2Fsource%2Fui%2Fanimations.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
-"Language-Team: <en@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 09:12+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -480,7 +479,6 @@ msgid "~Play"
msgstr "Узнавіць"
#: CustomAnimationPane.src#DLG_CUSTOMANIMATIONPANE.PB_SLIDE_SHOW.pushbutton.text
-#, fuzzy
msgid "S~lide Show"
msgstr "Паказ слайдаў"
diff --git a/translations/source/be/sd/source/ui/annotations.po b/translations/source/be/sd/source/ui/annotations.po
index 507ae3ea279..9ea38edf394 100644
--- a/translations/source/be/sd/source/ui/annotations.po
+++ b/translations/source/be/sd/source/ui/annotations.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: annotations\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sd%2Fsource%2Fui%2Fannotations.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sd/source/ui/app.po b/translations/source/be/sd/source/ui/app.po
index 0e268f18644..e8fcceb7da6 100644
--- a/translations/source/be/sd/source/ui/app.po
+++ b/translations/source/be/sd/source/ui/app.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: app\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sd%2Fsource%2Fui%2Fapp.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-05 09:54+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: popup.src#RID_DRAW_TABLEOBJ_INSIDE_POPUP.SID_FORMAT_TABLE_DLG.menuitem.text
@@ -109,7 +108,6 @@ msgid "Modify La~yer..."
msgstr "Правіць слой..."
#: popup.src#RID_LAYERTAB_POPUP.SID_DELETE_LAYER.menuitem.text
-#, fuzzy
msgid "Delete ~Layer..."
msgstr "Сцерці слой..."
@@ -590,7 +588,7 @@ msgstr "Слайд"
#: strings.src#STR_ALL_FILES.string.text
msgid "All files"
-msgstr ""
+msgstr "Усе файлы"
#: strings.src#STR_UNDO_INSERT_TEXTFRAME.string.text
msgid "Insert text frame"
@@ -633,7 +631,6 @@ msgid "Modify page margins"
msgstr "Правіць палі старонкі"
#: strings.src#STR_EDIT_OBJ.string.text
-#, fuzzy
msgid "~Edit"
msgstr "Правіць"
@@ -1421,28 +1418,25 @@ msgstr "Уставіць відэа"
#: strings.src#STRING_DRAG_AND_DROP_PAGES.string.text
msgid "Drag and Drop Pages"
-msgstr ""
+msgstr "Перацягванне старонак"
#: strings.src#STRING_DRAG_AND_DROP_SLIDES.string.text
msgid "Drag and Drop Slides"
-msgstr ""
+msgstr "Перацягванне слайдаў"
#: strings.src#STRING_START_SLIDESHOW.string.text
msgid "Start Slide Show"
-msgstr ""
+msgstr "Пачаць паказ слайдаў"
#: strings.src#STRING_HIDE_SLIDE.string.text
-#, fuzzy
msgid "Hide Slide"
msgstr "Не паказваць слайд"
#: strings.src#STRING_SHOW_SLIDE.string.text
-#, fuzzy
msgid "Show Slide"
msgstr "Паказваць слайд"
#: strings.src#STRING_DUPLICATE_SLIDE.string.text
-#, fuzzy
msgid "Duplicate Slide"
msgstr "Дублікаваць слайд"
@@ -1517,7 +1511,6 @@ msgid "Pag~e"
msgstr "Старонка"
#: menuids_tmpl.src#MN_SLIDE_MENU.DUMMY_8.menuitem.text
-#, fuzzy
msgid "Slid~e"
msgstr "Слайд"
@@ -1566,7 +1559,6 @@ msgid "~Autofit Text"
msgstr "Аўта-дапасаванне тэкста"
#: menuids_tmpl.src#MN_CONNECTION.SID_CONNECTION_DLG.menuitem.text
-#, fuzzy
msgid "~Connector..."
msgstr "Злучальнік..."
@@ -1575,7 +1567,6 @@ msgid "Reset ~Routing"
msgstr "Вярнуць шляхі да пачатковых"
#: menuids_tmpl.src#MN_MEASURE.SID_MEASURE_DLG.menuitem.text
-#, fuzzy
msgid "Dimen~sions..."
msgstr "Вымярэнні..."
@@ -1593,12 +1584,10 @@ msgid "~Bring to Front"
msgstr "Спераду"
#: menuids_tmpl.src#MN_POSITION.SID_POSITION.SID_MOREFRONT.menuitem.text
-#, fuzzy
msgid "Bring ~Forward"
msgstr "Бліжэй"
#: menuids_tmpl.src#MN_POSITION.SID_POSITION.SID_MOREBACK.menuitem.text
-#, fuzzy
msgid "Send Back~ward"
msgstr "Далей"
@@ -1607,19 +1596,16 @@ msgid "~Send to Back"
msgstr "Ззаду"
#: menuids_tmpl.src#MN_POSITION.SID_POSITION.SID_BEFORE_OBJ.menuitem.text
-#, fuzzy
msgid "In Front of ~Object"
msgstr "Перад аб'ектам"
#: menuids_tmpl.src#MN_POSITION.SID_POSITION.SID_BEHIND_OBJ.menuitem.text
-#, fuzzy
msgid "Be~hind Object"
msgstr "За аб'ектам"
#: menuids_tmpl.src#MN_POSITION.SID_POSITION.SID_REVERSE_ORDER.menuitem.text
-#, fuzzy
msgid "~Reverse"
-msgstr "Адваротна"
+msgstr "Наадварот"
#: menuids_tmpl.src#MN_POSITION.SID_POSITION.menuitem.text
msgid "Arra~nge"
@@ -1802,12 +1788,10 @@ msgid "~Reduce Points"
msgstr "Скараціць пункты"
#: menuids_tmpl.src#MN_GROUP.SID_GROUP.menuitem.text
-#, fuzzy
msgid "~Group"
msgstr "Згрупаваць"
#: menuids_tmpl.src#MN_UNGROUP.SID_UNGROUP.menuitem.text
-#, fuzzy
msgid "~Ungroup"
msgstr "Адгрупаваць"
diff --git a/translations/source/be/sd/source/ui/dlg.po b/translations/source/be/sd/source/ui/dlg.po
index 8b1abb22f26..f4d4e6d21bb 100644
--- a/translations/source/be/sd/source/ui/dlg.po
+++ b/translations/source/be/sd/source/ui/dlg.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dlg\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sd%2Fsource%2Fui%2Fdlg.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-11-08 12:52+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 09:13+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -149,7 +148,7 @@ msgstr "Дысплей прэзентацыі"
#: present.src#DLG_START_PRESENTATION.STR_EXTERNAL_MONITOR.string.text
msgid "Display %1 (external)"
-msgstr ""
+msgstr "Дысплей %1 (вонкавы)"
#: present.src#DLG_START_PRESENTATION.STR_MONITOR.string.text
msgid "Display %1"
@@ -1158,7 +1157,7 @@ msgstr "Папера"
#: dlgass.src#DLG_ASS.RB_PAGE2_MEDIUM6.radiobutton.text
msgid "W~idescreen"
-msgstr ""
+msgstr "Шырокі экран"
#: dlgass.src#DLG_ASS.FL_PAGE3_EFFECT.fixedline.text
msgid "Select a slide transition"
diff --git a/translations/source/be/sd/source/ui/slideshow.po b/translations/source/be/sd/source/ui/slideshow.po
index 1bea970990a..3206b9cdca9 100644
--- a/translations/source/be/sd/source/ui/slideshow.po
+++ b/translations/source/be/sd/source/ui/slideshow.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: slideshow\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sd%2Fsource%2Fui%2Fslideshow.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-12-22 22:58+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sd/source/ui/table.po b/translations/source/be/sd/source/ui/table.po
index 6dcb533841c..4080472ce40 100644
--- a/translations/source/be/sd/source/ui/table.po
+++ b/translations/source/be/sd/source/ui/table.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: table\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sd%2Fsource%2Fui%2Ftable.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sd/source/ui/view.po b/translations/source/be/sd/source/ui/view.po
index c9640825e16..8af2e829590 100644
--- a/translations/source/be/sd/source/ui/view.po
+++ b/translations/source/be/sd/source/ui/view.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: view\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sd%2Fsource%2Fui%2Fview.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sdext/source/minimizer.po b/translations/source/be/sdext/source/minimizer.po
index d4a57e1076f..98b5ea0d52b 100644
--- a/translations/source/be/sdext/source/minimizer.po
+++ b/translations/source/be/sdext/source/minimizer.po
@@ -1,25 +1,26 @@
#. extracted from sdext/source/minimizer.oo
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: minimizer\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sdext%2Fsource%2Fminimizer.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-05 09:58+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: description.xml#dispname.dispname.description.text
msgid "Presentation Minimizer"
-msgstr ""
+msgstr "Памяншальнік прэзентацый"
#: description.xml#extdesc.extdesc.description.text
msgid ""
"The Presentation Minimizer is used to reduce the file size of the current presentation. Images will be compressed, and data that is no longer needed will be removed.\n"
"The Presentation Minimizer can optimize the image quality size. Presentations designed for screen or projector do not require the same high quality as presentations designed for print.\n"
msgstr ""
+"Памяншальнік прэзентацый ужываецца дзеля памяншэння аб'ёму файла прэзентацыі. Выявы будуць сціснутыя, а даныя, якія больш не ўжываюцца, будуць сцёртыя.\n"
+"Памяншальнік прэзентацый можа аптымізаваць аб'ём выяваў згодна з патрэбнай якасцю. У прэзентацыях, прызначаных для праектара або экрана, не патрэбныя такія высокаякасныя выявы, як у друкаваных прэзентацыях.\n"
diff --git a/translations/source/be/sdext/source/minimizer/registry/data/org/openoffice/Office.po b/translations/source/be/sdext/source/minimizer/registry/data/org/openoffice/Office.po
index 776fe530f3f..86131a2e386 100644
--- a/translations/source/be/sdext/source/minimizer/registry/data/org/openoffice/Office.po
+++ b/translations/source/be/sdext/source/minimizer/registry/data/org/openoffice/Office.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: Office\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sdext%2Fsource%2Fminimizer%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po b/translations/source/be/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po
index a024a73b22a..b7c0f11275d 100644
--- a/translations/source/be/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po
+++ b/translations/source/be/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po
@@ -3,21 +3,20 @@ msgid ""
msgstr ""
"Project-Id-Version: extension\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sdext%2Fsource%2Fminimizer%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2Fextension.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-11-24 20:09+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 10:01+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: SunPresentationMinimizer.xcu#.SunPresentationMinimizer.Strings.STR_SUN_OPTIMIZATION_WIZARD2.value.text
msgid "Presentation Minimizer"
-msgstr ""
+msgstr "Памяншальнік прэзентацый"
#: SunPresentationMinimizer.xcu#.SunPresentationMinimizer.Strings.STR_STEPS.value.text
msgid "Steps"
@@ -44,12 +43,13 @@ msgid "Introduction"
msgstr "Уводзіны"
#: SunPresentationMinimizer.xcu#.SunPresentationMinimizer.Strings.STR_INTRODUCTION_T.value.text
+#, fuzzy
msgid "The Presentation Minimizer is used to reduce the file size of the current presentation. Images will be compressed and data, that is no longer needed, will be removed. At the last step of the wizard you can choose to apply the changes to the current presentation or to create an optimized new version of the presentation."
-msgstr ""
+msgstr "The @MINIMIZEREXTENSIONPRODUCTNAME@ is used to reduce the file size of the current presentation. Images will be compressed and data, that is no longer needed, will be removed. At the last step of the wizard you can choose to apply the changes to the current presentation or to create an optimized new version of the presentation."
#: SunPresentationMinimizer.xcu#.SunPresentationMinimizer.Strings.STR_CHOSE_SETTINGS.value.text
msgid "~Choose settings for Presentation Minimizer"
-msgstr ""
+msgstr "Выбар настаўленняў памяншальніка прэзентацый"
#: SunPresentationMinimizer.xcu#.SunPresentationMinimizer.Strings.STR_REMOVE.value.text
msgid "~Delete"
@@ -57,11 +57,11 @@ msgstr "Сцерці"
#: SunPresentationMinimizer.xcu#.SunPresentationMinimizer.Strings.STR_GRAPHIC_OPTIMIZATION.value.text
msgid "Choose settings for optimizing pictures and graphics"
-msgstr "Choose settings for optimizing pictures and graphics"
+msgstr "Настаўленні аптымізацыі рысункаў і растраў"
#: SunPresentationMinimizer.xcu#.SunPresentationMinimizer.Strings.STR_IMAGE_OPTIMIZATION.value.text
msgid "Graphics"
-msgstr "Графіка"
+msgstr "Растры"
#: SunPresentationMinimizer.xcu#.SunPresentationMinimizer.Strings.STR_LOSSLESS_COMPRESSION.value.text
msgid "~Lossless compression"
@@ -125,11 +125,12 @@ msgstr "Для аб'ектаў OLE не на аснове фармату OpenDoc
#: SunPresentationMinimizer.xcu#.SunPresentationMinimizer.Strings.STR_OLE_OBJECTS_DESC.value.text
msgid "Object Linking and Embedding (OLE) is a technology that allows embedding and linking to documents and other objects.The current presentation contains OLE objects."
-msgstr ""
+msgstr "Тэхналогія Object Linking and Embedding (OLE) дазваляе ўключаць дакументы і іншыя аб'екты, або толькі спасылкі на іх. У гэтай прэзентацыі ёсць аб'екты OLE."
#: SunPresentationMinimizer.xcu#.SunPresentationMinimizer.Strings.STR_NO_OLE_OBJECTS_DESC.value.text
+#, fuzzy
msgid "Object Linking and Embedding (OLE) is a technology that allows embedding and linking to documents and other objects.The current presentation contains no OLE objects."
-msgstr ""
+msgstr "Object Linking and Embedding (OLE) is a technology that allows embedding and linking to documents and other objects. The current presentation contains no OLE objects."
#: SunPresentationMinimizer.xcu#.SunPresentationMinimizer.Strings.STR_SLIDES.value.text
msgid "Slides"
diff --git a/translations/source/be/sdext/source/pdfimport.po b/translations/source/be/sdext/source/pdfimport.po
index 25ed3eaf799..8e47dfbf092 100644
--- a/translations/source/be/sdext/source/pdfimport.po
+++ b/translations/source/be/sdext/source/pdfimport.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: pdfimport\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sdext%2Fsource%2Fpdfimport.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-04 19:59+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sdext/source/presenter.po b/translations/source/be/sdext/source/presenter.po
index 5e04a7d902a..7ad1d0a98f3 100644
--- a/translations/source/be/sdext/source/presenter.po
+++ b/translations/source/be/sdext/source/presenter.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: presenter\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sdext%2Fsource%2Fpresenter.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-26 11:07+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po b/translations/source/be/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po
index f0e42643cf5..1dead95c110 100644
--- a/translations/source/be/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po
+++ b/translations/source/be/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: com.sun.PresenterScreen\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sdext%2Fsource%2Fpresenter%2Fhelp%2Fen-US%2Fcom.sun.PresenterScreen.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-01-25 13:02+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po b/translations/source/be/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po
index bdc75c1423e..c79a70d199e 100644
--- a/translations/source/be/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po
+++ b/translations/source/be/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: extension\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sdext%2Fsource%2Fpresenter%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2Fextension.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-01-25 12:59+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/setup_native/source/mac.po b/translations/source/be/setup_native/source/mac.po
index 307e8c24c38..1b3f8bef6cf 100644
--- a/translations/source/be/setup_native/source/mac.po
+++ b/translations/source/be/setup_native/source/mac.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: mac\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+setup_native%2Fsource%2Fmac.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sfx2/source/appl.po b/translations/source/be/sfx2/source/appl.po
index 289cf4d613f..01b816c62f7 100644
--- a/translations/source/be/sfx2/source/appl.po
+++ b/translations/source/be/sfx2/source/appl.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: appl\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fappl.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-10-29 19:06+0300\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 09:11+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -82,7 +81,7 @@ msgstr "%PRODUCTNAME не ўдалося знайсці ў вашай сістэ
#: app.src#MSG_ERR_NO_ABS_URI_REF.errorbox.text
msgid "\"$(ARG1)\" is not an absolute URL that can be passed to an external application to open it."
-msgstr ""
+msgstr "\"$(ARG1)\" гэта не абсалютны URL, які можна даваць на адкрыванне вонкавай праграме."
#: app.src#GID_INTERN.string.text
msgid "Internal"
@@ -351,7 +350,7 @@ msgstr "Графіка"
#: app.src#STR_SFX_FILTERNAME_ALL.string.text
msgid "All files"
-msgstr ""
+msgstr "Усе файлы"
#: app.src#RID_SVXSTR_EDITGRFLINK.string.text
msgid "Link graphics"
@@ -425,6 +424,8 @@ msgid ""
"Copyright © 2000, 2012 LibreOffice contributors and/or their affiliates. All rights\n"
"reserved."
msgstr ""
+"Copyright © 2000, 2012 LibreOffice contributors and/or their affiliates. All rights\n"
+"reserved."
#: app.src#DLG_HELP_LICENSING.STR_LICENSING_INFORMATION_5.string.text
msgid ""
@@ -433,6 +434,10 @@ msgid ""
"%OOOVENDOR acknowledges all community members, please see\n"
"http://www.libreoffice.org/ for more details."
msgstr ""
+"This product was created by %OOOVENDOR, based on OpenOffice.org,\n"
+"which is Copyright 2000, 2011 Oracle and/or its affiliates.\n"
+"%OOOVENDOR acknowledges all community members, please see\n"
+"http://www.libreoffice.org/ for more details."
#: app.src#DLG_HELP_LICENSING.PB_LICENSING_SHOW.okbutton.text
msgid "~Show License"
diff --git a/translations/source/be/sfx2/source/bastyp.po b/translations/source/be/sfx2/source/bastyp.po
index 0c5e3000702..3ead9213e44 100644
--- a/translations/source/be/sfx2/source/bastyp.po
+++ b/translations/source/be/sfx2/source/bastyp.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: bastyp\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fbastyp.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sfx2/source/dialog.po b/translations/source/be/sfx2/source/dialog.po
index 16f40d0c0e3..cae5fab56f3 100644
--- a/translations/source/be/sfx2/source/dialog.po
+++ b/translations/source/be/sfx2/source/dialog.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fdialog.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-01-25 12:59+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sfx2/source/doc.po b/translations/source/be/sfx2/source/doc.po
index a3ef9292542..c0ccf86bb7d 100644
--- a/translations/source/be/sfx2/source/doc.po
+++ b/translations/source/be/sfx2/source/doc.po
@@ -3,16 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: doc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fdoc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-12-22 22:57+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 10:03+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: doctdlg.src#DLG_DOC_TEMPLATE.FL_EDIT.fixedline.text
@@ -198,104 +197,44 @@ msgid "Template Management"
msgstr "Кіраванне шаблонамі"
#: templatelocnames.src#STR_TEMPLATE_NAME1.string.text
-msgid "Blue Border"
-msgstr "Сінія палі"
+msgid "Abstract Green"
+msgstr "Абстрактны зялёны"
#: templatelocnames.src#STR_TEMPLATE_NAME2.string.text
-msgid "Black and White"
-msgstr "Чорнае і белае"
+msgid "Abstract Red"
+msgstr "Абстрактны чырвоны"
#: templatelocnames.src#STR_TEMPLATE_NAME3.string.text
-msgid "Blue and Grey"
-msgstr "Сіняе і шэрае"
+msgid "Abstract Yellow"
+msgstr "Абстрактны жоўты"
#: templatelocnames.src#STR_TEMPLATE_NAME4.string.text
-msgid "Blue Lines and Gradients"
-msgstr "Сінія лініі і градыенты"
+msgid "Bright Blue"
+msgstr "Яркі сіні"
#: templatelocnames.src#STR_TEMPLATE_NAME5.string.text
-msgid "Blue with Bottom Title"
-msgstr "Сіняе, назва знізу"
+msgid "DNA"
+msgstr "ДНК"
#: templatelocnames.src#STR_TEMPLATE_NAME6.string.text
-msgid "Notebook"
-msgstr "Блакнот"
+msgid "Inspiration"
+msgstr "Натхненне"
#: templatelocnames.src#STR_TEMPLATE_NAME7.string.text
-msgid "Brown"
-msgstr "Карычневы"
+msgid "Lush Green"
+msgstr "Сакавіты зялёны"
#: templatelocnames.src#STR_TEMPLATE_NAME8.string.text
-msgid "Characters with Glow"
-msgstr "Знакі і святло"
+msgid "Metropolis"
+msgstr "Метраполія"
#: templatelocnames.src#STR_TEMPLATE_NAME9.string.text
-msgid "Forest"
-msgstr "Лес"
+msgid "Sunset"
+msgstr "Заход сонца"
#: templatelocnames.src#STR_TEMPLATE_NAME10.string.text
-msgid "Fresco"
-msgstr "Фрэска"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME11.string.text
-msgid "Glacier"
-msgstr "Ледавік"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME12.string.text
-msgid "Green with White Lines"
-msgstr "Зялёнае з белымі лініямі"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME13.string.text
-msgid "Keyboard"
-msgstr "Клавіятура"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME14.string.text
-msgid "Light Blue Shapes"
-msgstr "Светла-сінія абрысы"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME15.string.text
-msgid "Numbers on Dark Background"
-msgstr "Лічбы на цёмным фоне"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME16.string.text
-msgid "Blue Step Gradients"
-msgstr "Сінія пакрокавыя градыенты"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME17.string.text
-msgid "White Blue and Lightnings"
-msgstr "Сіняе, белае і маланкі"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME18.string.text
-msgid "Noise Paper"
-msgstr "Старая* папера"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME19.string.text
-msgid "Red Noise Shapes"
-msgstr "Абрысы чырвонага шуму*"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME20.string.text
-msgid "Rounded Rectangles"
-msgstr "Скругленыя прамавугольнікі"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME21.string.text
-msgid "Blue and Red Gradient"
-msgstr "Сіне-чырвоны градыент"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME22.string.text
-msgid "Technical Polygon"
-msgstr "Тэхнічны шматвугольнік"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME23.string.text
-msgid "Tunnel"
-msgstr "Тунэль"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME24.string.text
-msgid "Water"
-msgstr "Вадзяны"
-
-#: templatelocnames.src#STR_TEMPLATE_NAME25.string.text
-msgid "Wine"
-msgstr "Віно"
+msgid "Vintage"
+msgstr "Рэтра"
#: doc.src#MSG_CONFIRM_FILTER.querybox.text
msgid ""
diff --git a/translations/source/be/sfx2/source/menu.po b/translations/source/be/sfx2/source/menu.po
index 1a4876fb4c9..1786fdd442c 100644
--- a/translations/source/be/sfx2/source/menu.po
+++ b/translations/source/be/sfx2/source/menu.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: menu\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fmenu.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sfx2/source/view.po b/translations/source/be/sfx2/source/view.po
index 013851d0e56..22f6bd36d63 100644
--- a/translations/source/be/sfx2/source/view.po
+++ b/translations/source/be/sfx2/source/view.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: view\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sfx2%2Fsource%2Fview.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-29 19:06+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/shell/source/win32/shlxthandler/res.po b/translations/source/be/shell/source/win32/shlxthandler/res.po
index 686dfc2a6d7..49146d8343a 100644
--- a/translations/source/be/shell/source/win32/shlxthandler/res.po
+++ b/translations/source/be/shell/source/win32/shlxthandler/res.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: res\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+shell%2Fsource%2Fwin32%2Fshlxthandler%2Fres.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-22 17:16+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/starmath/source.po b/translations/source/be/starmath/source.po
index 29b7f0be496..db38b375ef9 100644
--- a/translations/source/be/starmath/source.po
+++ b/translations/source/be/starmath/source.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: source\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+starmath%2Fsource.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2011-11-26 11:02+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-04 09:08+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -31,7 +30,7 @@ msgstr "Курсіў"
#: smres.src#RID_FONTDIALOG.1.helpbutton.text
msgctxt "smres.src#RID_FONTDIALOG.1.helpbutton.text"
msgid "~Help"
-msgstr ""
+msgstr "Даведка"
#: smres.src#RID_FONTDIALOG.2.fixedtext.text
msgctxt "smres.src#RID_FONTDIALOG.2.fixedtext.text"
@@ -76,7 +75,7 @@ msgstr "Адносныя памеры"
#: smres.src#RID_FONTSIZEDIALOG.1.helpbutton.text
msgctxt "smres.src#RID_FONTSIZEDIALOG.1.helpbutton.text"
msgid "~Help"
-msgstr ""
+msgstr "Даведка"
#: smres.src#RID_FONTSIZEDIALOG.1.pushbutton.text
msgctxt "smres.src#RID_FONTSIZEDIALOG.1.pushbutton.text"
@@ -133,7 +132,7 @@ msgstr "Правіць"
#: smres.src#RID_FONTTYPEDIALOG.1.helpbutton.text
msgctxt "smres.src#RID_FONTTYPEDIALOG.1.helpbutton.text"
msgid "~Help"
-msgstr ""
+msgstr "Даведка"
#: smres.src#RID_FONTTYPEDIALOG.2.pushbutton.text
msgctxt "smres.src#RID_FONTTYPEDIALOG.2.pushbutton.text"
@@ -167,7 +166,7 @@ msgstr "%"
#: smres.src#RID_DISTANCEDIALOG.1.helpbutton.text
msgctxt "smres.src#RID_DISTANCEDIALOG.1.helpbutton.text"
msgid "~Help"
-msgstr ""
+msgstr "Даведка"
#: smres.src#RID_DISTANCEDIALOG.1.pushbutton.text
msgctxt "smres.src#RID_DISTANCEDIALOG.1.pushbutton.text"
@@ -361,7 +360,7 @@ msgstr "Гарызантальна"
#: smres.src#RID_ALIGNDIALOG.1.helpbutton.text
msgctxt "smres.src#RID_ALIGNDIALOG.1.helpbutton.text"
msgid "~Help"
-msgstr ""
+msgstr "Даведка"
#: smres.src#RID_ALIGNDIALOG.1.pushbutton.text
msgctxt "smres.src#RID_ALIGNDIALOG.1.pushbutton.text"
@@ -447,7 +446,7 @@ msgstr "Правіць..."
#: smres.src#RID_SYMBOLDIALOG.1.helpbutton.text
msgctxt "smres.src#RID_SYMBOLDIALOG.1.helpbutton.text"
msgid "~Help"
-msgstr ""
+msgstr "Даведка"
#: smres.src#RID_SYMBOLDIALOG.modaldialog.text
msgctxt "smres.src#RID_SYMBOLDIALOG.modaldialog.text"
@@ -499,7 +498,7 @@ msgstr "Сцерці"
#: smres.src#RID_SYMDEFINEDIALOG.1.helpbutton.text
msgctxt "smres.src#RID_SYMDEFINEDIALOG.1.helpbutton.text"
msgid "~Help"
-msgstr ""
+msgstr "Даведка"
#: smres.src#RID_SYMDEFINEDIALOG.modaldialog.text
msgid "Edit Symbols"
@@ -668,7 +667,7 @@ msgstr "Сімвальныя файлы (*.sms)"
#: smres.src#RID_ALLFILESSTR.string.text
msgid "All files"
-msgstr ""
+msgstr "Усе файлы"
#: smres.src#RID_ERR_IDENT.string.text
msgid "ERROR : "
diff --git a/translations/source/be/svl/source/items.po b/translations/source/be/svl/source/items.po
index 981415374f7..7c334ad8f2f 100644
--- a/translations/source/be/svl/source/items.po
+++ b/translations/source/be/svl/source/items.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: items\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svl%2Fsource%2Fitems.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svl/source/misc.po b/translations/source/be/svl/source/misc.po
index 4b133a9840d..c9136ff2418 100644
--- a/translations/source/be/svl/source/misc.po
+++ b/translations/source/be/svl/source/misc.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svl%2Fsource%2Fmisc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-04 19:45+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svtools/source/contnr.po b/translations/source/be/svtools/source/contnr.po
index f2df2a2f7a2..9bcc56f9064 100644
--- a/translations/source/be/svtools/source/contnr.po
+++ b/translations/source/be/svtools/source/contnr.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: contnr\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Fcontnr.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-06 22:06+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svtools/source/control.po b/translations/source/be/svtools/source/control.po
index 94f5458cc7d..288db279889 100644
--- a/translations/source/be/svtools/source/control.po
+++ b/translations/source/be/svtools/source/control.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: control\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Fcontrol.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svtools/source/dialogs.po b/translations/source/be/svtools/source/dialogs.po
index 733860f89ba..cd13bb63f0c 100644
--- a/translations/source/be/svtools/source/dialogs.po
+++ b/translations/source/be/svtools/source/dialogs.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -719,66 +718,6 @@ msgstr "Не ўдалося адкрыць файл."
msgid "$(ERR) activating object"
msgstr "$(ERR) пры актывацыі аб'екту"
-#: so3res.src#STR_INS_OBJECT.string.text
-msgid "Inserts a new %1-Object into your document."
-msgstr "Устаўляе новы %1-аб'ект у ваш дакумент."
-
-#: so3res.src#STR_INS_OBJECT_ICON.string.text
-msgid "Inserts a new %1-Object into your document as a symbol."
-msgstr "Устаўляе новы %1-аб'ект як сімвал у ваш дакумент."
-
-#: so3res.src#STR_INS_FILE.string.text
-msgid "Inserts the contents of the file into your document to enable later editing in the original application."
-msgstr "Устаўляе змесціва файла ў ваш дакумент, захоўваючы магчымасць паправіць змесціва пазней."
-
-#: so3res.src#STR_INS_PLUGIN.string.text
-msgid "Inserts a plug-in object into your document with a reference to the plug-in data. When the object is activated, the plug-in is automatically executed."
-msgstr "Устаўляе плугін як аб'ект у ваш дакумент, захоўваючы спасылку на даныя ў фармаце плугіна. Калі аб'ект актывуецца, аўтаматычна выконваецца плугін."
-
-#: so3res.src#STR_INS_APPLET.string.text
-msgid "Inserts an applet object into your document. When the object is activated, the applet is automatically executed."
-msgstr "Устаўляе аплет як аб'ект у ваш дакумент. Калі аб'ект актывуецца, аўтаматычна выконваецца аплет."
-
-#: so3res.src#STR_INS_FILE_ICON.string.text
-msgid "Inserts the contents of the file as an icon into your document."
-msgstr "Устаўляе змесціва файла у выглядзе значка ў ваш дакумент."
-
-#: so3res.src#STR_INS_FILE_LINK.string.text
-msgid "Inserts the contents of the file into your document and creates a link to the source file. Changes made to the source file will be reflected in your document."
-msgstr "Устаўляе змесціва файла ў ваш дакумент, захоўваючы спасылку на выточны файл. Папраўкі ў выточным файле будуць аўтаматычна адлюстроўвацца ў вашым дакуменце."
-
-#: so3res.src#STR_INS_FILE_ICON_LINK.string.text
-msgid "Inserts an icon into your document representing the file. Changes made to the source file will be reflected in your document."
-msgstr "Устаўляе змесціва файла як значок у ваш дакумент. Папраўкі ў выточным файле будуць аўтаматычна адлюстроўвацца ў вашым дакуменце."
-
-#: so3res.src#STR_PASTE.string.text
-msgid "Pastes the contents of the clipboard as %1 in your document."
-msgstr "Устаўляе змесціва Абменніка як %1 у ваш дакумент."
-
-#: so3res.src#STR_CONVERT_TO.string.text
-msgid "Converts the selected %1object to the object type %2."
-msgstr "Ператварае пазначаны аб'ект %1 у аб'ект тыпу %2."
-
-#: so3res.src#STR_ACTIVATE_AS.string.text
-msgid "All objects of type %1 are activated as %2, but not converted"
-msgstr "Усе аб'екты тыпу %1 актывуюцца як %2, але не ператвараюцца"
-
-#: so3res.src#STR_VERB_OPEN.string.text
-msgid "~Open"
-msgstr "Адкрыць"
-
-#: so3res.src#STR_VERB_PROPS.string.text
-msgid "~Properties"
-msgstr "Уласцівасці"
-
-#: so3res.src#STR_PLUGIN_CANT_SHOW.string.text
-msgid "Plug-in % cannot be displayed."
-msgstr "Немагчыма паказаць плугін % ."
-
-#: so3res.src#STR_ERROR_DDE.string.text
-msgid "DDE link to % for % area % are not available."
-msgstr "Няма ў наяўнасці DDE спасылкі з мэтаю % дзеля % абсяг %."
-
#: so3res.src#STR_ERROR_OBJNOCREATE.string.text
msgid "Object % could not be inserted."
msgstr "Не ўдалося ўставіць аб'ект % ."
@@ -791,18 +730,10 @@ msgstr "Не ўдалося ўставіць аб'ект з файлу % ."
msgid "Plug-in from document % could not be inserted."
msgstr "Не ўдалося ўставіць плугін з дакументу % ."
-#: so3res.src#STR_QUERYUPDATELINKS.string.text
-msgid "Update all links?"
-msgstr "Абнавіць усе спасылкі?"
-
#: so3res.src#STR_FURTHER_OBJECT.string.text
msgid "Further objects"
msgstr "Аб'екты ў далейшым"
-#: so3res.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "Правіць аплет"
-
#: so3res.src#MI_PLUGIN.MI_PLUGIN_DEACTIVATE.menuitem.text
msgid "Deactivate"
msgstr "Не актыўна"
diff --git a/translations/source/be/svtools/source/filter.po b/translations/source/be/svtools/source/filter.po
index 5139e8bc5ef..f8cc3edbd0d 100644
--- a/translations/source/be/svtools/source/filter.po
+++ b/translations/source/be/svtools/source/filter.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: filter\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Ffilter.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 12:51+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svtools/source/java.po b/translations/source/be/svtools/source/java.po
index 06a33011424..a0621410155 100644
--- a/translations/source/be/svtools/source/java.po
+++ b/translations/source/be/svtools/source/java.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: java\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Fjava.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-11-04 19:32+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 09:08+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -17,23 +16,23 @@ msgstr ""
#: javaerror.src#WARNINGBOX_JAVANOTFOUND.warningbox.text
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
-msgstr "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
+msgstr "Каб зрабіць гэта, %PRODUCTNAME патрабуе асяроддзя выканання Явы (JRE). Устанавіце JRE і пусціце %PRODUCTNAME нанова."
#: javaerror.src#WARNINGBOX_INVALIDJAVASETTINGS_MAC.warningbox.text
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Java, select the Java runtime environment you want to have used by %PRODUCTNAME."
-msgstr ""
+msgstr "Канфігурацыя %PRODUCTNAME была зменена. У %PRODUCTNAME - Настаўленні - %PRODUCTNAME - Ява выберыце тое асяроддзе выканання Явы, якім жадаеце карыстацца ў %PRODUCTNAME."
#: javaerror.src#WARNINGBOX_INVALIDJAVASETTINGS.warningbox.text
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Java, select the Java runtime environment you want to have used by %PRODUCTNAME."
-msgstr "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Java, select the Java runtime environment you want to have used by %PRODUCTNAME."
+msgstr "Настаўленні %PRODUCTNAME былі зменены. У пункце 'Прылады - Настаўленні - %PRODUCTNAME - Ява' выберыце тое асяроддзе Java, якім хочаце карыстацца ў %PRODUCTNAME."
#: javaerror.src#QBX_JAVADISABLED.querybox.text
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. However, use of a JRE has been disabled. Do you want to enable the use of a JRE now?"
-msgstr "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. However, use of a JRE has been disabled. Do you want to enable the use of a JRE now?"
+msgstr "Дзеля выканання гэтай задачы ў %PRODUCTNAME патрабуецца асяроддзе выканання Явы (JRE). Але ўжыванне JRE не дазволена ў настаўленнях. Ці хочаце дазволіць ужыванне JRE?"
#: javaerror.src#ERRORBOX_JVMCREATIONFAILED_MAC.errorbox.text
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Java."
-msgstr ""
+msgstr "Каб зрабіць гэта, для %PRODUCTNAME патрабуецца ўстаноўленае асяроддзе выканання Явы (JRE). Выбранае асяроддзе пашкоджана. Выберыце іншае або пастаўце новае, тады выберыце яго ў пункце %PRODUCTNAME - Настаўленні - %PRODUCTNAME - Ява."
#: javaerror.src#ERRORBOX_JVMCREATIONFAILED.errorbox.text
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Java."
@@ -41,24 +40,24 @@ msgstr "Каб выканаць гэтае дзеянне, для %PRODUCTNAME
#: javaerror.src#ERRORBOX_RESTARTREQUIRED.errorbox.text
msgid "For the selected Java runtime environment to work properly, %PRODUCTNAME must be restarted. Please restart %PRODUCTNAME now."
-msgstr "For the selected Java runtime environment to work properly, %PRODUCTNAME must be restarted. Please restart %PRODUCTNAME now."
+msgstr "Дзеля таго, каб абранае асяроддзе Java працавала як належыць, патрабуецца пусціць %PRODUCTNAME нанова."
#: javaerror.src#STR_WARNING_JAVANOTFOUND.string.text
msgid "JRE Required"
-msgstr "JRE Required"
+msgstr "Патрабуецца асяроддзе выканання Явы (JRE)"
#: javaerror.src#STR_WARNING_INVALIDJAVASETTINGS.string.text
msgid "Select JRE"
-msgstr "Select JRE"
+msgstr "Выбар JRE"
#: javaerror.src#STR_ERROR_RESTARTREQUIRED.string.text
msgid "Restart Required"
-msgstr "Restart Required"
+msgstr "Патрэбны паўторны пуск"
#: javaerror.src#STR_QUESTION_JAVADISABLED.string.text
msgid "Enable JRE"
-msgstr "Enable JRE"
+msgstr "Дазволіць JRE"
#: javaerror.src#STR_ERROR_JVMCREATIONFAILED.string.text
msgid "JRE is Defective"
-msgstr "JRE is Defective"
+msgstr "JRE не працуе як належыць"
diff --git a/translations/source/be/svtools/source/misc.po b/translations/source/be/svtools/source/misc.po
index 9a1594ba141..3f5ebe6688b 100644
--- a/translations/source/be/svtools/source/misc.po
+++ b/translations/source/be/svtools/source/misc.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Fmisc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 09:00+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -525,7 +524,7 @@ msgstr "Sindhi"
#: langtab.src#STR_ARR_SVT_LANGUAGE_TABLE.LANGUAGE_SLOVAK.pairedlist.text
msgid "Slovak"
-msgstr ""
+msgstr "Славацкая"
#: langtab.src#STR_ARR_SVT_LANGUAGE_TABLE.LANGUAGE_SLOVENIAN.pairedlist.text
msgid "Slovenian"
@@ -1237,32 +1236,31 @@ msgstr "Палі-лаціна*"
#: langtab.src#STR_ARR_SVT_LANGUAGE_TABLE.LANGUAGE_USER_KYRGYZ_CHINA.pairedlist.text
msgid "Kyrgyz (China)"
-msgstr ""
+msgstr "Кіргізская (Кітай)"
#: langtab.src#STR_ARR_SVT_LANGUAGE_TABLE.LANGUAGE_USER_KOMI_ZYRIAN.pairedlist.text
msgid "Komi-Zyrian"
-msgstr ""
+msgstr "Комі-зыранская"
#: langtab.src#STR_ARR_SVT_LANGUAGE_TABLE.LANGUAGE_USER_KOMI_PERMYAK.pairedlist.text
msgid "Komi-Permyak"
-msgstr ""
+msgstr "Комі-пярмяцкая"
#: langtab.src#STR_ARR_SVT_LANGUAGE_TABLE.LANGUAGE_USER_PITJANTJATJARA.pairedlist.text
msgid "Pitjantjatjara"
-msgstr ""
+msgstr "Пічанчачара*"
#: langtab.src#STR_ARR_SVT_LANGUAGE_TABLE.LANGUAGE_USER_ENGLISH_MALAWI.pairedlist.text
-#, fuzzy
msgid "English (Malawi)"
-msgstr "Англійская (Канада)"
+msgstr "Англійская (Малаві)"
#: langtab.src#STR_ARR_SVT_LANGUAGE_TABLE.LANGUAGE_USER_ERZYA.pairedlist.text
msgid "Erzya"
-msgstr ""
+msgstr "Эрзія"
#: langtab.src#STR_ARR_SVT_LANGUAGE_TABLE.LANGUAGE_USER_MARI_MEADOW.pairedlist.text
msgid "Mari, Meadow"
-msgstr ""
+msgstr "Марыйская нізінная*"
#: undo.src#STR_UNDO.string.text
msgid "Undo: "
diff --git a/translations/source/be/svtools/source/toolpanel.po b/translations/source/be/svtools/source/toolpanel.po
index 6d7d04cf19e..8d1b8132aaa 100644
--- a/translations/source/be/svtools/source/toolpanel.po
+++ b/translations/source/be/svtools/source/toolpanel.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: toolpanel\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fsource%2Ftoolpanel.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svtools/workben/unodialog.po b/translations/source/be/svtools/workben/unodialog.po
index c33103dc8c2..072331874b3 100644
--- a/translations/source/be/svtools/workben/unodialog.po
+++ b/translations/source/be/svtools/workben/unodialog.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: unodialog\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svtools%2Fworkben%2Funodialog.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-29 19:02+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/inc.po b/translations/source/be/svx/inc.po
index 9bfd54dc5ce..e81a53ff328 100644
--- a/translations/source/be/svx/inc.po
+++ b/translations/source/be/svx/inc.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: inc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Finc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-08 13:12+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/source/accessibility.po b/translations/source/be/svx/source/accessibility.po
index df9559c54c9..c49ce266cdb 100644
--- a/translations/source/be/svx/source/accessibility.po
+++ b/translations/source/be/svx/source/accessibility.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: accessibility\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Faccessibility.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/source/dialog.po b/translations/source/be/svx/source/dialog.po
index 719d11efc44..8dfb643e2a1 100644
--- a/translations/source/be/svx/source/dialog.po
+++ b/translations/source/be/svx/source/dialog.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Fdialog.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-04 19:26+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/source/engine3d.po b/translations/source/be/svx/source/engine3d.po
index 9cb2a29c2b9..813ab41f39a 100644
--- a/translations/source/be/svx/source/engine3d.po
+++ b/translations/source/be/svx/source/engine3d.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: engine3d\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Fengine3d.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/source/fmcomp.po b/translations/source/be/svx/source/fmcomp.po
index 0509344cbd4..001e31cb454 100644
--- a/translations/source/be/svx/source/fmcomp.po
+++ b/translations/source/be/svx/source/fmcomp.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: fmcomp\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Ffmcomp.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/source/form.po b/translations/source/be/svx/source/form.po
index 01f7ec2fde4..a3d5127b029 100644
--- a/translations/source/be/svx/source/form.po
+++ b/translations/source/be/svx/source/form.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: form\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Fform.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/source/gallery2.po b/translations/source/be/svx/source/gallery2.po
index 1c0ca182b25..e06cdfe9872 100644
--- a/translations/source/be/svx/source/gallery2.po
+++ b/translations/source/be/svx/source/gallery2.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: gallery2\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Fgallery2.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-06 22:06+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/source/items.po b/translations/source/be/svx/source/items.po
index b8b4866c8b4..d7b70580920 100644
--- a/translations/source/be/svx/source/items.po
+++ b/translations/source/be/svx/source/items.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: items\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Fitems.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-29 19:06+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/source/src.po b/translations/source/be/svx/source/src.po
index 7df8a553c6f..456fddd85eb 100644
--- a/translations/source/be/svx/source/src.po
+++ b/translations/source/be/svx/source/src.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Fsrc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-10-20 23:32+0300\n"
-"Last-Translator: Yury Tarasievich\n"
-"Language-Team: <en@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-04 08:40+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -494,6 +493,11 @@ msgid ""
"\n"
"Therefore, some functionality may not be available."
msgstr ""
+"Дакумент утрымлівае макрасы.\n"
+"\n"
+"Макрасы могуць утрымліваць вірусы. Выкананне макрасаў не дазволена згодна з актуальным настаўленнем бяспекі у %PRODUCTNAME - Настаўленні - %PRODUCTNAME - Бяспека.\n"
+"\n"
+"Таму некаторыя магчымасці дакументаў могуць выявіцца недаступнымі."
#: errtxt.src#RID_ERRHDL.ERRCODE_SFX_DOCUMENT_MACRO_DISABLED.string.text
msgid ""
diff --git a/translations/source/be/svx/source/stbctrls.po b/translations/source/be/svx/source/stbctrls.po
index a6edab25842..234384f20a0 100644
--- a/translations/source/be/svx/source/stbctrls.po
+++ b/translations/source/be/svx/source/stbctrls.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: stbctrls\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Fstbctrls.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-25 12:58+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-04 08:48+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -17,32 +16,32 @@ msgstr ""
#: stbctrls.src#RID_SVXSTR_INSERT_HELPTEXT.string.text
msgid "Insert mode."
-msgstr ""
+msgstr "Устаўлянне"
#: stbctrls.src#RID_SVXSTR_OVERWRITE_HELPTEXT.string.text
msgid "Overwrite mode, text will be overwritten when typing."
-msgstr ""
+msgstr "Пісанне паўзверх, былы тэкст замяшчаецца новым."
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
#: stbctrls.src#RID_SVXSTR_OVERWRITE_TEXT.string.text
msgid "Overwrite"
-msgstr ""
+msgstr "Паўзверх"
#: stbctrls.src#RID_SVXMENU_SELECTION.SELECTION_STANDARD.menuitem.text
msgid "Standard selection"
-msgstr ""
+msgstr "Звычайнае пазначэнне"
#: stbctrls.src#RID_SVXMENU_SELECTION.SELECTION_EXTENDED.menuitem.text
msgid "Extending selection"
-msgstr ""
+msgstr "Пазначэнне з працягам"
#: stbctrls.src#RID_SVXMENU_SELECTION.SELECTION_ADDED.menuitem.text
msgid "Adding selection"
-msgstr ""
+msgstr "Пазначэнне з дадаваннем"
#: stbctrls.src#RID_SVXMENU_SELECTION.SELECTION_BLOCK.menuitem.text
msgid "Block selection"
-msgstr ""
+msgstr "Блокавае пазначэнне"
#: stbctrls.src#RID_SVXSTR_XMLSEC_SIG_OK.string.text
msgid "Digital Signature: The document signature is OK."
@@ -50,7 +49,7 @@ msgstr "Лічбавы подпіс: подпіс дакумента ў пара
#: stbctrls.src#RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY.string.text
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
-msgstr "Лічбавы подпіс: подпіс дакумента ў парадку, але сертыфікаты не паддаюцца спраўджанню."
+msgstr "Лічбавы подпіс: подпіс дакумента ў парадку, але сертыфікаты не паддаюцца праверцы."
#: stbctrls.src#RID_SVXSTR_XMLSEC_SIG_NOT_OK.string.text
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you to do not trust this document."
@@ -62,15 +61,15 @@ msgstr "Лічбавы подпіс: дакумент не ўтрымлівае
#: stbctrls.src#RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG.string.text
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
-msgstr "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
+msgstr "Лічбавы подпіс: подпіс дакумента і сертыфікат у парадку, але падпісаныя не ўсе часткі дакумента."
#: stbctrls.src#RID_SVXSTR_DOC_MODIFIED_YES.string.text
msgid "The document has been modified. Double-click to save the document."
-msgstr "The document has been modified. Double-click to save the document."
+msgstr "Дакумент быў зменены. Падвойны клік запісвае дакумент."
#: stbctrls.src#RID_SVXSTR_DOC_MODIFIED_NO.string.text
msgid "The document has not been modified since the last save."
-msgstr "The document has not been modified since the last save."
+msgstr "Дакумент не мяняўся з моманту апошняга замацоўвання."
#: stbctrls.src#RID_SVXSTR_DOC_LOAD.string.text
msgid "Loading document..."
@@ -78,7 +77,7 @@ msgstr "Чытаем дакумент..."
#: stbctrls.src#RID_SVXMNU_ZOOM.ZOOM_OPTIMAL.menuitem.text
msgid "Optimal"
-msgstr "Optimal"
+msgstr "Аптымальна"
#: stbctrls.src#RID_SVXMNU_ZOOM.ZOOM_PAGE_WIDTH.menuitem.text
msgid "Page Width"
@@ -86,7 +85,7 @@ msgstr "Шырыня старонкі"
#: stbctrls.src#RID_SVXMNU_ZOOM.ZOOM_WHOLE_PAGE.menuitem.text
msgid "Entire Page"
-msgstr "Entire Page"
+msgstr "Старонка цалкам"
#: stbctrls.src#RID_SVXMNU_PSZ_FUNC.PSZ_FUNC_AVG.menuitem.text
msgid "Average"
diff --git a/translations/source/be/svx/source/svdraw.po b/translations/source/be/svx/source/svdraw.po
index 5e2c0ccffd8..3d4150f316c 100644
--- a/translations/source/be/svx/source/svdraw.po
+++ b/translations/source/be/svx/source/svdraw.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: svdraw\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Fsvdraw.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/source/table.po b/translations/source/be/svx/source/table.po
index 48b57af5447..8bea42a9446 100644
--- a/translations/source/be/svx/source/table.po
+++ b/translations/source/be/svx/source/table.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: table\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Ftable.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/source/tbxctrls.po b/translations/source/be/svx/source/tbxctrls.po
index 899992452a8..5caf2e9d6ba 100644
--- a/translations/source/be/svx/source/tbxctrls.po
+++ b/translations/source/be/svx/source/tbxctrls.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: tbxctrls\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Ftbxctrls.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/source/toolbars.po b/translations/source/be/svx/source/toolbars.po
index 8a5a0a91c52..2e6e54c5dfe 100644
--- a/translations/source/be/svx/source/toolbars.po
+++ b/translations/source/be/svx/source/toolbars.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: toolbars\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Ftoolbars.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/svx/source/unodialogs/textconversiondlgs.po b/translations/source/be/svx/source/unodialogs/textconversiondlgs.po
index df3ffdf6aa0..722d16441c0 100644
--- a/translations/source/be/svx/source/unodialogs/textconversiondlgs.po
+++ b/translations/source/be/svx/source/unodialogs/textconversiondlgs.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: textconversiondlgs\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+svx%2Fsource%2Funodialogs%2Ftextconversiondlgs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/core/layout.po b/translations/source/be/sw/source/core/layout.po
index 968b8e9c4ec..f3ddaaa1bc2 100644
--- a/translations/source/be/sw/source/core/layout.po
+++ b/translations/source/be/sw/source/core/layout.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: layout\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fcore%2Flayout.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-04 19:22+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/core/undo.po b/translations/source/be/sw/source/core/undo.po
index fa02156c52f..5ab9b59352a 100644
--- a/translations/source/be/sw/source/core/undo.po
+++ b/translations/source/be/sw/source/core/undo.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: undo\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fcore%2Fundo.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-11-04 19:21+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/core/unocore.po b/translations/source/be/sw/source/core/unocore.po
index cc5482c2b13..293eb9c043e 100644
--- a/translations/source/be/sw/source/core/unocore.po
+++ b/translations/source/be/sw/source/core/unocore.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: unocore\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fcore%2Funocore.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/app.po b/translations/source/be/sw/source/ui/app.po
index 347091b8db9..db1eaa89e29 100644
--- a/translations/source/be/sw/source/ui/app.po
+++ b/translations/source/be/sw/source/ui/app.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: app\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fapp.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 08:49+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -948,11 +947,11 @@ msgstr "Нумарацыя структуры"
#: app.src#STR_STATUSBAR_WORDCOUNT_NO_SELECTION.string.text
msgid "Words: $1"
-msgstr ""
+msgstr "Словы: $1"
#: app.src#STR_STATUSBAR_WORDCOUNT.string.text
msgid "Words: $1 Selected: $2"
-msgstr ""
+msgstr "Словы: $1 Пазначаныя: $2"
#: app.src#MSG_DISABLE_READLINE_QUESTION.warningbox.text
msgid "In the current document, changes are being recorded but not shown as such. In large documents, delays can occur when the document is edited. Do you want to show the changes to avoid delays?"
diff --git a/translations/source/be/sw/source/ui/chrdlg.po b/translations/source/be/sw/source/ui/chrdlg.po
index e1e215f4a61..09f57a5d390 100644
--- a/translations/source/be/sw/source/ui/chrdlg.po
+++ b/translations/source/be/sw/source/ui/chrdlg.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: chrdlg\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fchrdlg.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-26 10:57+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/config.po b/translations/source/be/sw/source/ui/config.po
index 4f6d1ad61a1..365c06b54a3 100644
--- a/translations/source/be/sw/source/ui/config.po
+++ b/translations/source/be/sw/source/ui/config.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: config\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fconfig.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 08:57+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -336,7 +335,7 @@ msgstr "<няма>"
#: optdlg.src#TP_STD_FONT.FL_STDCHR.fixedline.text
msgid "Basic fonts (%1)"
-msgstr ""
+msgstr "Базавыя шрыфты (%1)"
#: optdlg.src#TP_STD_FONT.FT_TYPE.fixedtext.text
msgid "Font"
@@ -351,16 +350,14 @@ msgid "De~fault"
msgstr "Прадвызначана"
#: optdlg.src#TP_STD_FONT.FT_TITLE.fixedtext.text
-#, fuzzy
msgid "Headin~g"
msgstr "Загаловак"
#: optdlg.src#TP_STD_FONT.FT_LIST.fixedtext.text
msgid "~List"
-msgstr ""
+msgstr "Спіс"
#: optdlg.src#TP_STD_FONT.FT_LABEL.fixedtext.text
-#, fuzzy
msgid "C~aption"
msgstr "Подпіс"
@@ -370,7 +367,7 @@ msgstr "Індэкс"
#: optdlg.src#TP_STD_FONT.CB_DOCONLY.checkbox.text
msgid "C~urrent document only"
-msgstr ""
+msgstr "Толькі ў актыўным дакуменце"
#: optdlg.src#TP_STD_FONT.PB_STANDARD.pushbutton.text
msgid "~Default"
@@ -697,19 +694,19 @@ msgstr "Пазначанае"
#: optdlg.src#TP_COMPARISON_OPT.FL_CMP.fixedline.text
msgid "Compare documents"
-msgstr ""
+msgstr "Параўнаць дакументы"
#: optdlg.src#TP_COMPARISON_OPT.RB_AUTO.radiobutton.text
msgid "~Auto"
-msgstr ""
+msgstr "Аўтаматычна"
#: optdlg.src#TP_COMPARISON_OPT.RB_WORD.radiobutton.text
msgid "By ~word"
-msgstr ""
+msgstr "Слова са словам"
#: optdlg.src#TP_COMPARISON_OPT.RB_CHAR.radiobutton.text
msgid "By ~character"
-msgstr ""
+msgstr "Знак са знакам"
#: optdlg.src#TP_COMPARISON_OPT.FL_SET.fixedline.text
msgctxt "optdlg.src#TP_COMPARISON_OPT.FL_SET.fixedline.text"
@@ -718,11 +715,11 @@ msgstr "Настаўленні"
#: optdlg.src#TP_COMPARISON_OPT.CB_RSID.checkbox.text
msgid "Use ~RSID"
-msgstr ""
+msgstr "Ужыць ~RSID"
#: optdlg.src#TP_COMPARISON_OPT.CB_IGNORE.checkbox.text
msgid "Ignore ~pieces of length"
-msgstr ""
+msgstr "Не ўлічваць часткі даўжынёй"
#: optcomp.src#TP_OPTCOMPATIBILITY_PAGE.FL_MAIN.fixedline.text
msgid "Compatibility options for %DOCNAME"
diff --git a/translations/source/be/sw/source/ui/dbui.po b/translations/source/be/sw/source/ui/dbui.po
index 4679035c811..aa8e8b2e4f6 100644
--- a/translations/source/be/sw/source/ui/dbui.po
+++ b/translations/source/be/sw/source/ui/dbui.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dbui\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fdbui.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2011-11-04 19:17+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 08:52+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -1244,7 +1243,7 @@ msgstr " яшчэ без адпаведнасці "
#: dbui.src#STR_FILTER_ALL.string.text
msgid "All files"
-msgstr ""
+msgstr "Усе файлы"
#: dbui.src#STR_FILTER_ALL_DATA.string.text
msgid "Address lists(*.*)"
diff --git a/translations/source/be/sw/source/ui/dialog.po b/translations/source/be/sw/source/ui/dialog.po
index 8766018ad8a..f4968d81ac9 100644
--- a/translations/source/be/sw/source/ui/dialog.po
+++ b/translations/source/be/sw/source/ui/dialog.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fdialog.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2012-01-25 12:57+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/dochdl.po b/translations/source/be/sw/source/ui/dochdl.po
index 2cdc8bd564f..bac8c682fcb 100644
--- a/translations/source/be/sw/source/ui/dochdl.po
+++ b/translations/source/be/sw/source/ui/dochdl.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dochdl\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fdochdl.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/docvw.po b/translations/source/be/sw/source/ui/docvw.po
index 5abe221ec97..109c18fd396 100644
--- a/translations/source/be/sw/source/ui/docvw.po
+++ b/translations/source/be/sw/source/ui/docvw.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: docvw\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fdocvw.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-01-25 12:56+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/envelp.po b/translations/source/be/sw/source/ui/envelp.po
index b83de60d1d7..2826d0edf62 100644
--- a/translations/source/be/sw/source/ui/envelp.po
+++ b/translations/source/be/sw/source/ui/envelp.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: envelp\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fenvelp.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-10-29 19:02+0300\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-04 08:52+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -594,11 +593,11 @@ msgstr "Радкі"
#: labfmt.src#TP_LAB_FMT.TXT_PWIDTH.fixedtext.text
msgid "P~age Width"
-msgstr ""
+msgstr "Шырыня старонкі"
#: labfmt.src#TP_LAB_FMT.TXT_PHEIGHT.fixedtext.text
msgid "Pa~ge Height"
-msgstr ""
+msgstr "Вышыня старонкі"
#: labfmt.src#TP_LAB_FMT.PB_SAVE.pushbutton.text
msgid "~Save..."
@@ -638,11 +637,11 @@ msgstr "Радкі"
#: labfmt.src#STR_PWIDTH.string.text
msgid "Page Width"
-msgstr ""
+msgstr "Шырыня старонкі"
#: labfmt.src#STR_PHEIGHT.string.text
msgid "Page Height"
-msgstr ""
+msgstr "Вышыня старонкі"
#: labfmt.src#DLG_SAVE_LABEL.FT_MAKE.fixedtext.text
msgctxt "labfmt.src#DLG_SAVE_LABEL.FT_MAKE.fixedtext.text"
diff --git a/translations/source/be/sw/source/ui/fldui.po b/translations/source/be/sw/source/ui/fldui.po
index a5f91de11bc..5511705234e 100644
--- a/translations/source/be/sw/source/ui/fldui.po
+++ b/translations/source/be/sw/source/ui/fldui.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: fldui\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Ffldui.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/fmtui.po b/translations/source/be/sw/source/ui/fmtui.po
index 72cd8d0bd3b..e505e825ab4 100644
--- a/translations/source/be/sw/source/ui/fmtui.po
+++ b/translations/source/be/sw/source/ui/fmtui.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: fmtui\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Ffmtui.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/frmdlg.po b/translations/source/be/sw/source/ui/frmdlg.po
index 327a9081555..8bc76ee0daa 100644
--- a/translations/source/be/sw/source/ui/frmdlg.po
+++ b/translations/source/be/sw/source/ui/frmdlg.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: frmdlg\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Ffrmdlg.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/globdoc.po b/translations/source/be/sw/source/ui/globdoc.po
index a296222f69b..b449d4a7805 100644
--- a/translations/source/be/sw/source/ui/globdoc.po
+++ b/translations/source/be/sw/source/ui/globdoc.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: globdoc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fglobdoc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/index.po b/translations/source/be/sw/source/ui/index.po
index 665d8fe7ece..08bd656eb3f 100644
--- a/translations/source/be/sw/source/ui/index.po
+++ b/translations/source/be/sw/source/ui/index.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: index\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Findex.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-01-25 12:55+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/lingu.po b/translations/source/be/sw/source/ui/lingu.po
index a5583ac792d..c314c5753fc 100644
--- a/translations/source/be/sw/source/ui/lingu.po
+++ b/translations/source/be/sw/source/ui/lingu.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: lingu\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Flingu.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 08:49+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -20,13 +19,11 @@ msgid "Ignore All"
msgstr "Ігнараваць усе"
#: olmenu.src#MN_SPELL_POPUP.MN_ADD_TO_DIC.menuitem.text
-#, fuzzy
msgctxt "olmenu.src#MN_SPELL_POPUP.MN_ADD_TO_DIC.menuitem.text"
msgid "~Add"
msgstr "Дадаць"
#: olmenu.src#MN_SPELL_POPUP.MN_ADD_TO_DIC_SINGLE.menuitem.text
-#, fuzzy
msgctxt "olmenu.src#MN_SPELL_POPUP.MN_ADD_TO_DIC_SINGLE.menuitem.text"
msgid "~Add"
msgstr "Дадаць"
diff --git a/translations/source/be/sw/source/ui/misc.po b/translations/source/be/sw/source/ui/misc.po
index a38027d9b11..cdef3f34faf 100644
--- a/translations/source/be/sw/source/ui/misc.po
+++ b/translations/source/be/sw/source/ui/misc.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fmisc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/ribbar.po b/translations/source/be/sw/source/ui/ribbar.po
index 10579fcb373..d46d0944470 100644
--- a/translations/source/be/sw/source/ui/ribbar.po
+++ b/translations/source/be/sw/source/ui/ribbar.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: ribbar\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fribbar.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-10-20 23:32+0300\n"
-"Last-Translator: Yury Tarasievich\n"
-"Language-Team: <en@li.org>\n"
-"Language: be\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 08:50+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -101,7 +100,7 @@ msgstr "Нагадванне"
#: workctrl.src#RID_SCROLL_NAVIGATION_WIN.ST_POSTIT.string.text
msgid "Comment"
-msgstr ""
+msgstr "Заўвага"
#: workctrl.src#RID_SCROLL_NAVIGATION_WIN.ST_SRCH_REP.string.text
msgid "Repeat search"
@@ -178,7 +177,7 @@ msgstr "Наступнае нагаданне"
#: workctrl.src#STR_IMGBTN_POSTIT_DOWN.string.text
msgid "Next Comment"
-msgstr ""
+msgstr "Наступная заўвага"
#: workctrl.src#STR_IMGBTN_SRCH_REP_DOWN.string.text
msgid "Continue search forward"
@@ -242,7 +241,7 @@ msgstr "Папярэдняя нагаданне"
#: workctrl.src#STR_IMGBTN_POSTIT_UP.string.text
msgid "Previous Comment"
-msgstr ""
+msgstr "Папярэдняя заўвага"
#: workctrl.src#STR_IMGBTN_SRCH_REP_UP.string.text
msgid "Continue search backwards"
diff --git a/translations/source/be/sw/source/ui/shells.po b/translations/source/be/sw/source/ui/shells.po
index 8c114b9428d..9a6138b7a1a 100644
--- a/translations/source/be/sw/source/ui/shells.po
+++ b/translations/source/be/sw/source/ui/shells.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: shells\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fshells.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-12-22 22:45+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/smartmenu.po b/translations/source/be/sw/source/ui/smartmenu.po
index f7132e15a68..4a135010800 100644
--- a/translations/source/be/sw/source/ui/smartmenu.po
+++ b/translations/source/be/sw/source/ui/smartmenu.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: smartmenu\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fsmartmenu.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/table.po b/translations/source/be/sw/source/ui/table.po
index 678d5ee3f0b..697bf5fb4dc 100644
--- a/translations/source/be/sw/source/ui/table.po
+++ b/translations/source/be/sw/source/ui/table.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: table\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Ftable.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-01-25 12:55+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/uiview.po b/translations/source/be/sw/source/ui/uiview.po
index d02ed9d80ad..63001025c1f 100644
--- a/translations/source/be/sw/source/ui/uiview.po
+++ b/translations/source/be/sw/source/ui/uiview.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: uiview\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fuiview.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-29 19:10+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/utlui.po b/translations/source/be/sw/source/ui/utlui.po
index fc79e74e387..0c8cf3da4ef 100644
--- a/translations/source/be/sw/source/ui/utlui.po
+++ b/translations/source/be/sw/source/ui/utlui.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: utlui\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Futlui.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-04 08:54+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -1504,183 +1503,173 @@ msgstr "Загаловак 10"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL1S.string.text
msgid "Numbering 1 Start"
-msgstr ""
+msgstr "Нумараванне 1 пачатак"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL1.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLCOLL_NUM_LEVEL1.string.text"
msgid "Numbering 1"
msgstr "Нумараванне 1"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL1E.string.text
msgid "Numbering 1 End"
-msgstr ""
+msgstr "Нумараванне 1 канец"
#: poolfmt.src#STR_POOLCOLL_NUM_NONUM1.string.text
msgid "Numbering 1 Cont."
-msgstr ""
+msgstr "Нумараванне 1 працяг"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL2S.string.text
msgid "Numbering 2 Start"
-msgstr ""
+msgstr "Нумараванне 2 пачатак"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL2.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLCOLL_NUM_LEVEL2.string.text"
msgid "Numbering 2"
msgstr "Нумараванне 2"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL2E.string.text
msgid "Numbering 2 End"
-msgstr ""
+msgstr "Нумараванне 2 канец"
#: poolfmt.src#STR_POOLCOLL_NUM_NONUM2.string.text
msgid "Numbering 2 Cont."
-msgstr ""
+msgstr "Нумараванне 2 працяг"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL3S.string.text
msgid "Numbering 3 Start"
-msgstr ""
+msgstr "Нумараванне 3 пачатак"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL3.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLCOLL_NUM_LEVEL3.string.text"
msgid "Numbering 3"
msgstr "Нумараванне 3"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL3E.string.text
msgid "Numbering 3 End"
-msgstr ""
+msgstr "Нумараванне 3 канец"
#: poolfmt.src#STR_POOLCOLL_NUM_NONUM3.string.text
msgid "Numbering 3 Cont."
-msgstr ""
+msgstr "Нумараванне 3 працяг"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL4S.string.text
msgid "Numbering 4 Start"
-msgstr ""
+msgstr "Нумараванне 4 пачатак"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL4.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLCOLL_NUM_LEVEL4.string.text"
msgid "Numbering 4"
msgstr "Нумараванне 4"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL4E.string.text
msgid "Numbering 4 End"
-msgstr ""
+msgstr "Нумараванне 4 канец"
#: poolfmt.src#STR_POOLCOLL_NUM_NONUM4.string.text
msgid "Numbering 4 Cont."
-msgstr ""
+msgstr "Нумараванне 4 працяг"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL5S.string.text
msgid "Numbering 5 Start"
-msgstr ""
+msgstr "Нумараванне 5 пачатак"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL5.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLCOLL_NUM_LEVEL5.string.text"
msgid "Numbering 5"
msgstr "Нумараванне 5"
#: poolfmt.src#STR_POOLCOLL_NUM_LEVEL5E.string.text
msgid "Numbering 5 End"
-msgstr ""
+msgstr "Нумараванне 5 канец"
#: poolfmt.src#STR_POOLCOLL_NUM_NONUM5.string.text
msgid "Numbering 5 Cont."
-msgstr ""
+msgstr "Нумараванне 5 працяг"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL1S.string.text
msgid "List 1 Start"
-msgstr ""
+msgstr "Спіс 1 пачатак"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL1.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLCOLL_BUL_LEVEL1.string.text"
msgid "List 1"
msgstr "Спіс 1"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL1E.string.text
msgid "List 1 End"
-msgstr ""
+msgstr "Спіс 1 канец"
#: poolfmt.src#STR_POOLCOLL_BUL_NONUM1.string.text
msgid "List 1 Cont."
-msgstr ""
+msgstr "Спіс 1 працяг"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL2S.string.text
msgid "List 2 Start"
-msgstr ""
+msgstr "Спіс 2 пачатак"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL2.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLCOLL_BUL_LEVEL2.string.text"
msgid "List 2"
msgstr "Спіс 2"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL2E.string.text
msgid "List 2 End"
-msgstr ""
+msgstr "Спіс 2 канец"
#: poolfmt.src#STR_POOLCOLL_BUL_NONUM2.string.text
msgid "List 2 Cont."
-msgstr ""
+msgstr "Спіс 2 працяг"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL3S.string.text
msgid "List 3 Start"
-msgstr ""
+msgstr "Спіс 3 пачатак"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL3.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLCOLL_BUL_LEVEL3.string.text"
msgid "List 3"
msgstr "Спіс 3"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL3E.string.text
msgid "List 3 End"
-msgstr ""
+msgstr "Спіс 3 канец"
#: poolfmt.src#STR_POOLCOLL_BUL_NONUM3.string.text
msgid "List 3 Cont."
-msgstr ""
+msgstr "Спіс 3 працяг"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL4S.string.text
msgid "List 4 Start"
-msgstr ""
+msgstr "Спіс 4 пачатак"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL4.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLCOLL_BUL_LEVEL4.string.text"
msgid "List 4"
msgstr "Спіс 4"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL4E.string.text
msgid "List 4 End"
-msgstr ""
+msgstr "Спіс 4 канец"
#: poolfmt.src#STR_POOLCOLL_BUL_NONUM4.string.text
msgid "List 4 Cont."
-msgstr ""
+msgstr "Спіс 4 працяг"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL5S.string.text
msgid "List 5 Start"
-msgstr ""
+msgstr "Спіс 5 пачатак"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL5.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLCOLL_BUL_LEVEL5.string.text"
msgid "List 5"
msgstr "Спіс 5"
#: poolfmt.src#STR_POOLCOLL_BUL_LEVEL5E.string.text
msgid "List 5 End"
-msgstr ""
+msgstr "Спіс 5 канец"
#: poolfmt.src#STR_POOLCOLL_BUL_NONUM5.string.text
msgid "List 5 Cont."
-msgstr ""
+msgstr "Спіс 5 працяг"
#: poolfmt.src#STR_POOLCOLL_HEADER.string.text
msgctxt "poolfmt.src#STR_POOLCOLL_HEADER.string.text"
@@ -1970,61 +1959,51 @@ msgid "Endnote"
msgstr "Зноска затэкставая"
#: poolfmt.src#STR_POOLNUMRULE_NUM1.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLNUMRULE_NUM1.string.text"
msgid "Numbering 1"
msgstr "Нумараванне 1"
#: poolfmt.src#STR_POOLNUMRULE_NUM2.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLNUMRULE_NUM2.string.text"
msgid "Numbering 2"
msgstr "Нумараванне 2"
#: poolfmt.src#STR_POOLNUMRULE_NUM3.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLNUMRULE_NUM3.string.text"
msgid "Numbering 3"
msgstr "Нумараванне 3"
#: poolfmt.src#STR_POOLNUMRULE_NUM4.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLNUMRULE_NUM4.string.text"
msgid "Numbering 4"
msgstr "Нумараванне 4"
#: poolfmt.src#STR_POOLNUMRULE_NUM5.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLNUMRULE_NUM5.string.text"
msgid "Numbering 5"
msgstr "Нумараванне 5"
#: poolfmt.src#STR_POOLNUMRULE_BUL1.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLNUMRULE_BUL1.string.text"
msgid "List 1"
msgstr "Спіс 1"
#: poolfmt.src#STR_POOLNUMRULE_BUL2.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLNUMRULE_BUL2.string.text"
msgid "List 2"
msgstr "Спіс 2"
#: poolfmt.src#STR_POOLNUMRULE_BUL3.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLNUMRULE_BUL3.string.text"
msgid "List 3"
msgstr "Спіс 3"
#: poolfmt.src#STR_POOLNUMRULE_BUL4.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLNUMRULE_BUL4.string.text"
msgid "List 4"
msgstr "Спіс 4"
#: poolfmt.src#STR_POOLNUMRULE_BUL5.string.text
-#, fuzzy
msgctxt "poolfmt.src#STR_POOLNUMRULE_BUL5.string.text"
msgid "List 5"
msgstr "Спіс 5"
diff --git a/translations/source/be/sw/source/ui/web.po b/translations/source/be/sw/source/ui/web.po
index ade7f452e7d..62593de2d76 100644
--- a/translations/source/be/sw/source/ui/web.po
+++ b/translations/source/be/sw/source/ui/web.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: web\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fweb.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sw/source/ui/wrtsh.po b/translations/source/be/sw/source/ui/wrtsh.po
index e7a7268c645..c08f457a4e4 100644
--- a/translations/source/be/sw/source/ui/wrtsh.po
+++ b/translations/source/be/sw/source/ui/wrtsh.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: wrtsh\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fwrtsh.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/swext/mediawiki/help.po b/translations/source/be/swext/mediawiki/help.po
index 3b9f264bfe4..1f406c32f83 100644
--- a/translations/source/be/swext/mediawiki/help.po
+++ b/translations/source/be/swext/mediawiki/help.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: help\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+swext%2Fmediawiki%2Fhelp.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-11-26 10:56+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-05 10:06+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: KBabel 1.11.4\n"
"X-Accelerator-Marker: ~\n"
#: wiki.xhp#tit.help.text
@@ -21,7 +20,7 @@ msgstr "Wiki Publisher"
#: wiki.xhp#bm_id3154408.help.text
msgid "<bookmark_value>Wiki;Wiki Publisher</bookmark_value><bookmark_value>Wiki Publisher</bookmark_value><bookmark_value>extensions;MediaWiki</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Wiki;Wiki Publisher</bookmark_value><bookmark_value>Wiki Publisher</bookmark_value><bookmark_value>extensions;MediaWiki</bookmark_value>"
#: wiki.xhp#hd_id5993530.help.text
msgctxt "wiki.xhp#hd_id5993530.help.text"
@@ -30,7 +29,7 @@ msgstr "Wiki Publisher"
#: wiki.xhp#par_id9647511.help.text
msgid "<ahelp hid=\".\">By using the Wiki Publisher you can upload your current Writer text document to a MediaWiki server. After uploading, all Wiki users can read your document on the Wiki.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">З дапамогай Wiki Publisher можна пакласці дакументWriter на сервер MediaWiki. Пасля такога ўкладання ўсе карыстальнікі вікі ўбачаць гэты дакумент.</ahelp>"
#: wiki.xhp#par_id6468703.help.text
msgid "<ahelp hid=\".\">Choose <item type=\"menuitem\">File - Send - To MediaWiki</item> to upload the current Writer document to a MediaWiki server.</ahelp>"
@@ -74,9 +73,8 @@ msgid "Open a Writer document, and choose <item type=\"menuitem\">Tools - Option
msgstr "Open a Writer document, and choose <item type=\"menuitem\">Tools - Options - Internet - MediaWiki</item>."
#: wiki.xhp#par_id368968.help.text
-#, fuzzy
msgid "In the <link href=\"com.sun.wiki-publisher/wikisettings.xhp\">Options</link> dialog, click Add."
-msgstr "In the <link href=\"@WIKIEXTENSIONID@/wikisettings.xhp\">Options</link> dialog, click Add."
+msgstr "Націсніце Дадаць у дыялогу <link href=\"com.sun.wiki-publisher/wikisettings.xhp\">Настаўленні</link>."
#: wiki.xhp#par_id6962187.help.text
#, fuzzy
diff --git a/translations/source/be/swext/mediawiki/src.po b/translations/source/be/swext/mediawiki/src.po
index 5bc739ff4bd..77310b07d41 100644
--- a/translations/source/be/swext/mediawiki/src.po
+++ b/translations/source/be/swext/mediawiki/src.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+swext%2Fmediawiki%2Fsrc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-04 19:08+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/swext/mediawiki/src/registry/data/org/openoffice/Office.po b/translations/source/be/swext/mediawiki/src/registry/data/org/openoffice/Office.po
index 89d50312230..108cdedf6b8 100644
--- a/translations/source/be/swext/mediawiki/src/registry/data/org/openoffice/Office.po
+++ b/translations/source/be/swext/mediawiki/src/registry/data/org/openoffice/Office.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: Office\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+swext%2Fmediawiki%2Fsrc%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po b/translations/source/be/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
index 31c6169d0c2..af10647d66e 100644
--- a/translations/source/be/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
+++ b/translations/source/be/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: Custom\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+swext%2Fmediawiki%2Fsrc%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FCustom.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-04 19:09+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/sysui/desktop/share.po b/translations/source/be/sysui/desktop/share.po
index faeeb6801bd..7680d7b51cc 100644
--- a/translations/source/be/sysui/desktop/share.po
+++ b/translations/source/be/sysui/desktop/share.po
@@ -3,42 +3,40 @@ msgid ""
msgstr ""
"Project-Id-Version: share\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sysui%2Fdesktop%2Fshare.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-04 08:38+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: launcher_unityquicklist.ulf#writer.LngText.text
msgid "New Document"
-msgstr ""
+msgstr "Новы дакумент"
#: launcher_unityquicklist.ulf#impress.LngText.text
-#, fuzzy
msgid "New Presentation"
-msgstr "Прэзентацыя"
+msgstr "Новая прэзентацыя"
#: launcher_unityquicklist.ulf#calc.LngText.text
msgid "New Spreadsheet"
-msgstr ""
+msgstr "Новы разліковы аркуш"
#: launcher_unityquicklist.ulf#base.LngText.text
msgid "New Database"
-msgstr ""
+msgstr "Новая база даных"
#: launcher_unityquicklist.ulf#math.LngText.text
msgid "New Formula"
-msgstr ""
+msgstr "Новая формула"
#: launcher_unityquicklist.ulf#draw.LngText.text
msgid "New Drawing"
-msgstr ""
+msgstr "Новы рысунак"
#: launcher_comment.ulf#writer.LngText.text
msgid "Create and edit text and graphics in letters, reports, documents and Web pages by using Writer."
@@ -106,11 +104,11 @@ msgstr "Імпарцёр з малых прыладаў"
#: launcher_genericname.ulf#binfilter.LngText.text
msgid "Legacy StarOffice 5 Binary Format Importer"
-msgstr ""
+msgstr "Імпарцёр старога фармата StarOffice 5"
#: launcher_genericname.ulf#xsltfilter.LngText.text
msgid "XSLT based filters"
-msgstr ""
+msgstr "Фільтры на аснове XSLT"
#: documents.ulf#text.LngText.text
msgid "%PRODUCTNAME Text Document"
@@ -157,9 +155,8 @@ msgid "OpenDocument Text"
msgstr "Тэкст OpenDocument"
#: documents.ulf#oasis_text_flat_xml.LngText.text
-#, fuzzy
msgid "OpenDocument Text (Flat XML)"
-msgstr "Шаблон прэзентацыі OpenDocument"
+msgstr "Тэкст OpenDocument (просты XML)"
#: documents.ulf#oasis_text_template.LngText.text
msgid "OpenDocument Text Template"
@@ -178,9 +175,8 @@ msgid "OpenDocument Presentation"
msgstr "Прэзентацыя OpenDocument"
#: documents.ulf#oasis_presentation_flat_xml.LngText.text
-#, fuzzy
msgid "OpenDocument Presentation (Flat XML)"
-msgstr "Шаблон прэзентацыі OpenDocument"
+msgstr "Прэзентацыя OpenDocument (просты XML)"
#: documents.ulf#oasis_presentation_template.LngText.text
msgid "OpenDocument Presentation Template"
@@ -191,13 +187,12 @@ msgid "OpenDocument Drawing"
msgstr "Рысунак OpenDocument"
#: documents.ulf#oasis_drawing_flat_xml.LngText.text
-#, fuzzy
msgid "OpenDocument Drawing (Flat XML)"
-msgstr "Шаблон прэзентацыі OpenDocument"
+msgstr "Рысунак OpenDocument (просты XML)"
#: documents.ulf#oasis_drawing_template.LngText.text
msgid "OpenDocument Drawing Template"
-msgstr "Шаблон рысунку OpenDocument"
+msgstr "Шаблон рысунка OpenDocument"
#: documents.ulf#oasis_spreadsheet.LngText.text
msgid "OpenDocument Spreadsheet"
@@ -205,7 +200,7 @@ msgstr "Разліковы аркуш OpenDocument"
#: documents.ulf#oasis_spreadsheet_flat_xml.LngText.text
msgid "OpenDocument Spreadsheet (Flat XML)"
-msgstr ""
+msgstr "Разліковы аркуш OpenDocument (просты XML)"
#: documents.ulf#oasis_spreadsheet_template.LngText.text
msgid "OpenDocument Spreadsheet Template"
diff --git a/translations/source/be/uui/source.po b/translations/source/be/uui/source.po
index 48fb000ebf2..ff5f4cd6bc8 100644
--- a/translations/source/be/uui/source.po
+++ b/translations/source/be/uui/source.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: source\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+uui%2Fsource.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-04 19:05+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/vcl/source/src.po b/translations/source/be/vcl/source/src.po
index b4a7c651c1c..1c26edd9568 100644
--- a/translations/source/be/vcl/source/src.po
+++ b/translations/source/be/vcl/source/src.po
@@ -3,15 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+vcl%2Fsource%2Fsrc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-01-30 14:47+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 08:34+0300\n"
+"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
@@ -407,15 +406,15 @@ msgstr "Dia Slide"
#: print.src#RID_STR_PAPERNAMES.20.itemlist.text
msgid "C"
-msgstr ""
+msgstr "C"
#: print.src#RID_STR_PAPERNAMES.21.itemlist.text
msgid "D"
-msgstr ""
+msgstr "D"
#: print.src#RID_STR_PAPERNAMES.22.itemlist.text
msgid "E"
-msgstr ""
+msgstr "E"
#: print.src#RID_STR_PAPERNAMES.23.itemlist.text
msgid "Executive"
@@ -475,7 +474,7 @@ msgstr "B6 (JIS)"
#: print.src#RID_STR_PAPERNAMES.37.itemlist.text
msgid "Japanese Postcard"
-msgstr ""
+msgstr "Японская паштоўка"
#: btntext.src#SV_BUTTONTEXT_OK.string.text
msgid "OK"
diff --git a/translations/source/be/wizards/source/euro.po b/translations/source/be/wizards/source/euro.po
index a369180b437..5cef8f5dbd1 100644
--- a/translations/source/be/wizards/source/euro.po
+++ b/translations/source/be/wizards/source/euro.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: euro\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+wizards%2Fsource%2Feuro.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-11-04 18:59+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/wizards/source/formwizard.po b/translations/source/be/wizards/source/formwizard.po
index 6a676336ad8..56143f9bd51 100644
--- a/translations/source/be/wizards/source/formwizard.po
+++ b/translations/source/be/wizards/source/formwizard.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: formwizard\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+wizards%2Fsource%2Fformwizard.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-10-29 19:07+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/wizards/source/importwizard.po b/translations/source/be/wizards/source/importwizard.po
index 48b84490542..72d5b63eada 100644
--- a/translations/source/be/wizards/source/importwizard.po
+++ b/translations/source/be/wizards/source/importwizard.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: importwizard\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+wizards%2Fsource%2Fimportwizard.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-11-04 19:03+0200\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/wizards/source/schedule.po b/translations/source/be/wizards/source/schedule.po
index c02d55d5d90..b81633aded3 100644
--- a/translations/source/be/wizards/source/schedule.po
+++ b/translations/source/be/wizards/source/schedule.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: schedule\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+wizards%2Fsource%2Fschedule.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/wizards/source/template.po b/translations/source/be/wizards/source/template.po
index 76f67b5f912..05a2b10f492 100644
--- a/translations/source/be/wizards/source/template.po
+++ b/translations/source/be/wizards/source/template.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: template\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+wizards%2Fsource%2Ftemplate.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-28 20:32+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/xmlsecurity/source/component.po b/translations/source/be/xmlsecurity/source/component.po
index 1b80a0a9328..f1f16389686 100644
--- a/translations/source/be/xmlsecurity/source/component.po
+++ b/translations/source/be/xmlsecurity/source/component.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: component\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+xmlsecurity%2Fsource%2Fcomponent.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2011-10-20 23:32+0300\n"
"Last-Translator: Yury Tarasievich\n"
"Language-Team: <en@li.org>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/be/xmlsecurity/source/dialogs.po b/translations/source/be/xmlsecurity/source/dialogs.po
index 48ccd588813..2cf1a39265b 100644
--- a/translations/source/be/xmlsecurity/source/dialogs.po
+++ b/translations/source/be/xmlsecurity/source/dialogs.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+xmlsecurity%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
"PO-Revision-Date: 2011-10-28 20:31+0300\n"
"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/translations/source/bg/cui/source/dialogs.po b/translations/source/bg/cui/source/dialogs.po
index 7f8c6d17cb1..b2480795f8c 100644
--- a/translations/source/bg/cui/source/dialogs.po
+++ b/translations/source/bg/cui/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-06-30 20:51+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_WORD.fixedtext.text
@@ -1181,10 +1181,6 @@ msgstr "Свойства на плаващата рамка"
msgid "Select File for Floating Frame"
msgstr "Изберете файл за плаващата рамка"
-#: svuidlg.src#STR_EDIT_APPLET.string.text
-msgid "Edit Applet"
-msgstr "Редактиране на аплет"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VERSION.string.text
msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
msgstr "Версия %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
@@ -1221,18 +1217,10 @@ msgstr "http://www.libreoffice.org"
msgid "http://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
-#: about.src#RID_DEFAULTABOUT.ABOUT_STR_LINK_LICENSE.string.text
-msgid "http://www.libreoffice.org/download/license/"
-msgstr "http://www.libreoffice.org/download/license/"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CREDITS.pushbutton.text
msgid "Credits"
msgstr "Сътрудници"
-#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_LICENSE.pushbutton.text
-msgid "License"
-msgstr "Лиценз"
-
#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_WEBSITE.pushbutton.text
msgid "Website"
msgstr "Уебсайт"
diff --git a/translations/source/bg/cui/source/options.po b/translations/source/bg/cui/source/options.po
index 95a693709e1..31d4debbf38 100644
--- a/translations/source/bg/cui/source/options.po
+++ b/translations/source/bg/cui/source/options.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_COMPANY.fixedtext.text
diff --git a/translations/source/bg/helpcontent2/source/text/scalc/01.po b/translations/source/bg/helpcontent2/source/text/scalc/01.po
index 8a4af87612f..accc080795e 100644
--- a/translations/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/translations/source/bg/helpcontent2/source/text/scalc/01.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F01.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-17 22:20+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-03 02:19+0200\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
"X-Project-Style: openoffice\n"
@@ -4778,20 +4778,20 @@ msgstr "За да покажете всички скрити клетки, пъ
#: 05100200.xhp#tit.help.text
msgctxt "05100200.xhp#tit.help.text"
msgid "Split Cells"
-msgstr ""
+msgstr "Разделяне на клетки"
#: 05100200.xhp#hd_id3154654.help.text
msgctxt "05100200.xhp#hd_id3154654.help.text"
msgid "Split Cells"
-msgstr ""
+msgstr "Разделяне на клетки"
#: 05100200.xhp#par_id3083451.help.text
msgid "<ahelp hid=\".\">Splits previously merged cells.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Разделя обединени преди това клетки.</ahelp>"
#: 05100200.xhp#par_id3154023.help.text
msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>"
-msgstr ""
+msgstr "Изберете <emph>Форматиране - Сливане на клетки - Разделяне на клетки</emph>"
#: 04060106.xhp#tit.help.text
msgctxt "04060106.xhp#tit.help.text"
@@ -7887,19 +7887,19 @@ msgstr "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visib
#: 05060000.xhp#tit.help.text
msgid "Merge and Center Cells"
-msgstr ""
+msgstr "Сливане и центриране на клетките"
#: 05060000.xhp#hd_id3149785.1.help.text
msgid "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Сливане и центриране на клетките</link>"
#: 05060000.xhp#par_id3151246.2.help.text
msgid "<ahelp hid=\".\">Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Обединява избраните клетки в една или разделя слети клетки. Центрира съдържанието на клетките.</ahelp>"
#: 05060000.xhp#par_id3154020.18.help.text
msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
-msgstr ""
+msgstr "Изберете <emph>Форматиране - Сливане на клетки - Сливане и центриране на клетките</emph>"
#: 05060000.xhp#par_id3148552.4.help.text
msgid "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
@@ -7911,7 +7911,7 @@ msgstr "Ако сливаните клетки имат съдържание, с
#: 05060000.xhp#par_id3153718.help.text
msgid "Merging cells can lead to calculation errors in formulas in the table."
-msgstr ""
+msgstr "Обединяването на клетки може да доведе до грешки при изчисляване на формулите в таблицата."
#: 12080600.xhp#tit.help.text
msgctxt "12080600.xhp#tit.help.text"
@@ -9835,11 +9835,11 @@ msgstr "За да добавите текст или да редактирате
#: 06130000.xhp#par_idN1066D.help.text
msgid "To view more completions, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</item> to scroll forward, or <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</item> to scroll backward."
-msgstr ""
+msgstr "За да видите още варианти за завършване, натиснете <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</item> за превъртане напред или <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</item> за превъртане назад."
#: 06130000.xhp#par_idN10679.help.text
msgid "To see a list of all available AutoInput text items for the current column, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow</item>."
-msgstr ""
+msgstr "За списък с всички налични текстови елементи за автовъвеждане натиснете <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+стрелка надолу</item>."
#: 06130000.xhp#par_id3150439.3.help.text
msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
@@ -19370,6 +19370,8 @@ msgid "SUMX2MY2(ArrayX; ArrayY)"
msgstr "SUMX2MY2(МасивX; МасивY)"
#: 04060107.xhp#par_id3144916.173.help.text
+#, fuzzy
+msgctxt "04060107.xhp#par_id3144916.173.help.text"
msgid "<emph>ArrayX</emph> represents the first array whose elements are to be squared and added."
msgstr "<emph>МасивX</emph> представлява първия масив, чиито елементи да бъдат повдигнати на квадрат и сумирани."
@@ -19404,8 +19406,9 @@ msgid "SUMX2PY2(ArrayX; ArrayY)"
msgstr "SUMX2PY2(МасивX; МасивY)"
#: 04060107.xhp#par_id3163417.182.help.text
-msgid "<emph>ArrayX</emph> represents the first array whose arguments are to be squared and added."
-msgstr "<emph>МасивX</emph> представлява първия масив, чиито елементи да бъдат повдигнати на квадрат и сумирани."
+msgctxt "04060107.xhp#par_id3163417.182.help.text"
+msgid "<emph>ArrayX</emph> represents the first array whose elements are to be squared and added."
+msgstr ""
#: 04060107.xhp#par_id3163437.183.help.text
msgid "<emph>ArrayY</emph> represents the second array, whose elements are to be squared and added."
@@ -21776,24 +21779,24 @@ msgid "\"ym\""
msgstr "\"ym\""
#: func_datedif.xhp#par_id4186223.help.text
-msgid "Number of whole months when substracting years from the difference of Start date and End date."
-msgstr "Броят цели месеци след като са извадени годините между началната и крайната дата."
+msgid "Number of whole months when subtracting years from the difference of Start date and End date."
+msgstr ""
#: func_datedif.xhp#par_id5766472.help.text
msgid "\"md\""
msgstr "\"md\""
#: func_datedif.xhp#par_id1491134.help.text
-msgid "Number of whole days when substracting years and months from the difference of Start date and End date."
-msgstr "Броят цели дни след като са извадени месеците и годините между началната и крайната дата."
+msgid "Number of whole days when subtracting years and months from the difference of Start date and End date."
+msgstr ""
#: func_datedif.xhp#par_id5866472.help.text
msgid "\"yd\""
msgstr "\"yd\""
#: func_datedif.xhp#par_id1591134.help.text
-msgid "Number of whole days when substracting years from the difference of Start date and End date."
-msgstr "Броят цели дни след като са извадени годините между началната и крайната дата."
+msgid "Number of whole days when subtracting years from the difference of Start date and End date."
+msgstr ""
#: func_datedif.xhp#hd_id3147477.help.text
msgctxt "func_datedif.xhp#hd_id3147477.help.text"
@@ -25540,11 +25543,11 @@ msgstr "Сливане на клетки"
#: 05100100.xhp#par_id3147406.help.text
msgid "<ahelp hid=\".\">Combines the contents of the selected cells into a single cell.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Обединява съдържанието на избраните клетки в една клетка.</ahelp>"
#: 05100100.xhp#par_id3154351.help.text
msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>"
-msgstr ""
+msgstr "Изберете <emph>Форматиране - Сливане на клетки - Сливане на клетки</emph>"
#: func_networkdays.xhp#tit.help.text
msgid "NETWORKDAYS"
@@ -26408,12 +26411,12 @@ msgid "N"
msgstr "N"
#: 04060104.xhp#par_id3150405.120.help.text
-msgid "<ahelp hid=\"HID_FUNC_N\">Returns the numeric value of the given parameter. Returns 0 if parameter is text, FALSE or #NA.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_N\">Връща числовата стойност на дадения параметър. Връща 0, ако параметърът е текст, FALSE или #NA.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_N\">Returns the numeric value of the given parameter. Returns 0 if parameter is text or FALSE.</ahelp>"
+msgstr ""
#: 04060104.xhp#par_id9115573.help.text
-msgid "If an error occurs, other than #NA, the function returns the error value."
-msgstr "Ако възникне грешка, различна от #NA, функцията връща съответната стойност за грешка."
+msgid "If an error occurs the function returns the error value."
+msgstr ""
#: 04060104.xhp#hd_id3145774.121.help.text
msgctxt "04060104.xhp#hd_id3145774.121.help.text"
@@ -26425,8 +26428,8 @@ msgid "N(Value)"
msgstr "N(Стойност)"
#: 04060104.xhp#par_id3151101.123.help.text
-msgid "<emph>Value</emph> is the parameter to be converted into a number. N() returns the numeric value if it can. It returns the logical values TRUE and FALSE as 1 and 0 respectively. It returns text and errors as 0."
-msgstr "<emph>Стойност</emph> е параметърът, който да бъде преобразуван в число. N() връща числовата стойност, ако е възможно. За логическите стойности TRUE и FALSE се връщат съответно 1 и 0. За текстове и грешки се връща 0."
+msgid "<emph>Value</emph> is the parameter to be converted into a number. N() returns the numeric value if it can. It returns the logical values TRUE and FALSE as 1 and 0 respectively. It returns text as 0."
+msgstr ""
#: 04060104.xhp#hd_id3147097.124.help.text
msgctxt "04060104.xhp#hd_id3147097.124.help.text"
diff --git a/translations/source/bg/helpcontent2/source/text/scalc/04.po b/translations/source/bg/helpcontent2/source/text/scalc/04.po
index 33c63efa711..6064d5c8db1 100644
--- a/translations/source/bg/helpcontent2/source/text/scalc/04.po
+++ b/translations/source/bg/helpcontent2/source/text/scalc/04.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F04.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-17 22:20+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2012-07-03 02:22+0200\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: 01020000.xhp#tit.help.text
@@ -497,23 +497,23 @@ msgstr "Разгрупира избраната област с данни."
#: 01020000.xhp#hd_id3151264.117.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+стрелка надолу"
#: 01020000.xhp#par_id3153155.118.help.text
msgid "Increases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org legacy compatibility mode</link>)."
-msgstr ""
+msgstr "Увеличава височината на текущия ред клетки (само в <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">режим на съвместимост с OpenOffice.org</link>)."
#: 01020000.xhp#hd_id3151297.119.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up Arrow"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+стрелка нагоре"
#: 01020000.xhp#par_id3155849.120.help.text
msgid "Decreases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org legacy compatibility mode</link>)."
-msgstr ""
+msgstr "Увеличава височината на текущия ред клетки (само в <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">режим на съвместимост с OpenOffice.org</link>)."
#: 01020000.xhp#hd_id3155997.121.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Right Arrow"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+стрелка надясно"
#: 01020000.xhp#par_id3150256.122.help.text
msgid "Increases the width of the current column."
@@ -521,7 +521,7 @@ msgstr "Увеличава ширината на текущата колона."
#: 01020000.xhp#hd_id3154046.123.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Left Arrow"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+стрелка наляво"
#: 01020000.xhp#par_id3150155.124.help.text
msgid "Decreases the width of the current column."
@@ -638,36 +638,32 @@ msgid "Changes the focus by moving backwards through the areas and buttons of th
msgstr "Премества фокуса назад през областите и бутоните на диалоговия прозорец."
#: 01020000.xhp#hd_id3148484.173.help.text
-#, fuzzy
msgid "Up Arrow"
-msgstr "стрелка нагоре"
+msgstr "Стрелка нагоре"
#: 01020000.xhp#par_id3149152.172.help.text
msgid "Moves the focus up one item in the current dialog area."
msgstr "Премества фокуса с един елемент нагоре в текущата диалогова област."
#: 01020000.xhp#hd_id3154273.171.help.text
-#, fuzzy
msgid "Down Arrow"
-msgstr "стрелка надолу"
+msgstr "Стрелка надолу"
#: 01020000.xhp#par_id3158424.170.help.text
msgid "Moves the focus down one item in the current dialog area."
msgstr "Премества фокуса с един елемент надолу в текущата диалогова област."
#: 01020000.xhp#hd_id3148912.169.help.text
-#, fuzzy
msgid "Left Arrow"
-msgstr "стрелка наляво"
+msgstr "Стрелка наляво"
#: 01020000.xhp#par_id3153238.168.help.text
msgid "Moves the focus one item to the left in the current dialog area."
msgstr "Премества фокуса с един елемент наляво в текущата диалогова област"
#: 01020000.xhp#hd_id3150712.167.help.text
-#, fuzzy
msgid "Right Arrow"
-msgstr "стрелка надясно"
+msgstr "Стрелка надясно"
#: 01020000.xhp#par_id3166458.166.help.text
msgid "Moves the focus one item to the right in the current dialog area."
diff --git a/translations/source/bg/helpcontent2/source/text/scalc/guide.po b/translations/source/bg/helpcontent2/source/text/scalc/guide.po
index d8d73df1003..fa15922f1d6 100644
--- a/translations/source/bg/helpcontent2/source/text/scalc/guide.po
+++ b/translations/source/bg/helpcontent2/source/text/scalc/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2Fguide.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-15 10:42+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-03 02:25+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -2787,7 +2787,7 @@ msgstr "Сливане и разделяне на клетки"
#: table_cellmerge.xhp#bm_id3147240.help.text
msgid "<bookmark_value>cells; merging/unmerging</bookmark_value> <bookmark_value>tables; merging cells</bookmark_value> <bookmark_value>cell merges</bookmark_value> <bookmark_value>unmerging cells</bookmark_value> <bookmark_value>splitting cells</bookmark_value> <bookmark_value>merging;cells</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>клетки; сливане/разделяне</bookmark_value><bookmark_value>таблици; сливане на клетки</bookmark_value><bookmark_value>обединяване на клетки</bookmark_value><bookmark_value>разделяне на клетки</bookmark_value>"
#: table_cellmerge.xhp#hd_id8005005.help.text
msgid "<variable id=\"table_cellmerge\"><link href=\"text/scalc/guide/table_cellmerge.xhp\" name=\"Merging and Unmerging Cells\">Merging and Unmerging Cells</link></variable>"
@@ -2811,11 +2811,11 @@ msgstr "Изберете съседните клетки."
#: table_cellmerge.xhp#par_id6424146.help.text
msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>. If you choose <emph>Format - Merge Cells - Merge and Center Cells</emph>, the cell content will be centered in the merged cell."
-msgstr ""
+msgstr "Изберете <emph>Форматиране - Сливане на клетки - Сливане на клетки</emph>. Ако изберете <emph>Форматиране - Сливане на клетки - Сливане и центриране на клетките</emph>, съдържанието на слятата клетка ще бъде центрирано."
#: table_cellmerge.xhp#hd_id451368.help.text
msgid "Splitting Cells"
-msgstr ""
+msgstr "Разделяне на клетки"
#: table_cellmerge.xhp#par_id7116611.help.text
msgid "Place the cursor in the cell to be split."
@@ -2823,7 +2823,7 @@ msgstr "Поставете курсора в клетката, която ще
#: table_cellmerge.xhp#par_id9493087.help.text
msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>."
-msgstr ""
+msgstr "Изберете <emph>Форматиране - Сливане на клетки - Разделяне на клетки</emph>."
#: cellstyle_by_formula.xhp#tit.help.text
msgid "Assigning Formats by Formula"
@@ -5553,8 +5553,8 @@ msgid "Remove a button by dragging it back to the area of the other buttons at t
msgstr "Изтриването на бутон става като го плъзнете обратно в областта с другите бутони в дясната част на диалога."
#: datapilot_createtable.xhp#par_id3147338.15.help.text
-msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row</emph> or <emph>Column</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
-msgstr "За да отворите диалога <link href=\"text/scalc/01/12090105.xhp\" name=\"Поле за данни\"><emph>Поле за данни</emph></link>, щракнете двукратно върху един от бутоните в областите <emph>Ред</emph> или <emph>Колона</emph>. Използвайте диалога за да изберете дали и в каква степен <item type=\"productname\">%PRODUCTNAME</item> да изчислява междинни суми за показване."
+msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
+msgstr ""
#: datapilot_createtable.xhp#par_id3154020.18.help.text
msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Page Fields</emph> area. The pivot table is inserted further down."
diff --git a/translations/source/bg/helpcontent2/source/text/sdraw/04.po b/translations/source/bg/helpcontent2/source/text/sdraw/04.po
index 313cb40543a..5514d847c27 100644
--- a/translations/source/bg/helpcontent2/source/text/sdraw/04.po
+++ b/translations/source/bg/helpcontent2/source/text/sdraw/04.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsdraw%2F04.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2011-12-25 18:58+0200\n"
-"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
+"PO-Revision-Date: 2012-07-01 15:14+0200\n"
+"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
diff --git a/translations/source/bg/helpcontent2/source/text/shared/00.po b/translations/source/bg/helpcontent2/source/text/shared/00.po
index 01375b6dfd0..dcff7307ee8 100644
--- a/translations/source/bg/helpcontent2/source/text/shared/00.po
+++ b/translations/source/bg/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared%2F00.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-17 11:43+0200\n"
+"PO-Revision-Date: 2012-07-03 02:27+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -4559,15 +4559,15 @@ msgstr "<variable id=\"exopso\">Отворете документ – елект
#: 00000406.xhp#par_id3152495.82.help.text
msgid "<variable id=\"exopfo\">Open a spreadsheet document, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Formula</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"exopfo\">Отворете документ – електронна таблица и изберете <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Инструменти - Настройки</defaultinline></switchinline> - %PRODUCTNAME Calc - Формула</emph></variable>"
#: 00000406.xhp#par_id3152496.82.help.text
msgid "<variable id=\"exopde\">Open a spreadsheet document, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Defaults</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"exopde\">Отворете документ – електронна таблица и изберете <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Инструменти - Настройки</defaultinline></switchinline> - %PRODUCTNAME Calc - Подразбирани настройки</emph></variable>"
#: 00000406.xhp#par_id3149527.83.help.text
msgid "<variable id=\"listekopieren\">Open a spreadsheet document, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists - Copy</emph> button</variable>"
-msgstr "<variable id=\"listekopieren\">Отворете документ – електронна таблица изберете <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Инструменти - Настройки</defaultinline></switchinline> - %PRODUCTNAME Calc - Списъци за сортиране</emph> - бутон <emph>Копиране</emph></variable>"
+msgstr "<variable id=\"listekopieren\">Отворете документ – електронна таблица и изберете <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Инструменти - Настройки</defaultinline></switchinline> - %PRODUCTNAME Calc - Списъци за сортиране</emph> - бутон <emph>Копиране</emph></variable>"
#: 00000406.xhp#par_id3154903.85.help.text
msgid "<variable id=\"exopaen\">Open a spreadsheet document, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Changes</emph></variable>"
diff --git a/translations/source/bg/helpcontent2/source/text/shared/01.po b/translations/source/bg/helpcontent2/source/text/shared/01.po
index 039e1063fba..a8bb9c6e32e 100644
--- a/translations/source/bg/helpcontent2/source/text/shared/01.po
+++ b/translations/source/bg/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared%2F01.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
"PO-Revision-Date: 2012-06-17 11:43+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
@@ -16164,8 +16164,8 @@ msgid "To change the object properties of a comment, for example the background
msgstr "За да смените свойствата на коментара като обект, например фоновия цвят, изберете <emph>Показване на коментар</emph>, след което щракнете с десния бутон върху коментара (не щраквайте двукратно върху текста)."
#: 04050000.xhp#par_id3155390.7.help.text
-msgid "To edit a shown comment, double-click the comment text. To edit a comment that is not shown permanently, click in the cell that contains the comment, and then choose <emph>Insert - Comment</emph>. To specify the formatting of the comment text, right-click the comment text in edit mode."
-msgstr "За да редактирате показан коментар, щракнете двукратно в текста му. За да редактирате коментар, който не е постоянно показан, щракнете в клетката, която го съдържа, след което изберете <emph>Вмъкване - Коментар</emph>. За да зададете форматирането на текста на коментара, щракнете с десния бутон върху този текст в режим на редактиране."
+msgid "To edit a shown comment, double-click the comment text. To edit a comment that is not shown permanently, right-click in the cell that contains the comment, and then choose <emph>Insert - Comment</emph>. To specify the formatting of the comment text, right-click the comment text in edit mode."
+msgstr ""
#: 04050000.xhp#par_idN107A1.help.text
msgid "To change the position or size of a comment, drag a border or corner of the comment."
@@ -17015,8 +17015,8 @@ msgid "Whitespaces"
msgstr "Интервали"
#: xformsdatatab.xhp#par_id4331797.help.text
-msgid "<ahelp hid=\".\">Specifies how whitespaces are to be handled when a string of the current data type is being processed. Possible values are Preserve, Replace, and Collapse. The sematics follow the definition at http://www.w3.org/TR/xmlschema-2/#rf-whiteSpace.</ahelp>"
-msgstr "<ahelp hid=\".\">Указва как се обработват интервалите при обработване на низ от текущия тип данни. Възможните стойности са Запазване, Замяна и Свиване. Семантиката следва дефиницията от http://www.w3.org/TR/xmlschema-2/#rf-whiteSpace.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies how whitespaces are to be handled when a string of the current data type is being processed. Possible values are Preserve, Replace, and Collapse. The semantics follow the definition at http://www.w3.org/TR/xmlschema-2/#rf-whiteSpace.</ahelp>"
+msgstr ""
#: xformsdatatab.xhp#hd_id4191717.help.text
msgid "Pattern"
diff --git a/translations/source/bg/helpcontent2/source/text/shared/02.po b/translations/source/bg/helpcontent2/source/text/shared/02.po
index 9f03311a6ed..17c557fe18b 100644
--- a/translations/source/bg/helpcontent2/source/text/shared/02.po
+++ b/translations/source/bg/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared%2F02.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2011-12-27 12:37+0300\n"
"Last-Translator: Михаил Балабанов <mishob@abv.bg>\n"
"Language-Team: .\n"
@@ -7201,24 +7201,20 @@ msgid "Selection Mode"
msgstr "Режим на избиране"
#: 20050000.xhp#bm_id3148668.help.text
-msgid "<bookmark_value>selection modes in text</bookmark_value><bookmark_value>text; selection modes</bookmark_value><bookmark_value>extension mode in text</bookmark_value><bookmark_value>additional selection mode</bookmark_value><bookmark_value>block selection mode</bookmark_value>"
-msgstr "<bookmark_value>избиране на текст, режими</bookmark_value><bookmark_value>текст; режими на избиране</bookmark_value><bookmark_value>разширяване на селекцията в текст</bookmark_value><bookmark_value>добавяне към селекцията в текст</bookmark_value><bookmark_value>режим избор на блок</bookmark_value>"
+msgid "<bookmark_value>selection modes in text</bookmark_value><bookmark_value>text; selection modes</bookmark_value><bookmark_value>extending selection mode</bookmark_value><bookmark_value>adding selection mode</bookmark_value><bookmark_value>block selection mode</bookmark_value>"
+msgstr ""
#: 20050000.xhp#hd_id3148668.1.help.text
msgid "<link href=\"text/shared/02/20050000.xhp\" name=\"Selection Mode\">Selection Mode</link>"
msgstr "<link href=\"text/shared/02/20050000.xhp\" name=\"Режим на избиране\">Режим на избиране</link>"
#: 20050000.xhp#par_id3146130.2.help.text
-msgid "<ahelp hid=\".uno:StatusSelectionMode\">Displays the current selection mode. You can switch between STD = Standard, EXT = Extend, ADD = Add, BLK = Block selection.</ahelp>"
-msgstr "<ahelp hid=\".uno:StatusSelectionMode\">Показва текущия режим на избиране. Можете да избирате между СТД = Стандартен, РАЗШ = Разширяване и ДОБ = Добавяне, БЛК = Избор на блок.</ahelp>"
+msgid "<ahelp hid=\".uno:StatusSelectionMode\">Here you can switch between different selection modes.</ahelp>"
+msgstr ""
#: 20050000.xhp#par_id3153894.3.help.text
-msgid "Each click in the field cycles through the available options:"
-msgstr "Всяко щракване в полето превключва циклично между наличните възможности:"
-
-#: 20050000.xhp#par_id3153394.4.help.text
-msgid "<emph>Display</emph>"
-msgstr "<emph>Надпис</emph>"
+msgid "When you click in the field, a popup menu comes up with the available options:"
+msgstr ""
#: 20050000.xhp#par_id3149095.5.help.text
msgctxt "20050000.xhp#par_id3149095.5.help.text"
@@ -7229,49 +7225,33 @@ msgstr "<emph>Режим</emph>"
msgid "<emph>Effect</emph>"
msgstr "<emph>Ефект</emph>"
-#: 20050000.xhp#par_id3149827.7.help.text
-msgid "STD"
-msgstr "СТД"
-
#: 20050000.xhp#par_id3152780.8.help.text
-msgid "Standard mode"
-msgstr "Стандартен режим"
+msgid "Standard selection"
+msgstr ""
#: 20050000.xhp#par_id3147209.9.help.text
msgid "Click in text where you want to position the cursor; click in a cell to make it the active cell. Any other selection is then deselected."
msgstr "Щракнете в текста там, където желаете да позиционирате курсора. Щракнете върху клетка, за да я направите текуща. Изборът ще бъде премахнат от досегашната селекция."
-#: 20050000.xhp#par_id3149763.10.help.text
-msgid "EXT"
-msgstr "РАЗШ"
-
#: 20050000.xhp#par_id3149580.11.help.text
-msgid "Extension mode (F8)"
-msgstr "Разширяване на селекцията (F8)"
+msgid "Extending selection (<item type=\"keycode\">F8</item>)"
+msgstr ""
#: 20050000.xhp#par_id3153717.12.help.text
msgid "Clicking in the text extends or crops the current selection."
msgstr "Щракването върху текст разширява или отрязва текущата селекция."
-#: 20050000.xhp#par_id3154047.13.help.text
-msgid "ADD"
-msgstr "ДОБ"
-
#: 20050000.xhp#par_id3147620.14.help.text
-msgid "Additional selection mode (Shift+F8)"
-msgstr "Добавяне към селекцията (Shift+F8)"
+msgid "Adding selection (<item type=\"keycode\">Shift+F8</item>)"
+msgstr ""
#: 20050000.xhp#par_id3154307.15.help.text
msgid "A new selection is added to an existing selection. The result is a multiple selection."
msgstr "Новата селекция се добавя към съществуващата. Получава се групова селекция."
-#: 20050000.xhp#par_id7234717.help.text
-msgid "BLK"
-msgstr "БЛК"
-
#: 20050000.xhp#par_id6971037.help.text
-msgid "Block selection mode (<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8)"
-msgstr "Режим на избиране по блокове (<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8)"
+msgid "Block selection (<item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8</item>)"
+msgstr ""
#: 20050000.xhp#par_id5258644.help.text
msgid "A block of text can be selected."
diff --git a/translations/source/bg/helpcontent2/source/text/shared/guide.po b/translations/source/bg/helpcontent2/source/text/shared/guide.po
index 6a592cad931..30ddf292c28 100644
--- a/translations/source/bg/helpcontent2/source/text/shared/guide.po
+++ b/translations/source/bg/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared%2Fguide.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2012-06-17 15:26+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
@@ -2402,8 +2402,8 @@ msgid "$[officename] can automatically open Microsoft Office 97/2000/XP document
msgstr "$[officename] може автоматично да отваря документи на Microsoft Office 97/2000/XP. При това обаче някои функции за оформление и форматиращи атрибути в по-сложните документи на Microsoft Office се обработват по-различно в $[officename] или не се поддържат. Поради това преобразуваните файлове изискват известно ръчно преформатиране, чието количество е пропорционално на сложността на структирата и форматирането на оригиналния документ. $[officename] не може да изпълнява скриптове на Visual Basic, но може да ги зарежда, за да ги анализирате."
#: ms_import_export_limitations.xhp#par_id0804200804174819.help.text
-msgid "The most recent versions of %PRODUCTNAME can load, but not save, the Microsoft Office Open XML document formats with the extensions docx, xlsx, and pptx. The same versions can also run some Excel Visual Basic scripts, if you enable this feature at <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - VBA Properties</item>."
-msgstr "Най-новите версии на %PRODUCTNAME могат да зареждат, но не и да записват форматите от групата Microsoft Office Open XML с разширенията docx, xlsx и pptx. Същите версии могат и да изпълняват някои скриптове на Visual Basic ot Excel, ако разрешите тази функция в <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Свойства</caseinline><defaultinline>Инструменти - Настройки</defaultinline></switchinline> - Зареждане/съхраняване - Настройки за VBA</item>"
+msgid "The most recent versions of %PRODUCTNAME can load and save the Microsoft Office Open XML document formats with the extensions docx, xlsx, and pptx. The same versions can also run some Excel Visual Basic scripts, if you enable this feature at <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - VBA Properties</item>."
+msgstr ""
#: ms_import_export_limitations.xhp#par_id3155934.3.help.text
msgid "The following lists provide a general overview of Microsoft Office features that may cause conversion challenges. These will not affect your ability to use or work with the content of the converted document."
@@ -4756,8 +4756,8 @@ msgid "<variable id=\"ms_user\"><link href=\"text/shared/guide/ms_user.xhp\" nam
msgstr "<variable id=\"ms_user\"><link href=\"text/shared/guide/ms_user.xhp\" name=\"Използване на Microsoft Office и $[officename]\">Използване на Microsoft Office и $[officename]</link></variable>"
#: ms_user.xhp#par_id3152801.1.help.text
-msgid "$[officename] can open and save documents in the Microsoft Office file formats. Microsoft Office Open XML formats can be read, but not saved."
-msgstr "$[officename] може да отваря и съхранява документи във файловите формати на Microsoft Office. Форматите Microsoft Office Open XML могат да се зареждат, но не и да се записват."
+msgid "$[officename] can open and save documents in the Microsoft Office file formats, including Microsoft Office Open XML formats."
+msgstr ""
#: ms_user.xhp#hd_id3145345.2.help.text
msgid "Opening a Microsoft Office File"
diff --git a/translations/source/bg/helpcontent2/source/text/shared/optionen.po b/translations/source/bg/helpcontent2/source/text/shared/optionen.po
index 8ca2514471c..20100d299ec 100644
--- a/translations/source/bg/helpcontent2/source/text/shared/optionen.po
+++ b/translations/source/bg/helpcontent2/source/text/shared/optionen.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared%2Foptionen.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-17 22:20+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2012-07-03 20:30+0200\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
"X-Project-Style: openoffice\n"
@@ -1833,7 +1833,7 @@ msgstr "Общи"
#: 01010600.xhp#bm_id3155450.help.text
msgid "<bookmark_value>opening; dialog settings</bookmark_value> <bookmark_value>saving; dialog settings</bookmark_value> <bookmark_value>years; 2-digit options</bookmark_value> <bookmark_value>Help Agent;options</bookmark_value> <bookmark_value>experimental features</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>отваряне; настройки на диалога</bookmark_value><bookmark_value>съхраняване; настройки на диалога</bookmark_value><bookmark_value>години; настройки за двуцифрени</bookmark_value><bookmark_value>асистент; настройки</bookmark_value><bookmark_value>експериментални възможности</bookmark_value>"
#: 01010600.xhp#hd_id3154514.8.help.text
msgid "<link href=\"text/shared/optionen/01010600.xhp\" name=\"General\">General</link>"
@@ -1921,11 +1921,11 @@ msgstr "<ahelp hid=\"OFFMGR_CHECKBOX_OFA_TP_MISC_CB_DOCSTATUS\">Определя
#: 01010600.xhp#hd_id3149399.help.text
msgid "Allow to save document even when the document is not modified"
-msgstr ""
+msgstr "Запазването на документа е разрешено, дори ако не е променен"
#: 01010600.xhp#par_id3145801.help.text
msgid "Documents do not only store their content, but also their view properties. A change in the view properties does not trigger document modified status. View properties include things like (in case of a spreadsheet) active sheet, cursor position, zoom level etc. Quite often users want to store the view properties after they have been changed, and always enabling the save action allows this."
-msgstr ""
+msgstr "В документите се съхранява не само съдържанието им, но и настройките на изгледа. Промяна в настройките на изгледа не установява състояние \"променен документ\". Тези настройки включват например (за електронни таблици) кой лист е активен, позицията на курсора, увеличението и т.н. Често потребителите искат да запазят настройките на изгледа, след като ги зададат, и разрешаването на запазване във всеки момент позволява това."
#: 01010600.xhp#hd_id3153561.5.help.text
msgid "Year (two digits)"
@@ -1941,11 +1941,11 @@ msgstr "В $[officename] годините се отбелязват с чети
#: 01010600.xhp#hd_id3148618.help.text
msgid "Enable experimental (unstable) features"
-msgstr ""
+msgstr "Разрешаване на експериментални (нестабилни) възможности"
#: 01010600.xhp#par_id3156344.help.text
msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty. In %PRODUCTNAME 3.6 it enables in-line formula editing in %PRODUCTNAME Math (so it is possibel to type inside the formula and navigate around it with cursor keys), and it also enables macro recording."
-msgstr ""
+msgstr "Отключва възможности, които още не са завършени или съдържат дефекти. Те са различни за всяка версия и дори може да няма такива. В%PRODUCTNAME 3.6 това са редактирането на формули на място в %PRODUCTNAME Math (позволява въвеждане във формулата и навигация в нея с клавишите за курсора) и записването на макроси."
#: 01050100.xhp#tit.help.text
msgctxt "01050100.xhp#tit.help.text"
@@ -2302,7 +2302,7 @@ msgstr "изтриване на съдържанието"
#: 01060800.xhp#par_id3154918.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D"
#: 01060800.xhp#par_id3153573.help.text
msgid "fill down"
@@ -2315,7 +2315,7 @@ msgstr "избиране на данни"
#: 01060800.xhp#par_id3154919.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+стрелка надолу"
#: 01060800.xhp#par_id3153574.help.text
msgctxt "01060800.xhp#par_id3153574.help.text"
@@ -2324,7 +2324,7 @@ msgstr "избиране на данни"
#: 01060800.xhp#par_id3154310.help.text
msgid "increase row height"
-msgstr ""
+msgstr "увеличаване височината на реда"
#: 01060800.xhp#par_id3153310.help.text
msgid "Where the actions are:"
@@ -4116,84 +4116,83 @@ msgstr "Формула"
#: 01060900.xhp#bm_id4249399.help.text
msgid " <bookmark_value>formula options;formula syntax</bookmark_value> <bookmark_value>formula options;separators</bookmark_value> <bookmark_value>formula options;reference syntax in string parameters</bookmark_value> <bookmark_value>separators;function</bookmark_value> <bookmark_value>separators;array column</bookmark_value> <bookmark_value>separators;array row</bookmark_value> "
-msgstr ""
+msgstr "<bookmark_value>формули, настройки за;синтаксис на формула</bookmark_value><bookmark_value>формули, настройки за;разделители</bookmark_value><bookmark_value>формули, настройки за;синтаксис на обръщения в низови параметри</bookmark_value><bookmark_value>разделители;във функции</bookmark_value><bookmark_value>разделители;на колони в масив</bookmark_value><bookmark_value>разделители;на редове в масив</bookmark_value>"
#: 01060900.xhp#hd_id3145071.help.text
msgid "<link href=\"text/shared/optionen/01060900.xhp\" name=\"Formula\">Formula</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01060900.xhp\" name=\"Formula\">Формула</link>"
#: 01060900.xhp#par_id3147576.help.text
msgid "<ahelp hid=\".\">Defines formula syntax options for %PRODUCTNAME Calc.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Задава настройките за синтаксис на формули в %PRODUCTNAME Calc.</ahelp>"
#: 01060900.xhp#hd_id3149399.help.text
msgid "Formula options"
-msgstr ""
+msgstr "Настройки за формули"
#: 01060900.xhp#hd_id31493991.help.text
msgid "Formula syntax"
-msgstr ""
+msgstr "Синтаксис на формулите"
#: 01060900.xhp#par_id3155419.help.text
msgid "There are three options. Let's see it by example. In a sample spreadsheet there are two worksheets, Sheet1 and Sheet2. In A1 cell of Sheet1 there is a reference to C4 cell of Sheet2."
-msgstr ""
+msgstr "Ще илюстрираме трите възможности с примери. Нека имаме електронна таблица с два листа, Лист1 и Лист2. В клетката A1 на Лист1 има обръщение към клетката C4 от Лист2."
#: 01060900.xhp#par_id3156155.help.text
msgid "<emph>Calc A1</emph> - This is the default of %PRODUCTNAME Calc. The reference will be <item type=\"input\">=$Sheet2.C4</item>"
-msgstr ""
+msgstr "<emph>Calc A1</emph> - подразбирана настройка в %PRODUCTNAME Calc. Обръщението ще бъде <item type=\"input\">=$Лист2.C4</item>"
#: 01060900.xhp#par_id3147530.help.text
msgid "<emph>Excel A1</emph> - This is the default of Microsoft Excel. The reference will be <item type=\"input\">=Sheet2!C4</item>"
-msgstr ""
+msgstr "<emph>Excel A1</emph> - подразбирана настройка в Microsoft Excel. Обръщението ще бъде <item type=\"input\">=Лист2!C4</item>"
#: 01060900.xhp#par_id3153061.help.text
msgid "<emph>Excel R1C1</emph> - This is the relative row/column addressing, known from Microsoft Excel. The reference will be <item type=\"input\">=Sheet2!R[3]C[2]</item>"
-msgstr ""
+msgstr "<emph>Excel R1C1</emph> - относително адресиране по ред и колона както в Microsoft Excel. Обръщението ще бъде <item type=\"input\">=Лист2!R[3]C[2]</item>"
#: 01060900.xhp#hd_id31493992.help.text
msgid "Use English function names"
-msgstr ""
+msgstr "Английски имена на функциите"
#: 01060900.xhp#par_id4155419.help.text
msgid "In %PRODUCTNAME Calc function names can be localized. By default, the check box is off, which means the localized function names are used. Checking this check box will swap localized function names with the English ones. This change takes effect in all of the following areas: formula input and display, function wizard, and formula tips. You can of course uncheck it to go back to the localized function names."
-msgstr ""
+msgstr "В %PRODUCTNAME Calc имената на функциите могат да се локализират. По подразбиране полето е празно, което означава използване на локализираните имена на функции. Отмятането му предизвиква заместване на локализираните имена с английските. Тази промяна се отразява при въвеждане и показване на формулите, в помощника за функции и в подсказките. Разбира се, можете да се върнете към локализираните имена, като изчистите полето."
#: 01060900.xhp#hd_id4149399.help.text
-#, fuzzy
msgid "Separators"
-msgstr "Разделител"
+msgstr "Разделители"
#: 01060900.xhp#par_id5155419.help.text
msgid "This option group lets you configure separators in your formula expressions. This comes in handy when, for instance, you want to separate your function parameters by commas (,) instead of semicolons (;)."
-msgstr ""
+msgstr "Тази група за избор ви позволява да настроите разделителите във формулите. Това е от полза например ако желаете да разделяте параметрите на функциите със запетаи (,) вместо точки и запетаи (;)."
#: 01060900.xhp#par_id6155419.help.text
msgid "For example, instead of <item type=\"input\">=SUM(A1;B1;C1)</item> you can type <item type=\"input\">=SUM(A1,B1,C1)</item>."
-msgstr ""
+msgstr "Например, вместо <item type=\"input\">=SUM(A1;B1;C1)</item> можете да въвеждате <item type=\"input\">=SUM(A1,B1,C1)</item>."
#: 01060900.xhp#par_id7155419.help.text
msgid "Likewise, you can also change the column and row separators for in-line arrays. Previously, an in-line array used semicolons (;) as the column separators and the pipe symbols (|) as the row separators, so a typical in-line array expression looked like this for a 5 x 2 matrix array:"
-msgstr ""
+msgstr "По същия начин можете да смените разделителите на колони и редове в директно задаваните масиви. Преди в тези масиви се използваха точки и запетаи (;) за отделяне на колони и вертикални черти (|) за отделяне на редове, така че типичен пряко зададен масив с размер 5 на 2 изглеждаше така:"
#: 01060900.xhp#par_id8155419.help.text
msgid "<item type=\"input\">={1;2;3;4;5|6;7;8;9;10}</item>"
-msgstr ""
+msgstr "<item type=\"input\">={1;2;3;4;5|6;7;8;9;10}</item>"
#: 01060900.xhp#par_id9155419.help.text
msgid "By changing the column separators to commas (,) and the row separators to semicolons (;), the same expression will look like this:"
-msgstr ""
+msgstr "Ако заменим разделителите на колони със запетаи (,) и разделителите на редове с точки и запетаи (;), същият израз ще изглежда така:"
#: 01060900.xhp#par_id0155419.help.text
msgid "<item type=\"input\">={1,2,3,4,5;6,7,8,9,10}</item>"
-msgstr ""
+msgstr "<item type=\"input\">={1,2,3,4,5;6,7,8,9,10}</item>"
#: 01060900.xhp#hd_id5149399.help.text
msgid "Detailed calculation settings"
-msgstr ""
+msgstr "Подробни настройки за изчисляване"
#: 01060900.xhp#par_id1015549.help.text
msgid "Here you can configure the formula syntax to use when parsing references given in string parameters. This affects built-in functions such as INDIRECT that takes a reference as a string value."
-msgstr ""
+msgstr "Тук можете да укажете какъв синтаксис за формули да се използва при анализ на обръщения в параметри – низове. Това влияе върху вградените функции като INDIRECT, която приема обръщение във вид на низ."
#: 01030000.xhp#tit.help.text
msgctxt "01030000.xhp#tit.help.text"
@@ -5047,29 +5046,28 @@ msgid "<ahelp hid=\".\">Click the <emph>Stop</emph> button to stop a test sessio
msgstr "<ahelp hid=\".\">Натиснете бутона <emph>Стоп</emph>, за да спрете теста ръчно.</ahelp>"
#: 01061000.xhp#tit.help.text
-#, fuzzy
msgid "Defaults"
-msgstr "По подразбиране"
+msgstr "Подразбирани настройки"
#: 01061000.xhp#bm_id4249399.help.text
msgid " <bookmark_value>defaults;number of worksheets in new documents</bookmark_value> <bookmark_value>defaults;prefix name for new worksheet</bookmark_value> <bookmark_value>number of worksheets in new documents</bookmark_value> <bookmark_value>prefix name for new worksheet</bookmark_value> "
-msgstr ""
+msgstr "<bookmark_value>подразбирани настройки;брой листове в нов документ</bookmark_value><bookmark_value>подразбирани настройки;префикс на името за нов лист</bookmark_value><bookmark_value>брой листове в нов документ</bookmark_value><bookmark_value>префикс на името за нов лист</bookmark_value>"
#: 01061000.xhp#hd_id3145071.help.text
msgid "<link href=\"text/shared/optionen/01061000.xhp\" name=\"Defaults\">Defaults</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01061000.xhp\" name=\"Defaults\">Подразбирани настройки</link>"
#: 01061000.xhp#par_id3147576.help.text
msgid "<ahelp hid=\".\">Defines default settings for new spreadsheet documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Задава подразбираните настройки за нови документи – електронни таблици.</ahelp>"
#: 01061000.xhp#hd_id3149399.help.text
msgid "New spreadsheets"
-msgstr ""
+msgstr "Нови електронни таблици"
#: 01061000.xhp#par_id3155419.help.text
msgid "You can set the number of worksheets in a new document, and the prefix name for new worksheets."
-msgstr ""
+msgstr "Можете да зададете броя работни листове в нов документ и префикса за имената им."
#: 01040000.xhp#tit.help.text
msgid "Text Document Options"
@@ -7568,7 +7566,6 @@ msgid "<ahelp hid=\"SW:RADIOBUTTON:TP_OPTTABLE_PAGE:RB_VAR\">Specifies that chan
msgstr "<ahelp hid=\"SW:RADIOBUTTON:TP_OPTTABLE_PAGE:RB_VAR\">Указва, че промените в ред или колона влияят върху размера на таблицата.</ahelp>"
#: 01090000.xhp#tit.help.text
-#, fuzzy
msgctxt "01090000.xhp#tit.help.text"
msgid "Formula"
msgstr "Формула"
diff --git a/translations/source/bg/helpcontent2/source/text/swriter/04.po b/translations/source/bg/helpcontent2/source/text/swriter/04.po
index f83871d6c1b..7f92cd07fd6 100644
--- a/translations/source/bg/helpcontent2/source/text/swriter/04.po
+++ b/translations/source/bg/helpcontent2/source/text/swriter/04.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fswriter%2F04.oo&subcomponent=ui\n"
"POT-Creation-Date: 2012-06-26 09:54+0200\n"
-"PO-Revision-Date: 2012-06-15 10:51+0200\n"
-"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
+"PO-Revision-Date: 2012-07-01 15:11+0200\n"
+"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
diff --git a/translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po b/translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 33e0b555d21..b78690659e3 100644
--- a/translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: CustomAc.ulf#OOO_CUSTOMACTION_1.LngText.text
diff --git a/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po b/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
index cef5e7549c9..24a9096a904 100644
--- a/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+officecfg%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FUI.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
"PO-Revision-Date: 2012-06-17 11:01+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10238,6 +10238,10 @@ msgstr "~Условно форматиране"
msgid "Conditional Formatting..."
msgstr "Условно форматиране..."
+#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ConditionalFormatManagerDialog.Label.value.text
+msgid "Manage..."
+msgstr ""
+
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_Deselect.Label.value.text
msgid "Undo Selection"
msgstr "Отмяна на избора"
diff --git a/translations/source/bg/sc/source/ui/optdlg.po b/translations/source/bg/sc/source/ui/optdlg.po
index a5530eb57b1..316c0b234e0 100644
--- a/translations/source/bg/sc/source/ui/optdlg.po
+++ b/translations/source/bg/sc/source/ui/optdlg.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: calcoptionsdlg.src#RID_SCDLG_FORMULA_CALCOPTIONS.FT_OPTION_EDIT_CAPTION.fixedtext.text
diff --git a/translations/source/bg/sc/source/ui/src.po b/translations/source/bg/sc/source/ui/src.po
index 3eb6c11e4bf..7cf59609a44 100644
--- a/translations/source/bg/sc/source/ui/src.po
+++ b/translations/source/bg/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fsrc.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-06-26 09:53+0200\n"
-"PO-Revision-Date: 2012-06-17 11:19+0200\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-03 20:15+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -260,7 +260,7 @@ msgstr "~Десетични позиции"
#: optdlg.src#RID_SCPAGE_FORMULA.FL_FORMULA_OPTIONS.fixedline.text
msgid "Formula options"
-msgstr "Настройки за формула"
+msgstr "Настройки за формули"
#: optdlg.src#RID_SCPAGE_FORMULA.FT_FORMULA_SYNTAX.fixedtext.text
msgid "Formula ~syntax"
@@ -268,7 +268,7 @@ msgstr "~Синтаксис на формулите"
#: optdlg.src#RID_SCPAGE_FORMULA.CB_ENGLISH_FUNC_NAME.checkbox.text
msgid "Use English function names"
-msgstr "Използване на английски имена на функциите"
+msgstr "Английски имена на функциите"
#: optdlg.src#RID_SCPAGE_FORMULA.FL_FORMULA_SEPS.fixedline.text
msgid "Separators"
@@ -9549,6 +9549,8 @@ msgid "Settings:"
msgstr "Настройки:"
#: solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text
+#, fuzzy
+msgctxt "solveroptions.src#RID_SCDLG_SOLVEROPTIONS.BTN_EDIT.pushbutton.text"
msgid "Edit..."
msgstr "Редактиране..."
@@ -9581,16 +9583,17 @@ msgstr "Премахване"
msgid "Conditional Formatting for"
msgstr "Условно форматиране за"
-#: condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text
-msgctxt "condformatdlg.src#RID_COND_ENTRY.FT_COND_NR.fixedtext.text"
-msgid "Condition"
-msgstr "Условие"
+#: condformatdlg.src#RID_COND_ENTRY.STR_CONDITION.string.text
+msgid "Condition "
+msgstr ""
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.1.stringlist.text
msgid "All Cells"
msgstr "Всички клетки"
#: condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text
+#, fuzzy
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_TYPE.2.stringlist.text"
msgid "Cell value is"
msgstr "Стойността на клетката е"
@@ -9623,14 +9626,20 @@ msgid "not equal to"
msgstr "различна от"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text
+#, fuzzy
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.7.stringlist.text"
msgid "between"
msgstr "между"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text
+#, fuzzy
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.8.stringlist.text"
msgid "not between"
msgstr "не между"
#: condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text
+#, fuzzy
+msgctxt "condformatdlg.src#RID_COND_ENTRY.LB_CELLIS_TYPE.9.stringlist.text"
msgid "duplicate"
msgstr "дубликат"
@@ -9825,6 +9834,25 @@ msgctxt "subtdlg.src#RID_SCDLG_SUBTOTALS.tabdialog.text"
msgid "Subtotals"
msgstr "Междинни суми"
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_ADD.pushbutton.text"
+msgid "Add"
+msgstr ""
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_REMOVE.pushbutton.text"
+msgid "Remove"
+msgstr ""
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text
+msgctxt "condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.BTN_EDIT.pushbutton.text"
+msgid "Edit..."
+msgstr ""
+
+#: condformatmgr.src#RID_SCDLG_COND_FORMAT_MANAGER.modaldialog.text
+msgid "Manage Conditional Formatting"
+msgstr ""
+
#: textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
msgctxt "textdlgs.src#RID_SCDLG_CHAR.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
msgid "Font"
@@ -12080,6 +12108,42 @@ msgstr ""
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Документът е цел на обръщение от друг документ и още не е съхранен. Затварянето му без съхраняване ще предизвика загуба на данни."
+#: globstr.src#RID_GLOBSTR.STR_HEADER_COND.string.text
+msgid "First Condition"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_CONDITION.string.text"
+msgid "Cell value is"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_COLORSCALE.string.text
+msgid "ColorScale"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DATABAR.string.text
+msgid "DataBar"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_BETWEEN.string.text"
+msgid "between"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_NOTBETWEEN.string.text"
+msgid "not between"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_UNIQUE.string.text
+msgid "unique"
+msgstr ""
+
+#: globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text
+msgctxt "globstr.src#RID_GLOBSTR.STR_COND_DUPLICATE.string.text"
+msgid "duplicate"
+msgstr ""
+
#: crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text
msgctxt "crnrdlg.src#RID_SCDLG_COLROWNAMERANGES.FL_ASSIGN.fixedline.text"
msgid "Range"
diff --git a/translations/source/bg/scp2/source/draw.po b/translations/source/bg/scp2/source/draw.po
index 9f425a21394..8fe81223f60 100644
--- a/translations/source/bg/scp2/source/draw.po
+++ b/translations/source/bg/scp2/source/draw.po
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: ~\n"
#: folderitem_draw.ulf#STR_FI_NAME_ZEICHNUNG.LngText.text
diff --git a/translations/source/bg/scp2/source/ooo.po b/translations/source/bg/scp2/source/ooo.po
index 9bfac6c0891..4a9d48bb6e6 100644
--- a/translations/source/bg/scp2/source/ooo.po
+++ b/translations/source/bg/scp2/source/ooo.po