/* -*- 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 . */ #pragma once #include "global.hxx" #include "address.hxx" #include "cellvalue.hxx" #include "columnspanset.hxx" #include "rangelst.hxx" #include "types.hxx" #include "mtvelements.hxx" #include #include #include #include "attarray.hxx" #include #include #include #include namespace editeng { class SvxBorderLine; } namespace formula { struct VectorRefArray; } namespace sc { struct BroadcasterState; struct FormulaGroupEntry; class StartListeningContext; class EndListeningContext; class CopyFromClipContext; class CopyToClipContext; class CopyToDocContext; class MixDocContext; struct RefUpdateContext; struct RefUpdateInsertTabContext; struct RefUpdateDeleteTabContext; struct RefUpdateMoveTabContext; class EditTextIterator; struct NoteEntry; class DocumentStreamAccess; class CellValues; class TableValues; struct RowSpan; class RowHeightContext; class CompileFormulaContext; struct SetFormulaDirtyContext; enum class MatrixEdge; class ColumnIterator; class Sparkline; } class Fraction; class OutputDevice; class SfxItemPoolCache; class SvtListener; class SfxPoolItem; class SfxStyleSheetBase; class SvxBoxInfoItem; class SvxBoxItem; class ScDocument; class ScEditDataArray; class ScFormulaCell; class ScMarkData; class ScPatternAttr; class ScStyleSheet; class SvtBroadcaster; class ScTypedStrData; class ScProgress; class ScFunctionData; class ScFlatBoolRowSegments; struct ScSetStringParam; struct ScColWidthParam; struct ScRefCellValue; struct ScCellValue; class ScHint; enum class ScMF; struct ScFilterEntries; struct ScInterpreterContext; struct ScNeededSizeOptions { const ScPatternAttr* pPattern; bool bFormula; bool bSkipMerged; bool bGetFont; bool bTotalSize; ScNeededSizeOptions(); }; // A shared implementation of some column code and data. // This is used by ScColumn, but also by ScTable for the unallocated // columns (one instance that is the default for all not-yet allocated columns). class ScColumnData { protected: std::unique_ptr pAttrArray; ScColumnData(const ScColumnData&) = delete; ScColumnData& operator= (const ScColumnData&) = delete; public: ScColumnData() = default; void InitAttrArray(ScAttrArray* attrArray) { pAttrArray.reset(attrArray); } ScDocument& GetDoc() const { return pAttrArray->GetDoc(); } ScAttrArray& AttrArray() { return *pAttrArray; } const ScAttrArray& AttrArray() const { return *pAttrArray; } const SfxPoolItem& GetAttr( SCROW nRow, sal_uInt16 nWhich ) const; template const T& GetAttr( SCROW nRow, TypedWhichId nWhich ) const { return static_cast(GetAttr(nRow, sal_uInt16(nWhich))); } const SfxPoolItem& GetAttr( SCROW nRow, sal_uInt16 nWhich, SCROW& nStartRow, SCROW& nEndRow ) const; template const T& GetAttr( SCROW nRow, TypedWhichId nWhich, SCROW& nStartRow, SCROW& nEndRow ) const { return static_cast(GetAttr(nRow, sal_uInt16(nWhich), nStartRow, nEndRow)); } void SetAttrEntries(std::vector && vNewData); const ScPatternAttr* GetPattern( SCROW nRow ) const; const ScPatternAttr* GetMostUsedPattern( SCROW nStartRow, SCROW nEndRow ) const; SCROW ApplySelectionCache( SfxItemPoolCache* pCache, const ScMarkData& rMark, ScEditDataArray* pDataArray, bool* const pIsChanged, SCCOL nCol ); void ApplyPatternArea( SCROW nStartRow, SCROW nEndRow, const ScPatternAttr& rPatAttr, ScEditDataArray* pDataArray = nullptr, bool* const pIsChanged = nullptr); void MergePatternArea( ScMergePatternState& rState, SCROW nRow1, SCROW nRow2, bool bDeep ) const; sal_uInt32 GetNumberFormat( const ScInterpreterContext& rContext, SCROW nRow ) const; sal_uInt32 GetNumberFormat( SCROW nStartRow, SCROW nEndRow ) const; /// Including current, may return -1 SCROW GetNextUnprotected( SCROW nRow, bool bUp ) const; const ScStyleSheet* GetStyle( SCROW nRow ) const; void ApplyStyleArea( SCROW nStartRow, SCROW nEndRow, const ScStyleSheet& rStyle ); bool HasAttrib( SCROW nRow1, SCROW nRow2, HasAttrFlags nMask ) const; bool HasAttrib( SCROW nRow, HasAttrFlags nMask, SCROW* nStartRow = nullptr, SCROW* nEndRow = nullptr ) const; std::unique_ptr CreateAttrIterator( SCROW nStartRow, SCROW nEndRow ) const; bool IsAllAttrEqual( const ScColumnData& rCol, SCROW nStartRow, SCROW nEndRow ) const; void ClearSelectionItems( const sal_uInt16* pWhich, const ScMarkData& rMark, SCCOL nCol ); void ChangeSelectionIndent( bool bIncrement, const ScMarkData& rMark, SCCOL nCol ); bool TestInsertRow( SCSIZE nSize ) const; void InsertRow( SCROW nStartRow, SCSIZE nSize ); void DeleteRow( SCROW nStartRow, SCSIZE nSize ); }; // Use protected inheritance to prevent publishing some internal ScColumnData // functions as part of ScColumn. If they should be public in ScColumn, // use 'using' to make them public. class ScColumn : protected ScColumnData { // Empty values correspond with empty cells. All non-empty cell positions // must have non-empty elements. For text width, the value should be // either the real text width, or TEXTWIDTH_DIRTY in case it hasn't been // calculated yet. For script type, it should be either the real script // type value or SvtScriptType::UNKNOWN. sc::CellTextAttrStoreType maCellTextAttrs; // Cell notes sc::CellNoteStoreType maCellNotes; // Broadcasters for formula cells. sc::BroadcasterStoreType maBroadcasters; // Cell values. sc::CellStoreType maCells; // Sparklines sc::SparklineStoreType maSparklines; size_t mnBlkCountFormula; SCCOL nCol; SCTAB nTab; bool mbEmptyBroadcastersPending : 1; // a broadcaster not removed during EnableDelayDeletingBroadcasters() friend class ScDocument; // for FillInfo friend class ScTable; friend class ScValueIterator; friend class ScHorizontalValueIterator; friend class ScDBQueryDataIterator; template< ScQueryCellIteratorAccess accessType, ScQueryCellIteratorType queryType > friend class ScQueryCellIteratorBase; template< ScQueryCellIteratorAccess accessType > friend class ScQueryCellIteratorAccessSpecific; friend class ScFormulaGroupIterator; friend class ScCellIterator; friend class ScHorizontalCellIterator; friend class ScColumnTextWidthIterator; friend class ScDocumentImport; friend class sc::DocumentStreamAccess; friend class sc::SingleColumnSpanSet; friend class sc::ColumnSpanSet; friend class sc::EditTextIterator; friend class sc::CellValues; friend class sc::TableValues; friend class sc::CellStoreEvent; bool ParseString( ScCellValue& rCell, SCROW nRow, SCTAB nTab, const OUString& rString, formula::FormulaGrammar::AddressConvention eConv, const ScSetStringParam* pParam ); void duplicateSparkline(sc::CopyFromClipContext& rContext, sc::ColumnBlockPosition* pBlockPos, size_t nColOffset, size_t nDestSize, ScAddress aDestPosition); public: /** Broadcast mode for SetDirty(SCROW,SCROW,BroadcastMode). */ enum BroadcastMode { BROADCAST_NONE, ///< no broadcasting BROADCAST_DATA_POSITIONS, ///< broadcast existing cells with position => does AreaBroadcast BROADCAST_BROADCASTERS ///< broadcast only existing cell broadcasters => no AreaBroadcast of range! }; ScColumn(ScSheetLimits const &); ~ScColumn() COVERITY_NOEXCEPT_FALSE; void Init(SCCOL nNewCol, SCTAB nNewTab, ScDocument& rDoc, bool bEmptyAttrArray); using ScColumnData::GetDoc; SCTAB GetTab() const { return nTab; } SCCOL GetCol() const { return nCol; } sc::CellStoreType& GetCellStore() { return maCells; } const sc::CellStoreType& GetCellStore() const { return maCells; } sc::CellTextAttrStoreType& GetCellAttrStore() { return maCellTextAttrs; } const sc::CellTextAttrStoreType& GetCellAttrStore() const { return maCellTextAttrs; } sc::CellNoteStoreType& GetCellNoteStore() { return maCellNotes; } const sc::CellNoteStoreType& GetCellNoteStore() const { return maCellNotes; } sc::SparklineStoreType& GetSparklineStore() { return maSparklines; } const sc::SparklineStoreType& GetSparklineStore() const { return maSparklines; } ScRefCellValue GetCellValue( SCROW nRow ) const; ScRefCellValue GetCellValue( sc::ColumnBlockPosition& rBlockPos, SCROW nRow ); ScRefCellValue GetCellValue( sc::ColumnBlockConstPosition& rBlockPos, SCROW nRow ) const; static ScRefCellValue GetCellValue( const sc::CellStoreType::const_iterator& itPos, size_t nOffset ); const sc::CellTextAttr* GetCellTextAttr( SCROW nRow ) const; const sc::CellTextAttr* GetCellTextAttr( sc::ColumnBlockConstPosition& rBlockPos, SCROW nRow ) const; void Delete( SCROW nRow ); void DeleteContent( SCROW nRow, bool bBroadcast = true ); void FreeAll(); void FreeNotes(); void Swap( ScColumn& rOther, SCROW nRow1, SCROW nRow2, bool bPattern ); bool HasAttribSelection( const ScMarkData& rMark, HasAttrFlags nMask ) const; bool IsMerged( SCROW nRow ) const; bool ExtendMerge( SCCOL nThisCol, SCROW nStartRow, SCROW nEndRow, SCCOL& rPaintCol, SCROW& rPaintRow, bool bRefresh ); bool IsEmptyData() const; bool IsEmptyAttr() const; // data only: bool IsEmptyData(SCROW nStartRow, SCROW nEndRow) const; SCSIZE GetEmptyLinesInBlock( SCROW nStartRow, SCROW nEndRow, ScDirection eDir ) const; bool HasDataAt( SCROW nRow, ScDataAreaExtras* pDataAreaExtras = nullptr ) const; bool HasDataAt( sc::ColumnBlockConstPosition& rBlockPos, SCROW nRow, ScDataAreaExtras* pDataAreaExtras = nullptr ) const; bool HasDataAt( sc::ColumnBlockPosition& rBlockPos, SCROW nRow, ScDataAreaExtras* pDataAreaExtras = nullptr ); void GetDataExtrasAt( SCROW nRow, ScDataAreaExtras& rDataAreaExtras ) const; bool HasVisibleDataAt(SCROW nRow) const; SCROW GetFirstDataPos() const; SCROW GetLastDataPos() const; SCROW GetLastDataPos( SCROW nLastRow, ScDataAreaExtras* pDataAreaExtras = nullptr ) const; bool GetPrevDataPos(SCROW& rRow) const; bool GetNextDataPos(SCROW& rRow) const; bool TrimEmptyBlocks(SCROW& rRowStart, SCROW& rRowEnd) const; void FindDataAreaPos(SCROW& rRow, bool bDown) const; // (without Broadcaster) void FindUsed( SCROW nStartRow, SCROW nEndRow, mdds::flat_segment_tree& rUsed ) const; SCSIZE VisibleCount( SCROW nStartRow, SCROW nEndRow ) const; sc::MatrixEdge GetBlockMatrixEdges(SCROW nRow1, SCROW nRow2, sc::MatrixEdge nMask, bool bNoMatrixAtAll ) const; // Repeated calls to HasSelectionMatrixFragment() repeatedly call rMark.GetMarkedRanges(), // which may be quite slow. For that reason first save the result of rMark.GetMarkedRanges() // pass that to HasSelectionMatrixFragment() calls. bool HasSelectionMatrixFragment(const ScMarkData& rMark, const ScRangeList& rRangeList) const; bool GetFirstVisibleAttr( SCROW& rFirstRow ) const; bool GetLastVisibleAttr( SCROW& rLastRow, bool bSkipEmpty ) const; bool HasVisibleAttrIn( SCROW nStartRow, SCROW nEndRow ) const; bool IsVisibleAttrEqual( const ScColumn& rCol, SCROW nStartRow, SCROW nEndRow ) const; bool TestInsertCol( SCROW nStartRow, SCROW nEndRow) const; bool TestInsertRow( SCROW nStartRow, SCSIZE nSize ) const; void InsertRow( SCROW nStartRow, SCSIZE nSize ); void GetUnprotectedCells(SCROW nStartRow, SCROW nEndRow, ScRangeList& rRangeList ) const; /** * @param nStartRow top row position * @param nSize size of the segment to delete. * @param pGroupPos when non-NULL, stores the top position of formula * group that's been merged as a result of row deletion. */ void DeleteRow( SCROW nStartRow, SCSIZE nSize, std::vector* pGroupPos ); void DeleteArea( SCROW nStartRow, SCROW nEndRow, InsertDeleteFlags nDelFlag, bool bBroadcast = true, sc::ColumnSpanSet* pBroadcastSpans = nullptr ); void DeleteRanges( const std::vector& rRanges, InsertDeleteFlags nDelFlag ); void CopyToClip( sc::CopyToClipContext& rCxt, SCROW nRow1, SCROW nRow2, ScColumn& rColumn ) const; void CopyStaticToDocument( SCROW nRow1, SCROW nRow2, const SvNumberFormatterMergeMap& rMap, ScColumn& rDestCol ); void CopyCellToDocument( SCROW nSrcRow, SCROW nDestRow, ScColumn& rDestCol ); void InitBlockPosition( sc::ColumnBlockPosition& rBlockPos ); void InitBlockPosition( sc::ColumnBlockConstPosition& rBlockPos ) const; void DeleteBeforeCopyFromClip( sc::CopyFromClipContext& rCxt, const ScColumn& rClipCol, sc::ColumnSpanSet& rBroadcastSpans ); void CopyOneCellFromClip( sc::CopyFromClipContext& rCxt, SCROW nRow1, SCROW nRow2, size_t nColOffset ); void CopyFromClip( sc::CopyFromClipContext& rCxt, SCROW nRow1, SCROW nRow2, tools::Long nDy, ScColumn& rColumn ); void RemoveEditAttribs( sc::ColumnBlockPosition& rBlockPos, SCROW nStartRow, SCROW nEndRow ); // Selection (?) of this document void MixMarked( sc::MixDocContext& rCxt, const ScMarkData& rMark, ScPasteFunc nFunction, bool bSkipEmpty, const ScColumn& rSrcCol ); void MixData( sc::MixDocContext& rCxt, SCROW nRow1, SCROW nRow2, ScPasteFunc nFunction, bool bSkipEmpty, const ScColumn& rSrcCol ); void UpdateSelectionFunction( const ScRangeList& rRanges, ScFunctionData& rData, const ScFlatBoolRowSegments& rHiddenRows ); void CopyToColumn( sc::CopyToDocContext& rCxt, SCROW nRow1, SCROW nRow2, InsertDeleteFlags nFlags, bool bMarked, ScColumn& rColumn, const ScMarkData* pMarkData = nullptr, bool bAsLink = false, bool bGlobalNamesToLocal = false ) const; void UndoToColumn( sc::CopyToDocContext& rCxt, SCROW nRow1, SCROW nRow2, InsertDeleteFlags nFlags, bool bMarked, ScColumn& rColumn) const; void CopyScenarioFrom( const ScColumn& rSrcCol ); void CopyScenarioTo( ScColumn& rDestCol ) const; bool TestCopyScenarioTo( const ScColumn& rDestCol ) const; void MarkScenarioIn( ScMarkData& rDestMark ) const; void CopyUpdated( const ScColumn* pPosCol, ScColumn& rDestCol ) const; void SwapCol(ScColumn& rCol); void MoveTo(SCROW nStartRow, SCROW nEndRow, ScColumn& rCol); bool HasEditCells(SCROW nStartRow, SCROW nEndRow, SCROW& rFirst); bool SetString( SCROW nRow, SCTAB nTab, const OUString& rString, formula::FormulaGrammar::AddressConvention eConv, const ScSetStringParam* pParam = nullptr ); void SetEditText( SCROW nRow, std::unique_ptr pEditText ); void SetEditText( sc::ColumnBlockPosition& rBlockPos, SCROW nRow, std::unique_ptr pEditText ); void SetEditText( sc::ColumnBlockPosition& rBlockPos, SCROW nRow, const EditTextObject& rEditText ); void SetEditText( SCROW nRow, const EditTextObject& rEditText, const SfxItemPool* pEditPool ); void SetFormula( SCROW nRow, const ScTokenArray& rArray, formula::FormulaGrammar::Grammar eGram ); void SetFormula( SCROW nRow, const OUString& rFormula, formula::FormulaGrammar::Grammar eGram ); /** * Takes ownership of pCell * * @return pCell if it was successfully inserted, NULL otherwise. pCell * is deleted automatically on failure to insert. */ ScFormulaCell* SetFormulaCell( SCROW nRow, ScFormulaCell* pCell, sc::StartListeningType eListenType = sc::SingleCellListening, bool bInheritNumFormatIfNeeded = true); void SetFormulaCell( sc::ColumnBlockPosition& rBlockPos, SCROW nRow, ScFormulaCell* pCell, sc::StartListeningType eListenType = sc::SingleCellListening, bool bInheritNumFormatIfNeeded = true); bool SetFormulaCells( SCROW nRow, std::vector& rCells ); bool HasFormulaCell() const; bool HasFormulaCell( SCROW nRow1, SCROW nRow2 ) const; void CloneFormulaCell( sc::ColumnBlockPosition& rBlockPos, const ScFormulaCell& rSrc, const sc::CellTextAttr& rAttr, const std::vector& rRanges ); void CloneFormulaCell( const ScFormulaCell& rSrc, const sc::CellTextAttr& rAttr, const std::vector& rRanges ); svl::SharedString GetSharedString( SCROW nRow ) const; void SetRawString( SCROW nRow, const OUString& rStr ); void SetRawString( SCROW nRow, const svl::SharedString& rStr ); void SetRawString( sc::ColumnBlockPosition& rBlockPos, SCROW nRow, const svl::SharedString& rStr, bool bBroadcast = true ); void SetValue( SCROW nRow, double fVal ); void SetValues( const SCROW nRow, const std::vector& rVals ); void SetValue( sc::ColumnBlockPosition& rBlockPos, SCROW nRow, double fVal, bool bBroadcast = true ); void SetError( SCROW nRow, const FormulaError nError); OUString GetString( SCROW nRow, const ScInterpreterContext* pContext = nullptr ) const { return GetString( GetCellValue( nRow ), nRow, pContext ); } OUString GetString( sc::ColumnBlockConstPosition& rBlockPos, SCROW nRow, const ScInterpreterContext* pContext = nullptr ) const { return GetString( GetCellValue( rBlockPos, nRow ), nRow, pContext ); } double* GetValueCell( SCROW nRow ); // Note that if pShared is set and a value is returned that way, the returned OUString is empty. OUString GetInputString( SCROW nRow, bool bForceSystemLocale = false ) const { return GetInputString( GetCellValue( nRow ), nRow, bForceSystemLocale ); } OUString GetInputString( sc::ColumnBlockConstPosition& rBlockPos, SCROW nRow, bool bForceSystemLocale = false ) const { return GetInputString( GetCellValue( rBlockPos, nRow ), nRow, bForceSystemLocale ); } double GetValue( SCROW nRow ) const; const EditTextObject* GetEditText( SCROW nRow ) const; void RemoveEditTextCharAttribs( SCROW nRow, const ScPatternAttr& rAttr ); OUString GetFormula( SCROW nRow ) const; const ScFormulaCell* GetFormulaCell( SCROW nRow ) const; ScFormulaCell* GetFormulaCell( SCROW nRow ); ScFormulaCell * const * GetFormulaCellBlockAddress( SCROW nRow, size_t& rBlockSize ) const; CellType GetCellType( SCROW nRow ) const; SCSIZE GetCellCount() const; sal_uInt64 GetWeightedCount() const; sal_uInt64 GetWeightedCount(SCROW nStartRow, SCROW nEndRow) const; sal_uInt64 GetCodeCount() const; // RPN-Code in formulas FormulaError GetErrCode( SCROW nRow ) const; bool HasStringData( SCROW nRow ) const; bool HasValueData( SCROW nRow ) const; bool HasStringCells( SCROW nStartRow, SCROW nEndRow ) const; sc::MultiDataCellState::StateType HasDataCellsInRange( SCROW nRow1, SCROW nRow2, SCROW* pRow1 ) const; bool IsFormulaDirty( SCROW nRow ) const; void CheckVectorizationState(); void SetAllFormulasDirty( const sc::SetFormulaDirtyContext& rCxt ); void SetDirtyFromClip( SCROW nRow1, SCROW nRow2, sc::ColumnSpanSet& rBroadcastSpans ); void SetDirty( SCROW nRow1, SCROW nRow2, BroadcastMode ); void SetDirtyVar(); void SetDirtyAfterLoad(); void SetTableOpDirty( const ScRange& ); void CalcAll(); void CalcAfterLoad( sc::CompileFormulaContext& rCxt, bool bStartListening ); void CompileAll( sc::CompileFormulaContext& rCxt ); void CompileXML( sc::CompileFormulaContext& rCxt, ScProgress& rProgress ); /** Broadcast single broadcasters in range, without explicitly setting anything dirty, not doing area broadcasts. @param rHint address is modified to adapt to the actual broadcasted position on each iteration and upon return points to the last position broadcasted. */ bool BroadcastBroadcasters( SCROW nRow1, SCROW nRow2, SfxHintId nHint ); bool CompileErrorCells( sc::CompileFormulaContext& rCxt, FormulaError nErrCode ); void ResetChanged( SCROW nStartRow, SCROW nEndRow ); bool UpdateReferenceOnCopy( sc::RefUpdateContext& rCxt, ScDocument* pUndoDoc = nullptr ); /** * Update reference addresses in formula cell in response to mass cell * movement. * * @return true if reference of at least one formula cell has been * updated, false otherwise. */ bool UpdateReference( sc::RefUpdateContext& rCxt, ScDocument* pUndoDoc ); void UpdateInsertTab( sc::RefUpdateInsertTabContext& rCxt ); void UpdateInsertTabOnlyCells( sc::RefUpdateInsertTabContext& rCxt ); void UpdateDeleteTab( sc::RefUpdateDeleteTabContext& rCxt ); void UpdateMoveTab( sc::RefUpdateMoveTabContext& rCxt, SCTAB nTabNo ); void UpdateCompile( bool bForceIfNameInUse = false ); void UpdateTranspose( const ScRange& rSource, const ScAddress& rDest, ScDocument* pUndoDoc ); void UpdateGrow( const ScRange& rArea, SCCOL nGrowX, SCROW nGrowY ); void SetTabNo(SCTAB nNewTab); void FindRangeNamesInUse(SCROW nRow1, SCROW nRow2, sc::UpdatedRangeNames& rIndexes) const; void PreprocessRangeNameUpdate( sc::EndListeningContext& rEndListenCxt, sc::CompileFormulaContext& rCompileCxt ); void CompileHybridFormula( sc::StartListeningContext& rStartListenCxt, sc::CompileFormulaContext& rCompileCxt ); void PreprocessDBDataUpdate( sc::EndListeningContext& rEndListenCxt, sc::CompileFormulaContext& rCompileCxt ); using ScColumnData::GetAttr; using ScColumnData::GetPattern; using ScColumnData::GetNumberFormat; void MergeSelectionPattern( ScMergePatternState& rState, const ScMarkData& rMark, bool bDeep ) const; void MergeBlockFrame( SvxBoxItem* pLineOuter, SvxBoxInfoItem* pLineInner, ScLineFlags& rFlags, SCROW nStartRow, SCROW nEndRow, bool bLeft, SCCOL nDistRight ) const; void ApplyBlockFrame(const SvxBoxItem& rLineOuter, const SvxBoxInfoItem* pLineInner, SCROW nStartRow, SCROW nEndRow, bool bLeft, SCCOL nDistRight); void ApplyAttr( SCROW nRow, const SfxPoolItem& rAttr ); void ApplyPattern( SCROW nRow, const ScPatternAttr& rPatAttr ); const ScPatternAttr* SetPattern( SCROW nRow, std::unique_ptr ); void SetPattern( SCROW nRow, const ScPatternAttr& ); void SetPatternArea( SCROW nStartRow, SCROW nEndRow, const ScPatternAttr& ); void ApplyPatternIfNumberformatIncompatible( const ScRange& rRange, const ScPatternAttr& rPattern, SvNumFormatType nNewType ); void ApplyStyle( SCROW nRow, const ScStyleSheet* rStyle ); void ApplySelectionStyle(const ScStyleSheet& rStyle, const ScMarkData& rMark); void ApplySelectionLineStyle( const ScMarkData& rMark, const ::editeng::SvxBorderLine* pLine, bool bColorOnly ); void AddCondFormat(SCROW nStartRow, SCROW nEndRow, sal_uInt32 nIndex ); void RemoveCondFormat(SCROW nStartRow, SCROW nEndRow, sal_uInt32 nIndex ); const ScStyleSheet* GetSelectionStyle( const ScMarkData& rMark, bool& rFound ) const; const ScStyleSheet* GetAreaStyle( bool& rFound, SCROW nRow1, SCROW nRow2 ) const; void FindStyleSheet( const SfxStyleSheetBase* pStyleSheet, ScFlatBoolRowSegments& rUsedRows, bool bReset ); bool IsStyleSheetUsed( const ScStyleSheet& rStyle ) const; /// May return -1 if not found SCROW SearchStyle( SCROW nRow, const ScStyleSheet* pSearchStyle, bool bUp, bool bInSelection, const ScMarkData& rMark) const; bool SearchStyleRange( SCROW& rRow, SCROW& rEndRow, const ScStyleSheet* pSearchStyle, bool bUp, bool bInSelection, const ScMarkData& rMark) const; bool ApplyFlags( SCROW nStartRow, SCROW nEndRow, ScMF nFlags ); bool RemoveFlags( SCROW nStartRow, SCROW nEndRow, ScMF nFlags ); void ClearItems( SCROW nStartRow, SCROW nEndRow, const sal_uInt16* pWhich ); void RemoveProtected( SCROW nStartRow, SCROW nEndRow ); SCROW ApplySelectionCache( SfxItemPoolCache* pCache, const ScMarkData& rMark, ScEditDataArray* pDataArray, bool* const pIsChanged ); void DeleteSelection( InsertDeleteFlags nDelFlag, const ScMarkData& rMark, bool bBroadcast ); void ClearSelectionItems( const sal_uInt16* pWhich, const ScMarkData& rMark ); void ChangeSelectionIndent( bool bIncrement, const ScMarkData& rMark ); tools::Long GetNeededSize( SCROW nRow, OutputDevice* pDev, double nPPTX, double nPPTY, const Fraction& rZoomX, const Fraction& rZoomY, bool bWidth, const ScNeededSizeOptions& rOptions, const ScPatternAttr** pPatternChange, bool bInPrintTwips = false ) const; sal_uInt16 GetOptimalColWidth( OutputDevice* pDev, double nPPTX, double nPPTY, const Fraction& rZoomX, const Fraction& rZoomY, bool bFormula, sal_uInt16 nOldWidth, const ScMarkData* pMarkData, const ScColWidthParam* pParam) const; void GetOptimalHeight( sc::RowHeightContext& rCxt, SCROW nStartRow, SCROW nEndRow, sal_uInt16 nMinHeight, SCROW nMinStart ); void GetFilterEntries( sc::ColumnBlockConstPosition& rBlockPos, SCROW nStartRow, SCROW nEndRow, ScFilterEntries& rFilterEntries, bool bFiltering, bool bFilteredRow ); bool GetDataEntries( SCROW nRow, std::set& rStrings) const; void UpdateInsertTabAbs(SCTAB nNewPos); bool TestTabRefAbs(SCTAB nTable) const; bool GetNextSpellingCell(SCROW& nRow, bool bInSel, const ScMarkData& rData) const; void StartListeningFormulaCells( sc::StartListeningContext& rStartCxt, sc::EndListeningContext& rEndCxt, SCROW nRow1, SCROW nRow2 ); void EndListeningFormulaCells( sc::EndListeningContext& rCxt, SCROW nRow1, SCROW nRow2, SCROW* pStartRow, SCROW* pEndRow ); void StartListening( SvtListener& rLst, SCROW nRow ); void EndListening( SvtListener& rLst, SCROW nRow ); void StartListening( sc::StartListeningContext& rCxt, const ScAddress& rAddress, SvtListener& rListener ); void EndListening( sc::EndListeningContext& rCxt, const ScAddress& rAddress, SvtListener& rListener ); void StartListeners( sc::StartListeningContext& rCxt, bool bAll ); void SetDirtyIfPostponed(); void BroadcastRecalcOnRefMove(); void CollectListeners( std::vector& rListeners, SCROW nRow1, SCROW nRow2 ); void CollectFormulaCells( std::vector& rCells, SCROW nRow1, SCROW nRow2 ); void CompileDBFormula( sc::CompileFormulaContext& rCxt ); void CompileColRowNameFormula( sc::CompileFormulaContext& rCxt ); sal_Int32 GetMaxStringLen( SCROW nRowStart, SCROW nRowEnd, rtl_TextEncoding eCharSet ) const; sal_Int32 GetMaxNumberStringLen( sal_uInt16& nPrecision, SCROW nRowStart, SCROW nRowEnd ) const; sal_uInt16 GetTextWidth(SCROW nRow) const; void SetTextWidth(SCROW nRow, sal_uInt16 nWidth); SvtScriptType GetScriptType( SCROW nRow ) const; /** * Get combined script types of the specified range. This method may * update script types on demand if they have not been determined. */ SvtScriptType GetRangeScriptType( sc::CellTextAttrStoreType::iterator& itPos, SCROW nRow1, SCROW nRow2, const sc::CellStoreType::iterator& itr); void SetScriptType( SCROW nRow, SvtScriptType nType ); void UpdateScriptTypes( SCROW nRow1, SCROW nRow2 ); formula::FormulaTokenRef ResolveStaticReference( SCROW nRow ); bool ResolveStaticReference( ScMatrix& rMat, SCCOL nMatCol, SCROW nRow1, SCROW nRow2 ); void FillMatrix( ScMatrix& rMat, size_t nMatCol, SCROW nRow1, SCROW nRow2, svl::SharedStringPool* pPool ) const; formula::VectorRefArray FetchVectorRefArray( SCROW nRow1, SCROW nRow2 ); bool HandleRefArrayForParallelism( SCROW nRow1, SCROW nRow2, const ScFormulaCellGroupRef& mxGroup, ScAddress* pDirtiedAddress ); #ifdef DBG_UTIL void AssertNoInterpretNeeded( SCROW nRow1, SCROW nRow2 ); #endif void SetFormulaResults( SCROW nRow, const double* pResults, size_t nLen ); void CalculateInThread( ScInterpreterContext& rContext, SCROW nRow, size_t nLen, size_t nOffset, unsigned nThisThread, unsigned nThreadsTotal ); void HandleStuffAfterParallelCalculation( SCROW nRow, size_t nLen, ScInterpreter* pInterpreter ); void SetNumberFormat( SCROW nRow, sal_uInt32 nNumberFormat ); SvtBroadcaster* GetBroadcaster( SCROW nRow ); const SvtBroadcaster* GetBroadcaster( SCROW nRow ) const; void DeleteBroadcasters( sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2 ); void PrepareBroadcastersForDestruction(); void DeleteEmptyBroadcasters(); void Broadcast( SCROW nRow ); void BroadcastCells( const std::vector& rRows, SfxHintId nHint ); void BroadcastRows( SCROW nStartRow, SCROW nEndRow, SfxHintId nHint ); // Spaklines sc::SparklineCell* GetSparklineCell(SCROW nRow); void CreateSparklineCell(SCROW nRow, std::shared_ptr const& pSparkline); void DeleteSparklineCells(sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2); bool DeleteSparkline(SCROW nRow); bool IsSparklinesEmptyBlock(SCROW nStartRow, SCROW nEndRow) const; void CopyCellSparklinesToDocument(SCROW nRow1, SCROW nRow2, ScColumn& rDestCol, SCROW nRowOffsetDest = 0) const; void DuplicateSparklines(SCROW nStartRow, size_t nDataSize, ScColumn& rDestCol, sc::ColumnBlockPosition& rDestBlockPos, SCROW nRowOffsetDest = 0) const; bool HasSparklines() const; SCROW GetSparklinesMaxRow() const; SCROW GetSparklinesMinRow() const; // cell notes ScPostIt* GetCellNote( SCROW nRow ); const ScPostIt* GetCellNote( SCROW nRow ) const; ScPostIt* GetCellNote( sc::ColumnBlockConstPosition& rBlockPos, SCROW nRow ); const ScPostIt* GetCellNote( sc::ColumnBlockConstPosition& rBlockPos, SCROW nRow ) const; void DeleteCellNotes( sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2, bool bForgetCaptionOwnership ); bool HasCellNote(SCROW nStartRow, SCROW nEndRow) const; bool HasCellNotes() const; void SetCellNote( SCROW nRow, std::unique_ptr pNote); bool IsNotesEmptyBlock(SCROW nStartRow, SCROW nEndRow) const; std::unique_ptr ReleaseNote( SCROW nRow ); size_t GetNoteCount() const; void CreateAllNoteCaptions(); void ForgetNoteCaptions( SCROW nRow1, SCROW nRow2, bool bPreserveData ); SCROW GetNotePosition( size_t nIndex ) const; void GetAllNoteEntries( std::vector& rNotes ) const; void GetNotesInRange( SCROW nStartRow, SCROW nEndRow, std::vector& rNotes ) const; SCROW GetCellNotesMaxRow() const; SCROW GetCellNotesMinRow() const; void CopyCellNotesToDocument( SCROW nRow1, SCROW nRow2, ScColumn& rDestCol, bool bCloneCaption = true, SCROW nRowOffsetDest = 0) const; void DuplicateNotes(SCROW nStartRow, size_t nDataSize, ScColumn& rDestCol, sc::ColumnBlockPosition& rDestBlockPos, bool bCloneCaption, SCROW nRowOffsetDest = 0) const; void UpdateNoteCaptions( SCROW nRow1, SCROW nRow2 ); void UpdateDrawObjects( std::vector>& pObjects, SCROW nRowStart, SCROW nRowEnd ); void UpdateDrawObjectsForRow( std::vector& pObjects, SCCOL nTargetCol, SCROW nTargetRow ); bool IsDrawObjectsEmptyBlock(SCROW nStartRow, SCROW nEndRow) const; void InterpretDirtyCells( SCROW nRow1, SCROW nRow2 ); bool InterpretCellsIfNeeded( SCROW nRow1, SCROW nRow2 ); static void JoinNewFormulaCell( const sc::CellStoreType::position_type& aPos, ScFormulaCell& rCell ); /** * Detach a formula cell that's about to be deleted, or removed from * document storage (if that ever happens). * * @param rNewSharedRows collects possible new shared row ranges (top and * bottom of shared or remaining single twice) resulting from * unsharing to reestablish listeners on. */ void DetachFormulaCell( const sc::CellStoreType::position_type& aPos, ScFormulaCell& rCell, std::vector& rNewSharedRows ); /** Re-establish listeners on unshared formula groups */ void StartListeningUnshared( const std::vector& rNewSharedRows ); void DetachFormulaCells( const sc::CellStoreType::position_type& aPos, size_t nLength, std::vector* pNewSharedRows ); void AttachFormulaCells( sc::StartListeningContext& rCxt, SCROW nRow1, SCROW nRow2 ); void DetachFormulaCells( sc::EndListeningContext& rCxt, SCROW nRow1, SCROW nRow2 ); /** * Regroup formula cells for the entire column. */ void RegroupFormulaCells( std::vector* pGroupPos = nullptr ); /** * Reset column position of formula cells within specified row range. * If bUpdateRefs==true then reference positions are also adjusted to * reflect the new position so that the formula cells still reference the * same cells or ranges after the position change. * The position of a formula cell before the call is interpreted as the old * position of that cell. * * Caller needs to ensure that no formula groups cross the top and bottom * row boundaries. * * @param nRow1 top row boundary * @param nRow2 bottom row boundary * @param bUpdateRefs whether to adjust references */ void ResetFormulaCellPositions( SCROW nRow1, SCROW nRow2, bool bUpdateRefs ); void SplitFormulaGroupByRelativeRef( const ScRange& rBoundRange ); void TransferCellValuesTo( SCROW nRow, size_t nLen, sc::CellValues& rDest ); void CopyCellValuesFrom( SCROW nRow, const sc::CellValues& rSrc ); void ConvertFormulaToValue( sc::EndListeningContext& rCxt, SCROW nRow1, SCROW nRow2, sc::TableValues* pUndo ); void SwapNonEmpty( sc::TableValues& rValues, sc::StartListeningContext& rStartCxt, sc::EndListeningContext& rEndCxt ); std::optional GetColumnIterator( SCROW nRow1, SCROW nRow2 ) const; bool EnsureFormulaCellResults( SCROW nRow1, SCROW nRow2, bool bSkipRunning = false ); void StoreToCache(SvStream& rStrm) const; void RestoreFromCache(SvStream& rStrm); #if DUMP_COLUMN_STORAGE void DumpColumnStorage() const; #endif SCSIZE GetPatternCount() const; SCSIZE GetPatternCount( SCROW nRow1, SCROW nRow2 ) const; bool ReservePatternCount( SCSIZE nReserve ); void CheckIntegrity() const; private: sc::CellStoreType::iterator GetPositionToInsert( SCROW nRow, std::vector& rNewSharedRows, bool bInsertFormula ); sc::CellStoreType::iterator GetPositionToInsert( const sc::CellStoreType::iterator& it, SCROW nRow, std::vector& rNewSharedRows, bool bInsertFormula ); void AttachNewFormulaCell( const sc::CellStoreType::iterator& itPos, SCROW nRow, ScFormulaCell& rCell, const std::vector& rNewSharedRows, bool bJoin = true, sc::StartListeningType eListenType = sc::SingleCellListening ); void AttachNewFormulaCell( const sc::CellStoreType::position_type& aPos, ScFormulaCell& rCell, const std::vector& rNewSharedRows, bool bJoin = true, sc::StartListeningType eListenType = sc::SingleCellListening ); public: void AttachNewFormulaCells(const sc::CellStoreType::position_type& aPos, size_t nLength, std::vector& rNewSharedRows); private: void BroadcastNewCell( SCROW nRow ); bool UpdateScriptType( sc::CellTextAttr& rAttr, SCROW nRow, sc::CellStoreType::iterator& itr ); const ScFormulaCell* FetchFormulaCell( SCROW nRow ) const; SCROW FindNextVisibleRowWithContent( sc::CellStoreType::const_iterator& itPos, SCROW nRow, bool bForward) const; SCROW FindNextVisibleRow(SCROW nRow, bool bForward) const; OUString GetString( const ScRefCellValue& cell, SCROW nRow, const ScInterpreterContext* pContext = nullptr ) const; OUString GetInputString( const ScRefCellValue& cell, SCROW nRow, bool bForceSystemLocale = false ) const; /** * Called whenever the state of cell array gets modified i.e. new cell * insertion, cell removal or relocation, cell value update and so on. * * Call this only from those methods where maCells is modified directly. */ void CellStorageModified(); void CellNotesDeleting(SCROW nRow1, SCROW nRow2, bool bForgetCaptionOwnership ); void CopyCellTextAttrsToDocument(SCROW nRow1, SCROW nRow2, ScColumn& rDestCol) const; struct DeleteCellsResult { /** cell ranges that have been deleted. */ sc::SingleColumnSpanSet aDeletedRows; /** formula cell range that has stopped listening. */ std::vector> aFormulaRanges; DeleteCellsResult( const ScDocument& rDoc ); DeleteCellsResult( const DeleteCellsResult& ) = delete; }; std::unique_ptr DeleteCells( sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2, InsertDeleteFlags nDelFlag ); /** * Get all non-grouped formula cells and formula cell groups in the whole * column. */ std::vector GetFormulaGroupEntries(); void EndListeningIntersectedGroup( sc::EndListeningContext& rCxt, SCROW nRow, std::vector* pGroupPos ); void EndListeningIntersectedGroups( sc::EndListeningContext& rCxt, SCROW nRow1, SCROW nRow2, std::vector* pGroupPos ); void EndListeningGroup( sc::EndListeningContext& rCxt, SCROW nRow ); void SetNeedsListeningGroup( SCROW nRow ); void CollectBroadcasterState(sc::BroadcasterState& rState) const; }; inline bool ScColumn::IsEmptyAttr() const { return pAttrArray->IsEmpty(); } inline bool ScColumnData::IsAllAttrEqual( const ScColumnData& rCol, SCROW nStartRow, SCROW nEndRow ) const { return pAttrArray->IsAllEqual( *rCol.pAttrArray, nStartRow, nEndRow ); } inline bool ScColumn::IsVisibleAttrEqual( const ScColumn& rCol, SCROW nStartRow, SCROW nEndRow ) const { return pAttrArray->IsVisibleEqual( *rCol.pAttrArray, nStartRow, nEndRow ); } inline bool ScColumn::GetFirstVisibleAttr( SCROW& rFirstRow ) const { return pAttrArray->GetFirstVisibleAttr( rFirstRow ); } inline bool ScColumn::GetLastVisibleAttr( SCROW& rLastRow, bool bSkipEmpty ) const { // row of last cell is needed SCROW nLastData = GetLastDataPos(); // always including notes, 0 if none return pAttrArray->GetLastVisibleAttr( rLastRow, nLastData, bSkipEmpty ); } inline bool ScColumn::HasVisibleAttrIn( SCROW nStartRow, SCROW nEndRow ) const { return pAttrArray->HasVisibleAttrIn( nStartRow, nEndRow ); } inline SCSIZE ScColumn::GetPatternCount() const { return pAttrArray->Count(); } inline SCSIZE ScColumn::GetPatternCount( SCROW nRow1, SCROW nRow2 ) const { return pAttrArray->Count( nRow1, nRow2 ); } inline bool ScColumn::ReservePatternCount( SCSIZE nReserve ) { return pAttrArray && pAttrArray->Reserve( nReserve ); } inline bool ScColumn::IsMerged( SCROW nRow ) const { return pAttrArray->IsMerged(nRow); } inline SCROW ScColumnData::GetNextUnprotected( SCROW nRow, bool bUp ) const { return pAttrArray->GetNextUnprotected(nRow, bUp); } inline bool ScColumnData::HasAttrib( SCROW nRow1, SCROW nRow2, HasAttrFlags nMask ) const { return pAttrArray->HasAttrib( nRow1, nRow2, nMask ); } inline bool ScColumnData::HasAttrib( SCROW nRow, HasAttrFlags nMask, SCROW* nStartRow, SCROW* nEndRow ) const { return pAttrArray->HasAttrib( nRow, nMask, nStartRow, nEndRow ); } inline bool ScColumn::ExtendMerge( SCCOL nThisCol, SCROW nStartRow, SCROW nEndRow, SCCOL& rPaintCol, SCROW& rPaintRow, bool bRefresh ) { return pAttrArray->ExtendMerge( nThisCol, nStartRow, nEndRow, rPaintCol, rPaintRow, bRefresh ); } inline void ScColumnData::MergePatternArea( ScMergePatternState& rState, SCROW nRow1, SCROW nRow2, bool bDeep ) const { pAttrArray->MergePatternArea( nRow1, nRow2, rState, bDeep ); } inline void ScColumn::MergeBlockFrame( SvxBoxItem* pLineOuter, SvxBoxInfoItem* pLineInner, ScLineFlags& rFlags, SCROW nStartRow, SCROW nEndRow, bool bLeft, SCCOL nDistRight ) const { pAttrArray->MergeBlockFrame( pLineOuter, pLineInner, rFlags, nStartRow, nEndRow, bLeft, nDistRight ); } inline void ScColumn::ApplyBlockFrame(const SvxBoxItem& rLineOuter, const SvxBoxInfoItem* pLineInner, SCROW nStartRow, SCROW nEndRow, bool bLeft, SCCOL nDistRight) { pAttrArray->ApplyBlockFrame(rLineOuter, pLineInner, nStartRow, nEndRow, bLeft, nDistRight); } inline const ScPatternAttr* ScColumnData::GetPattern( SCROW nRow ) const { return pAttrArray->GetPattern( nRow ); } inline const SfxPoolItem& ScColumnData::GetAttr( SCROW nRow, sal_uInt16 nWhich ) const { return pAttrArray->GetPattern( nRow )->GetItemSet().Get(nWhich); } inline const SfxPoolItem& ScColumnData::GetAttr( SCROW nRow, sal_uInt16 nWhich, SCROW& nStartRow, SCROW& nEndRow ) const { return pAttrArray->GetPatternRange( nStartRow, nEndRow, nRow )->GetItemSet().Get(nWhich); } inline sal_uInt32 ScColumnData::GetNumberFormat( const ScInterpreterContext& rContext, SCROW nRow ) const { return pAttrArray->GetPattern( nRow )->GetNumberFormat( rContext.GetFormatTable() ); } inline void ScColumn::AddCondFormat( SCROW nStartRow, SCROW nEndRow, sal_uInt32 nIndex ) { pAttrArray->AddCondFormat( nStartRow, nEndRow, nIndex ); } inline void ScColumn::RemoveCondFormat( SCROW nStartRow, SCROW nEndRow, sal_uInt32 nIndex ) { pAttrArray->RemoveCondFormat( nStartRow, nEndRow, nIndex ); } inline void ScColumnData::ApplyStyleArea( SCROW nStartRow, SCROW nEndRow, const ScStyleSheet& rStyle ) { pAttrArray->ApplyStyleArea(nStartRow, nEndRow, rStyle); } inline const ScStyleSheet* ScColumnData::GetStyle( SCROW nRow ) const { return pAttrArray->GetPattern( nRow )->GetStyleSheet(); } inline void ScColumn::FindStyleSheet( const SfxStyleSheetBase* pStyleSheet, ScFlatBoolRowSegments& rUsedRows, bool bReset ) { pAttrArray->FindStyleSheet( pStyleSheet, rUsedRows, bReset ); } inline bool ScColumn::IsStyleSheetUsed( const ScStyleSheet& rStyle ) const { return pAttrArray->IsStyleSheetUsed( rStyle ); } inline bool ScColumn::ApplyFlags( SCROW nStartRow, SCROW nEndRow, ScMF nFlags ) { return pAttrArray->ApplyFlags( nStartRow, nEndRow, nFlags ); } inline bool ScColumn::RemoveFlags( SCROW nStartRow, SCROW nEndRow, ScMF nFlags ) { return pAttrArray->RemoveFlags( nStartRow, nEndRow, nFlags ); } inline void ScColumn::ClearItems( SCROW nStartRow, SCROW nEndRow, const sal_uInt16* pWhich ) { pAttrArray->ClearItems( nStartRow, nEndRow, pWhich ); } inline const ScPatternAttr* ScColumn::SetPattern( SCROW nRow, std::unique_ptr pPatAttr ) { return pAttrArray->SetPattern( nRow, std::move(pPatAttr), true/*bPutToPool*/ ); } inline void ScColumn::SetPattern( SCROW nRow, const ScPatternAttr& rPatAttr ) { pAttrArray->SetPattern( nRow, &rPatAttr, true/*bPutToPool*/ ); } inline void ScColumn::SetPatternArea( SCROW nStartRow, SCROW nEndRow, const ScPatternAttr& rPatAttr ) { pAttrArray->SetPatternArea( nStartRow, nEndRow, &rPatAttr, true/*bPutToPool*/ ); } inline void ScColumnData::SetAttrEntries(std::vector && vNewData) { pAttrArray->SetAttrEntries( std::move( vNewData )); } inline bool ScColumnData::TestInsertRow( SCSIZE nSize ) const { return pAttrArray->TestInsertRow( nSize ); } inline void ScColumnData::InsertRow( SCROW nStartRow, SCSIZE nSize ) { pAttrArray->InsertRow( nStartRow, nSize ); } inline void ScColumnData::DeleteRow(SCROW nStartRow, SCSIZE nSize) { pAttrArray->DeleteRow( nStartRow, nSize ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ source/es/helpcontent2/source/text/sbasic/shared/01.po6
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/02.po18
-rw-r--r--source/es/helpcontent2/source/text/scalc.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po70
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/es/helpcontent2/source/text/schart.po16
-rw-r--r--source/es/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--source/es/helpcontent2/source/text/shared.po12
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po54
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po80
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po206
-rw-r--r--source/es/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/es/helpcontent2/source/text/shared/05.po10
-rw-r--r--source/es/helpcontent2/source/text/shared/autopi.po10
-rw-r--r--source/es/helpcontent2/source/text/shared/explorer/database.po30
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po138
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/es/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po10
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po24
-rw-r--r--source/es/helpcontent2/source/text/swriter.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po10
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po52
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/es/helpcontent2/source/text/swriter/04.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po38
-rw-r--r--source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po20
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po38
-rw-r--r--source/es/sc/source/ui/src.po12
-rw-r--r--source/es/sfx2/uiconfig/ui.po6
-rw-r--r--source/es/starmath/source.po12
-rw-r--r--source/es/svx/source/form.po10
-rw-r--r--source/es/svx/source/svdraw.po8
-rw-r--r--source/es/sw/source/core/undo.po8
-rw-r--r--source/es/sw/source/ui/utlui.po6
-rw-r--r--source/es/sw/uiconfig/swriter/ui.po12
-rw-r--r--source/es/uui/source.po10
-rw-r--r--source/eu/connectivity/source/resource.po8
-rw-r--r--source/eu/cui/source/dialogs.po20
-rw-r--r--source/eu/cui/source/tabpages.po8
-rw-r--r--source/eu/cui/uiconfig/ui.po89
-rw-r--r--source/eu/desktop/uiconfig/ui.po14
-rw-r--r--source/eu/extensions/source/scanner.po16
-rw-r--r--source/eu/extensions/uiconfig/sabpilot/ui.po11
-rw-r--r--source/eu/extras/source/autocorr/emoji.po133
-rw-r--r--source/eu/filter/source/config/fragments/filters.po60
-rw-r--r--source/eu/filter/source/config/fragments/types.po29
-rw-r--r--source/eu/filter/uiconfig/ui.po15
-rw-r--r--source/eu/formula/source/core/resource.po39
-rw-r--r--source/eu/helpcontent2/source/auxiliary.po14
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po150
-rw-r--r--source/eu/helpcontent2/source/text/scalc.po24
-rw-r--r--source/eu/helpcontent2/source/text/scalc/00.po26
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po366
-rw-r--r--source/eu/helpcontent2/source/text/scalc/04.po22
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po127
-rw-r--r--source/eu/helpcontent2/source/text/schart/01.po46
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/guide.po17
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po206
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po157
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po126
-rw-r--r--source/eu/helpcontent2/source/text/shared/04.po127
-rw-r--r--source/eu/helpcontent2/source/text/shared/autopi.po32
-rw-r--r--source/eu/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po42
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po25
-rw-r--r--source/eu/helpcontent2/source/text/simpress.po11
-rw-r--r--source/eu/helpcontent2/source/text/simpress/00.po11
-rw-r--r--source/eu/helpcontent2/source/text/simpress/02.po107
-rw-r--r--source/eu/helpcontent2/source/text/simpress/04.po92
-rw-r--r--source/eu/helpcontent2/source/text/smath/01.po96
-rw-r--r--source/eu/helpcontent2/source/text/swriter.po16
-rw-r--r--source/eu/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po65
-rw-r--r--source/eu/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/eu/helpcontent2/source/text/swriter/04.po18
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po59
-rw-r--r--source/eu/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/eu/nlpsolver/src/locale.po14
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po55
-rw-r--r--source/eu/sc/source/ui/StatisticsDialogs.po12
-rw-r--r--source/eu/sc/source/ui/src.po123
-rw-r--r--source/eu/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/eu/scp2/source/accessories.po12
-rw-r--r--source/eu/scp2/source/ooo.po21
-rw-r--r--source/eu/sd/source/ui/app.po59
-rw-r--r--source/eu/sd/source/ui/view.po8
-rw-r--r--source/eu/sd/uiconfig/sdraw/ui.po12
-rw-r--r--source/eu/sd/uiconfig/simpress/ui.po77
-rw-r--r--source/eu/sfx2/source/appl.po17
-rw-r--r--source/eu/sfx2/source/doc.po10
-rw-r--r--source/eu/sfx2/uiconfig/ui.po26
-rw-r--r--source/eu/starmath/source.po20
-rw-r--r--source/eu/starmath/uiconfig/smath/ui.po7
-rw-r--r--source/eu/svtools/source/contnr.po10
-rw-r--r--source/eu/svtools/source/control.po8
-rw-r--r--source/eu/svtools/source/misc.po16
-rw-r--r--source/eu/svtools/uiconfig/ui.po73
-rw-r--r--source/eu/svx/inc.po8
-rw-r--r--source/eu/svx/source/items.po8
-rw-r--r--source/eu/svx/source/sidebar/area.po12
-rw-r--r--source/eu/svx/uiconfig/ui.po12
-rw-r--r--source/eu/sw/source/ui/app.po30
-rw-r--r--source/eu/sw/source/ui/dbui.po12
-rw-r--r--source/eu/sw/source/ui/envelp.po11
-rw-r--r--source/eu/sw/uiconfig/swriter/ui.po40
-rw-r--r--source/eu/uui/source.po21
-rw-r--r--source/eu/uui/uiconfig/ui.po27
-rw-r--r--source/eu/vcl/uiconfig/ui.po14
-rw-r--r--source/eu/wizards/source/formwizard.po8
-rw-r--r--source/eu/wizards/source/template.po13
-rw-r--r--source/eu/xmlsecurity/uiconfig/ui.po9
-rw-r--r--source/fr/sfx2/uiconfig/ui.po6
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po7
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po7
-rw-r--r--source/is/cui/uiconfig/ui.po6
-rw-r--r--source/ja/sfx2/uiconfig/ui.po8
-rw-r--r--source/ja/svx/uiconfig/ui.po8
-rw-r--r--source/ja/sw/uiconfig/swriter/ui.po7
-rw-r--r--source/lt/uui/source.po16
-rw-r--r--source/lt/uui/uiconfig/ui.po8
-rw-r--r--source/lv/cui/uiconfig/ui.po11
-rw-r--r--source/lv/extras/source/autocorr/emoji.po42
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/lv/sc/source/ui/src.po7
-rw-r--r--source/lv/sc/uiconfig/scalc/ui.po7
-rw-r--r--source/lv/sd/source/ui/view.po8
-rw-r--r--source/lv/sfx2/uiconfig/ui.po18
-rw-r--r--source/lv/starmath/source.po20
-rw-r--r--source/mn/dbaccess/source/ui/dlg.po6
-rw-r--r--source/mn/desktop/source/deployment/gui.po19
-rw-r--r--source/mn/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--source/nb/basctl/uiconfig/basicide/ui.po9
-rw-r--r--source/nb/cui/uiconfig/ui.po13
-rw-r--r--source/nb/dbaccess/uiconfig/ui.po8
-rw-r--r--source/nb/extensions/source/scanner.po12
-rw-r--r--source/nb/extensions/uiconfig/sabpilot/ui.po105
-rw-r--r--source/nb/extensions/uiconfig/sbibliography/ui.po138
-rw-r--r--source/nb/extensions/uiconfig/scanner/ui.po18
-rw-r--r--source/nb/extensions/uiconfig/spropctrlr/ui.po14
-rw-r--r--source/nb/filter/source/config/fragments/filters.po58
-rw-r--r--source/nb/filter/source/config/fragments/types.po27
-rw-r--r--source/nb/filter/uiconfig/ui.po12
-rw-r--r--source/nb/formula/source/core/resource.po37
-rw-r--r--source/nb/formula/uiconfig/ui.po48
-rw-r--r--source/nb/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/nb/nlpsolver/src/locale.po13
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office.po25
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po160
-rw-r--r--source/nb/readlicense_oo/docs.po15
-rw-r--r--source/nb/sc/source/ui/cctrl.po9
-rw-r--r--source/nb/sc/source/ui/drawfunc.po10
-rw-r--r--source/nb/sc/source/ui/sidebar.po12
-rw-r--r--source/nb/sc/source/ui/src.po90
-rw-r--r--source/nb/sc/uiconfig/scalc/ui.po73
-rw-r--r--source/nb/scp2/source/accessories.po10
-rw-r--r--source/nb/scp2/source/ooo.po21
-rw-r--r--source/nb/sd/source/core.po10
-rw-r--r--source/nb/sd/source/ui/app.po71
-rw-r--r--source/nb/sd/source/ui/view.po8
-rw-r--r--source/nb/sd/uiconfig/sdraw/ui.po57
-rw-r--r--source/nb/sd/uiconfig/simpress/ui.po275
-rw-r--r--source/nb/sfx2/uiconfig/ui.po19
-rw-r--r--source/nb/svtools/source/contnr.po10
-rw-r--r--source/nb/svtools/source/control.po8
-rw-r--r--source/nb/svtools/source/misc.po10
-rw-r--r--source/nb/svtools/uiconfig/ui.po70
-rw-r--r--source/nb/svx/inc.po10
-rw-r--r--source/nb/svx/source/dialog.po121
-rw-r--r--source/nb/svx/source/form.po18
-rw-r--r--source/nb/svx/source/items.po14
-rw-r--r--source/nb/svx/source/stbctrls.po30
-rw-r--r--source/nb/svx/source/tbxctrls.po10
-rw-r--r--source/nb/svx/uiconfig/ui.po237
-rw-r--r--source/nb/sw/source/ui/app.po79
-rw-r--r--source/nb/sw/source/ui/misc.po10
-rw-r--r--source/nb/sw/source/uibase/utlui.po10
-rw-r--r--source/nb/sw/uiconfig/swriter/ui.po52
-rw-r--r--source/nb/uui/source.po11
-rw-r--r--source/nb/uui/uiconfig/ui.po9
-rw-r--r--source/nb/xmlsecurity/uiconfig/ui.po19
-rw-r--r--source/nl/cui/uiconfig/ui.po8
-rw-r--r--source/nl/dictionaries/bs_BA.po12
-rw-r--r--source/nl/dictionaries/en/dialog.po14
-rw-r--r--source/nl/dictionaries/is.po12
-rw-r--r--source/nl/editeng/source/editeng.po16
-rw-r--r--source/nl/editeng/source/items.po14
-rw-r--r--source/nl/extensions/uiconfig/sabpilot/ui.po20
-rw-r--r--source/nl/extensions/uiconfig/sbibliography/ui.po14
-rw-r--r--source/nl/extensions/uiconfig/scanner/ui.po12
-rw-r--r--source/nl/extras/source/autocorr/emoji.po116
-rw-r--r--source/nl/filter/source/config/fragments/filters.po12
-rw-r--r--source/nl/filter/source/pdf.po10
-rw-r--r--source/nl/filter/source/xsltdialog.po12
-rw-r--r--source/nl/filter/uiconfig/ui.po18
-rw-r--r--source/nl/forms/source/resource.po22
-rw-r--r--source/nl/formula/source/core/resource.po4
-rw-r--r--source/nl/fpicker/uiconfig/ui.po10
-rw-r--r--source/nl/framework/source/classes.po16
-rw-r--r--source/nl/instsetoo_native/inc_openoffice/windows/msi_languages.po112
-rw-r--r--source/nl/librelogo/source/pythonpath.po22
-rw-r--r--source/nl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po28
-rw-r--r--source/nl/nlpsolver/src/locale.po17
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office.po52
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/nl/readlicense_oo/docs.po42
-rw-r--r--source/nl/reportdesign/source/ui/report.po26
-rw-r--r--source/nl/sc/source/ui/drawfunc.po10
-rw-r--r--source/nl/sc/source/ui/formdlg.po11
-rw-r--r--source/nl/sc/source/ui/miscdlgs.po14
-rw-r--r--source/nl/sc/source/ui/sidebar.po10
-rw-r--r--source/nl/sc/source/ui/src.po70
-rw-r--r--source/nl/scaddins/source/analysis.po10
-rw-r--r--source/nn/cui/uiconfig/ui.po10
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/nn/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/nn/sc/uiconfig/scalc/ui.po8
-rw-r--r--source/oc/connectivity/source/resource.po6
-rw-r--r--source/oc/cui/source/dialogs.po18
-rw-r--r--source/oc/cui/source/tabpages.po6
-rw-r--r--source/oc/cui/uiconfig/ui.po11
-rw-r--r--source/oc/extensions/uiconfig/sabpilot/ui.po8
-rw-r--r--source/oc/extras/source/autocorr/emoji.po2064
-rw-r--r--source/oc/filter/source/config/fragments/filters.po16
-rw-r--r--source/oc/filter/uiconfig/ui.po16
-rw-r--r--source/oc/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office.po46
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po104
-rw-r--r--source/oc/reportdesign/source/ui/dlg.po11
-rw-r--r--source/oc/reportdesign/source/ui/inspection.po18
-rw-r--r--source/oc/reportdesign/source/ui/report.po6
-rw-r--r--source/oc/reportdesign/uiconfig/dbreport/ui.po10
-rw-r--r--source/oc/sc/source/ui/src.po14
-rw-r--r--source/oc/sc/uiconfig/scalc/ui.po18
-rw-r--r--source/oc/sd/source/core.po18
-rw-r--r--source/oc/sd/source/ui/app.po14
-rw-r--r--source/oc/sd/uiconfig/sdraw/ui.po8
-rw-r--r--source/oc/sd/uiconfig/simpress/ui.po14
-rw-r--r--source/oc/sfx2/source/doc.po12
-rw-r--r--source/oc/sfx2/uiconfig/ui.po14
-rw-r--r--source/oc/starmath/source.po10
-rw-r--r--source/oc/svtools/source/dialogs.po12
-rw-r--r--source/oc/svx/inc.po8
-rw-r--r--source/oc/svx/source/accessibility.po14
-rw-r--r--source/oc/svx/source/gallery2.po12
-rw-r--r--source/oc/svx/source/items.po12
-rw-r--r--source/oc/svx/source/svdraw.po24
-rw-r--r--source/oc/svx/source/tbxctrls.po10
-rw-r--r--source/oc/svx/uiconfig/ui.po24
-rw-r--r--source/oc/sw/source/core/undo.po12
-rw-r--r--source/oc/sw/source/ui/app.po14
-rw-r--r--source/oc/sw/source/ui/config.po12
-rw-r--r--source/oc/sw/source/ui/frmdlg.po12
-rw-r--r--source/oc/sw/source/uibase/docvw.po6
-rw-r--r--source/oc/sw/source/uibase/utlui.po6
-rw-r--r--source/oc/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/oc/swext/mediawiki/help.po14
-rw-r--r--source/oc/vcl/source/src.po12
-rw-r--r--source/oc/wizards/source/formwizard.po18
-rw-r--r--source/pa-IN/uui/source.po9
-rw-r--r--source/pl/cui/uiconfig/ui.po11
-rw-r--r--source/pl/desktop/source/deployment/gui.po12
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po11
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po9
-rw-r--r--source/pl/sc/uiconfig/scalc/ui.po5
-rw-r--r--source/pl/sfx2/uiconfig/ui.po9
-rw-r--r--source/pl/vcl/source/src.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/schart.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po6
-rw-r--r--source/ro/cui/source/options.po12
-rw-r--r--source/ro/cui/uiconfig/ui.po9
-rw-r--r--source/ro/dbaccess/uiconfig/ui.po10
-rw-r--r--source/ro/extras/source/autocorr/emoji.po42
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ro/readlicense_oo/docs.po6
-rw-r--r--source/ro/sc/source/ui/src.po7
-rw-r--r--source/ro/sc/uiconfig/scalc/ui.po13
-rw-r--r--source/ro/sd/source/ui/app.po22
-rw-r--r--source/ro/sd/source/ui/view.po8
-rw-r--r--source/ro/sfx2/uiconfig/ui.po11
-rw-r--r--source/ro/svx/uiconfig/ui.po8
-rw-r--r--source/ro/sw/uiconfig/swriter/ui.po5
-rw-r--r--source/ru/cui/uiconfig/ui.po9
-rw-r--r--source/ru/sc/uiconfig/scalc/ui.po7
-rw-r--r--source/ru/sfx2/uiconfig/ui.po11
-rw-r--r--source/ru/starmath/source.po10
-rw-r--r--source/ru/sw/source/uibase/utlui.po8
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/sq/cui/source/customize.po8
-rw-r--r--source/sq/cui/source/dialogs.po4
-rw-r--r--source/sq/cui/source/tabpages.po6
-rw-r--r--source/sq/cui/uiconfig/ui.po16
-rw-r--r--source/sq/sw/source/ui/app.po8
-rw-r--r--source/sq/sw/source/ui/utlui.po12
-rw-r--r--source/sq/sw/source/uibase/utlui.po8
-rw-r--r--source/sq/sw/uiconfig/swriter/ui.po12
-rw-r--r--source/sv/cui/uiconfig/ui.po9
-rw-r--r--source/sv/extras/source/autocorr/emoji.po48
-rw-r--r--source/ta/cui/uiconfig/ui.po11
-rw-r--r--source/th/cui/source/tabpages.po15
-rw-r--r--source/th/cui/uiconfig/ui.po109
-rw-r--r--source/th/dbaccess/source/ui/querydesign.po12
-rw-r--r--source/th/dbaccess/uiconfig/ui.po8
-rw-r--r--source/th/dictionaries/hu_HU/dialog.po10
-rw-r--r--source/th/editeng/source/editeng.po6
-rw-r--r--source/th/extensions/source/propctrlr.po14
-rw-r--r--source/th/extensions/uiconfig/sabpilot/ui.po8
-rw-r--r--source/th/fpicker/source/office.po6
-rw-r--r--source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/th/readlicense_oo/docs.po6
-rw-r--r--source/th/reportdesign/source/ui/report.po6
-rw-r--r--source/th/sc/source/ui/src.po94
-rw-r--r--source/th/sc/uiconfig/scalc/ui.po20
-rw-r--r--source/th/scaddins/source/analysis.po22
-rw-r--r--source/th/scp2/source/activex.po13
-rw-r--r--source/th/scp2/source/draw.po10
-rw-r--r--source/th/scp2/source/impress.po8
-rw-r--r--source/th/scp2/source/math.po10
-rw-r--r--source/th/sd/source/ui/animations.po12
-rw-r--r--source/th/sd/source/ui/app.po8
-rw-r--r--source/th/sd/uiconfig/sdraw/ui.po10
-rw-r--r--source/th/sd/uiconfig/simpress/ui.po24
-rw-r--r--source/th/sfx2/source/appl.po10
-rw-r--r--source/th/sfx2/uiconfig/ui.po18
-rw-r--r--source/th/shell/source/win32/shlxthandler/res.po20
-rw-r--r--source/th/starmath/source.po8
-rw-r--r--source/th/svl/source/misc.po10
-rw-r--r--source/th/svtools/source/dialogs.po12
-rw-r--r--source/th/svtools/source/misc.po12
-rw-r--r--source/th/svtools/uiconfig/ui.po12
-rw-r--r--source/th/svx/source/accessibility.po12
-rw-r--r--source/th/svx/source/fmcomp.po10
-rw-r--r--source/th/svx/source/form.po28
-rw-r--r--source/th/svx/source/items.po10
-rw-r--r--source/th/svx/source/svdraw.po10
-rw-r--r--source/th/svx/uiconfig/ui.po20
-rw-r--r--source/th/sw/source/core/undo.po10
-rw-r--r--source/th/sw/source/ui/app.po12
-rw-r--r--source/th/sw/source/ui/fldui.po10
-rw-r--r--source/th/sw/source/ui/utlui.po10
-rw-r--r--source/th/sw/source/uibase/ribbar.po10
-rw-r--r--source/th/sw/source/uibase/uiview.po12
-rw-r--r--source/th/sw/source/uibase/utlui.po10
-rw-r--r--source/th/sw/uiconfig/swriter/ui.po50
-rw-r--r--source/th/wizards/source/formwizard.po16
-rw-r--r--source/tr/cui/uiconfig/ui.po9
-rw-r--r--source/uk/cui/uiconfig/ui.po8
-rw-r--r--source/uz/accessibility/source/helper.po12
-rw-r--r--source/uz/basctl/source/basicide.po16
-rw-r--r--source/vi/accessibility/source/helper.po23
-rw-r--r--source/vi/avmedia/source/viewer.po8
-rw-r--r--source/zh-CN/cui/source/customize.po12
-rw-r--r--source/zh-CN/extras/source/autocorr/emoji.po2110
-rw-r--r--source/zh-CN/framework/source/classes.po12
-rw-r--r--source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po62
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/zh-CN/sfx2/uiconfig/ui.po9
-rw-r--r--source/zh-TW/svx/source/dialog.po10
425 files changed, 7218 insertions, 7741 deletions
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 568f36366a5..ba95d16c007 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/helpcontent2/source/text/shared/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-18 17:25+0100\n"
-"PO-Revision-Date: 2016-01-18 23:56+0000\n"
+"PO-Revision-Date: 2016-02-18 14:19+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453161401.000000\n"
+"X-POOTLE-MTIME: 1455805154.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -36554,7 +36554,7 @@ msgctxt ""
"108\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/relsize\">Enter the amount by which you want to resize the bullet character with respect to the font height of the current paragraph.</ahelp></defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/relsize\">የ ነጥብ ባህሪ ከ ፊደል እርዝመት አንጻር እንደገና ለ መመጠን መጠን ያስገቡ በ አሁኑ ሰነድ ውስጥ</ahelp></defaultinline></switchinline>"
#: 06050500.xhp
msgctxt ""
@@ -36599,7 +36599,7 @@ msgctxt ""
"85\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/numberingoptionspage/bitmap\">Select the graphic, or locate the graphic file that you want to use as a bullet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/bitmap\">ንድፍ ይምረጡ ወይንም ፈልገው ያግኙ የ ንድፍ ፋይል እንእ ነጥብ መጠቀም የሚፈልጉትን </ahelp>"
#: 06050500.xhp
msgctxt ""
@@ -36653,7 +36653,7 @@ msgctxt ""
"93\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/numberingoptionspage/keepratio\">Maintains the size proportions of the graphic.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/keepratio\">የ ንድፍ መጠን መጠበቂያ </ahelp>"
#: 06050500.xhp
msgctxt ""
@@ -36818,7 +36818,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "The <emph>Numbering alignment</emph> option does not set the alignment of the paragraph."
-msgstr ""
+msgstr "የ <emph>ቁጥር መስጫ ማሰለፊያ</emph> ምርጫ የ አንቀጽ ማሰለፊያ አያሰናዳም"
#: 06050600.xhp
msgctxt ""
@@ -36940,7 +36940,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/standard\">Resets the indent and the spacing values to the default values.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/standard\">የ ማስረጊያ እና ክፍተት ዋጋዎችን ወደ ነባር ዋጋቸው እንደነበር መመለሻ</ahelp>"
#: 06050600.xhp
msgctxt ""
@@ -36974,7 +36974,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"makro\"><ahelp hid=\".uno:MacroDialog\">Opens a dialog to organize macros.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"makro\"><ahelp hid=\".uno:MacroDialog\">macros ለማደራጃ ንግግር መክፈቻ</ahelp></variable>"
#: 06130000.xhp
msgctxt ""
@@ -36983,7 +36983,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Macro name"
-msgstr ""
+msgstr "የ Macro ስም"
#: 06130000.xhp
msgctxt ""
@@ -37010,7 +37010,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Macro from / Save macro in"
-msgstr ""
+msgstr "Macro ከ / ማስቀመጫ macro በ"
#: 06130000.xhp
msgctxt ""
@@ -37019,7 +37019,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">የ መጻህፍት ቤት እና ክፍሎች ዝርዝር የ እርስዎን macros መክፈት እና ማስቀመጥ የሚችሉበት: macro ለማስቀመጥ በ ተወሰነ ሰነድ ውስጥ: ሰነዱን ይክፈቱ እና ከዛ ይህን ንግግር ይክፈቱ</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -37055,7 +37055,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Opens the <link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link> dialog, where you can assign the selected macro to a menu command, a toolbar, or an event.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">መክፈቻ የ <link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">ማስተካከያ</link> ንግግር: እርስዎ የ ተመረጠውን macro ወደ ዝርዝር ትእዛዝ የሚመድቡበት: እቃ መደርደሪያ ወይንም ሁኔታ</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -37073,7 +37073,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">Starts the $[officename] Basic editor and opens the selected macro or dialog for editing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">ማስጀመሪያ የ $[officename] Basic editor እና የ ተመረጠውን macro መክፈቻ ወይንም ንግግር ማረሚያ</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -37100,7 +37100,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "To create a new macro, select the \"Standard\" module in the <emph>Macro from</emph> list, and then click <emph>New</emph>."
-msgstr ""
+msgstr "አዲስ macro ለመፍጠር ይምረጡ ከ \"መደበኛ\" ክፍል ውስጥ ከ <emph>Macro ከ</emph> ዝርዝር ውስጥ እና ከዛ ይጫኑ <emph>አዲስ</emph>."
#: 06130000.xhp
msgctxt ""
@@ -37172,7 +37172,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "Module/Dialog tab page"
-msgstr ""
+msgstr "የ ክፍል/ንግግር tab ገጽ"
#: 06130000.xhp
msgctxt ""
@@ -37262,7 +37262,7 @@ msgctxt ""
"42\n"
"help.text"
msgid "Libraries tab page"
-msgstr ""
+msgstr "የ መጻህፍት ቤት tab ገጽ"
#: 06130000.xhp
msgctxt ""
@@ -37405,7 +37405,7 @@ msgctxt ""
"par_idN10A39\n"
"help.text"
msgid "<variable id=\"script\">Scripts </variable>"
-msgstr ""
+msgstr "<variable id=\"script\">ጽሁፍ </variable>"
#: 06130000.xhp
msgctxt ""
@@ -37461,7 +37461,7 @@ msgctxt ""
"par_idN109D1\n"
"help.text"
msgid "<ahelp hid=\"1241731587\">To run a script, select a script in the list, and then click Run.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"1241731587\">ጽሁፍ ለማስኬድ: ጽሁፍ ይምረጡ ከ ዝርዝር ውስጥ እና ከዛ ይጫኑ ማስኬጃ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -37480,13 +37480,12 @@ msgid "<ahelp hid=\"1241731589\">Creates a new script.</ahelp> The default scrip
msgstr ""
#: 06130000.xhp
-#, fuzzy
msgctxt ""
"06130000.xhp\n"
"par_idN10A04\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/newlibdialog/NewLibDialog\">Enter a name for the script.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/newlibdialog/NewLibDialog\">ለ አዲሱ መጻህፍት ቤት ወይንም ክፍል ስም ያስገቡ</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/newlibdialog/NewLibDialog\">ለ ጽሁፍ ስም ያስገቡ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -37566,7 +37565,7 @@ msgctxt ""
"par_idN10B17\n"
"help.text"
msgid "Macro name"
-msgstr ""
+msgstr "የ Macro ስም"
#: 06130000.xhp
msgctxt ""
@@ -37574,7 +37573,7 @@ msgctxt ""
"par_idN10B1B\n"
"help.text"
msgid "Click a script, and then click a command button."
-msgstr ""
+msgstr "ይጫኑ በ ጽሁፍ ላይ: እና ከዛ ይጫኑ በ ትእዛዝ ቁልፍ ላይ"
#: 06130000.xhp
msgctxt ""
@@ -37608,7 +37607,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Lets you record or organize and edit macros."
-msgstr ""
+msgstr "እርስዎን macros መመዝገብ ወይንም ማደራጀት እና ማረም ያስችሎታል"
#: 06130001.xhp
msgctxt ""
@@ -37624,16 +37623,15 @@ msgctxt ""
"par_idN105EB\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a dialog where you can start a macro.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">መክፈቻ ንግግር እርስዎ macro መጀመር የሚችሉበት </ahelp>"
#: 06130001.xhp
-#, fuzzy
msgctxt ""
"06130001.xhp\n"
"par_idN10608\n"
"help.text"
msgid "<link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signature</link>"
-msgstr "<link href=\"text/shared/01/digitalsignatures.xhp\">የዲጂታል ፊርማዎች</link>"
+msgstr "<link href=\"text/shared/01/digitalsignatures.xhp\">የ ዲጂታል ፊርማዎች</link>"
#: 06130001.xhp
msgctxt ""
@@ -37665,7 +37663,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Record Macro"
-msgstr ""
+msgstr "የ Macro መዝገብ"
#: 06130010.xhp
msgctxt ""
@@ -37683,7 +37681,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<ahelp hid=\".uno:MacroRecorder\">Records a new macro.</ahelp> Only available, if macro recording feature is enabled in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced</emph>."
-msgstr ""
+msgstr "<ahelp hid=\".uno:MacroRecorder\">አዲስ macro መመዝገቢያ</ahelp> ዝግጁ የሚሆነው: የ macro መመዝገቢያ ገጽታ ካስቻሉ ነው በ <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - %PRODUCTNAME - የረቀቀ</emph>."
#: 06130010.xhp
msgctxt ""
@@ -37692,7 +37690,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "Stop Recording"
-msgstr ""
+msgstr "መመዝገቡን ማስቆሚያ"
#: 06130010.xhp
msgctxt ""
@@ -37701,7 +37699,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "<ahelp hid=\".uno:StopRecording\">Stops recording a macro.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:StopRecording\">macro መመዝገቡን ማስቆሚያ</ahelp>"
#: 06130100.xhp
msgctxt ""
@@ -37807,7 +37805,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Organize Macros"
-msgstr ""
+msgstr "Macros ማደራጃ"
#: 06130200.xhp
msgctxt ""
@@ -37815,7 +37813,7 @@ msgctxt ""
"bm_id3237403\n"
"help.text"
msgid "<bookmark_value>macros;organizing</bookmark_value><bookmark_value>organizing;macros and scripts</bookmark_value><bookmark_value>script organization</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>macros;ማደራጃ</bookmark_value><bookmark_value>ማደራጃ;macros እና ጽሁፍ</bookmark_value><bookmark_value>ጽሁፍ ማደራጃ</bookmark_value>"
#: 06130200.xhp
msgctxt ""
@@ -37823,7 +37821,7 @@ msgctxt ""
"par_idN1054B\n"
"help.text"
msgid "<variable id=\"organize_macros\"><link href=\"text/shared/01/06130200.xhp\">Organize Macros</link></variable>"
-msgstr ""
+msgstr "<variable id=\"organize_macros\"><link href=\"text/shared/01/06130200.xhp\">Macros ማደራጃ</link></variable>"
#: 06130200.xhp
msgctxt ""
@@ -37847,7 +37845,7 @@ msgctxt ""
"par_idN105C3\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a dialog where you can organize %PRODUCTNAME Basic macros.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">መክፈቻ ንግግር እርስዎ የሚያደራጁበት %PRODUCTNAME Basic macros.</ahelp>"
#: 06130200.xhp
msgctxt ""
@@ -37863,7 +37861,7 @@ msgctxt ""
"par_idN105BA\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a dialog where you can organize scripts.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">መክፈቻ ንግግር እርስዎ ጽሁፍ የሚያደራጁበት </ahelp>"
#: 06130200.xhp
msgctxt ""
@@ -37887,7 +37885,7 @@ msgctxt ""
"par_idN105A7\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a dialog where you can organize scripts.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">መክፈቻ ንግግር እርስዎ ጽሁፍ የሚያደራጁበት </ahelp>"
#: 06130200.xhp
msgctxt ""
@@ -37992,7 +37990,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Customize"
-msgstr ""
+msgstr "ማስተካከያ"
#: 06140000.xhp
msgctxt ""
@@ -38001,7 +37999,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "Customize"
-msgstr ""
+msgstr "ማስተካከያ"
#: 06140000.xhp
msgctxt ""
@@ -38010,7 +38008,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">Customizes $[officename] menus, shortcut keys, toolbars, and macro assignments to events.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">ማስተካከያ $[officename] ዝርዝር: አቋራጭ ቁልፍ: እቃ መደርደሪያ: እና የ macro ስራ ለ ሁኔታዎች</ahelp></variable>"
#: 06140000.xhp
msgctxt ""
@@ -38039,13 +38037,12 @@ msgid "Menu"
msgstr "ዝርዝር"
#: 06140100.xhp
-#, fuzzy
msgctxt ""
"06140100.xhp\n"
"bm_id900601\n"
"help.text"
msgid "<bookmark_value>editing;menus</bookmark_value><bookmark_value>customizing;menus</bookmark_value><bookmark_value>menus;customizing</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>ዝርዝር;ማስተካከያ</bookmark_value>"
#: 06140100.xhp
msgctxt ""
@@ -38088,7 +38085,7 @@ msgctxt ""
"par_idN1069F\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/toplevellist\">Select the menu and submenu that you want to edit.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/menuassignpage/toplevellist\">ይምረጡ ዝርዝር እና ንዑስ ዝርዝር እርስዎ ማረም የሚፈልጉትን </ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -38152,7 +38149,7 @@ msgctxt ""
"par_idN106C9\n"
"help.text"
msgid "Opens a dialog where you can change the name of the selected menu."
-msgstr ""
+msgstr "እርስዎ የ ተመረጠውን ዝርዝር ስም የሚቀይሩበት ንግግር መክፈቻ"
#: 06140100.xhp
msgctxt ""
@@ -38168,7 +38165,7 @@ msgctxt ""
"par_idN1071F\n"
"help.text"
msgid "Enter the new name for the selected menu."
-msgstr ""
+msgstr "ለ ተመረጠው ዝርዝር አዲስ ስም ያስገቡ"
#: 06140100.xhp
msgctxt ""
@@ -38192,7 +38189,7 @@ msgctxt ""
"par_idN106D0\n"
"help.text"
msgid "Select a menu or menu entry."
-msgstr ""
+msgstr "ዝርዝር ይምረጡ ወይንም ዝርዝር ማስገቢያ"
#: 06140100.xhp
msgctxt ""
@@ -38200,7 +38197,7 @@ msgctxt ""
"par_idN108DC\n"
"help.text"
msgid "Click the <emph>Menu</emph> button and select <emph>Rename</emph>."
-msgstr ""
+msgstr "ይጫኑ የ <emph>ዝርዝር</emph> ቁልፍ እና ይምረጡ <emph>እንደገና መሰየሚያ</emph>."
#: 06140100.xhp
msgctxt ""
@@ -38224,7 +38221,7 @@ msgctxt ""
"par_idN106FD\n"
"help.text"
msgid "Deletes the selected menu or menu entry."
-msgstr ""
+msgstr "የተመረጠውን ዝርዝር ወይንም ዝርዝር ማስገቢያ ማጥፊያ"
#: 06140100.xhp
msgctxt ""
@@ -38232,7 +38229,7 @@ msgctxt ""
"par_idN10910\n"
"help.text"
msgid "You can only delete custom menus and custom menu entries."
-msgstr ""
+msgstr "እርስዎ ማጥፋት የሚችሉት ዝርዝር ማስተካከያ እና የ ዝርዝር ማስተካከያ ማስገቢያዎችን ነው"
#: 06140100.xhp
msgctxt ""
@@ -38277,7 +38274,7 @@ msgctxt ""
"64\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/up\">Moves the selected item up one position.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/menuassignpage/up\">የተመረጠውን እቃ ወደ ላይ አንድ ቦታ ማንቀሳቀሻ </ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -38312,7 +38309,7 @@ msgctxt ""
"67\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/down\">Moves the selected item down one position.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/menuassignpage/down\">የተመረጠውን እቃ ወደ ታች አንድ ቦታ ማንቀሳቀሻ </ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -38345,7 +38342,7 @@ msgctxt ""
"par_idN107EE\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Add Commands dialog. Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">መክፈቻ የ ትእዛዝ ንግግር መጨመሪያ: ይምረጡ ማንኛውንም ትእዛዝ: እና ከዛ ይጫኑ <emph>መጨመሪያ</emph> ወይንም መጎተቻ-እና-መጣያ ትእዛዝ ወደ <emph>ማስተካከያ</emph> ንግግር ሳጥን ውስጥ</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -38353,7 +38350,7 @@ msgctxt ""
"par_idN40723\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይምረጡ ማንኛውንም ትእዛዝ: እና ከዛ ይጫኑ <emph>መጨመሪያ</emph> ወይንም በ መጎተቻ-እና-በመጣል ትእዛዝ ወደ <emph>ማስተካከያ</emph> ንግግር ሳጥን ውስጥ</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -38385,7 +38382,7 @@ msgctxt ""
"par_idN10804\n"
"help.text"
msgid "Opens the Add Submenu dialog, where you enter the name of a submenu."
-msgstr ""
+msgstr "መክፈቻ የ ንዑስ ዝርዝር ንግግር መጨመሪያ: እርስዎ ስም የሚያስገቡበት ለ ንዑስ ዝርዝር"
#: 06140100.xhp
msgctxt ""
@@ -38393,7 +38390,7 @@ msgctxt ""
"par_idN10807\n"
"help.text"
msgid "Add Separator"
-msgstr ""
+msgstr "መለያያ መጨመሪያ"
#: 06140100.xhp
msgctxt ""
@@ -38401,7 +38398,7 @@ msgctxt ""
"par_idN1080B\n"
"help.text"
msgid "Inserts a separator line under the current menu entry."
-msgstr ""
+msgstr "ከ አሁኑ ዝርዝር ማስገቢያ ስር መለያያ ማስገቢያ"
#: 06140100.xhp
msgctxt ""
@@ -38417,7 +38414,7 @@ msgctxt ""
"par_idN10812\n"
"help.text"
msgid "Opens the <emph>Rename</emph> dialog, where you enter a new name for the selected command."
-msgstr ""
+msgstr "መክፈቻ የ <emph>እንደገና መሰየሚያ</emph> ንግግር እርስዎ ለተመረጠው ትእዛዝ አዲስ ስም የሚያስገቡበት"
#: 06140100.xhp
msgctxt ""
@@ -38433,7 +38430,7 @@ msgctxt ""
"par_idN108CD\n"
"help.text"
msgid "Enter the new name for the selected command."
-msgstr ""
+msgstr "ለ ተመረጠው ትእዛዝ አዲስ ስም ያስገቡ"
#: 06140100.xhp
msgctxt ""
@@ -38465,7 +38462,7 @@ msgctxt ""
"par_idN1091C\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/savein\">Select the application or open document where you want to add the menu.</ahelp> A separate menu configuration is saved for the item that you select."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/menuassignpage/savein\">መተግበሪያ ይምረጡ ወይንም ሰነድ ይክፈቱ እርስዎ ዝርዝር መጨመር የሚፈልጉበት </ahelp> የ ተለየ ዝርዝር ማሰናጃ ይቀመጣል እርስዎ ለ መረጡት እቃ"
#: 06140100.xhp
msgctxt ""
@@ -38473,7 +38470,7 @@ msgctxt ""
"par_idN10AFB\n"
"help.text"
msgid "To edit a menu configuration that is associated with an item in the list, select the item, make the changes that you want, and then click the <emph>OK</emph> button."
-msgstr ""
+msgstr "ዝርዝር ማሰናጃ ለማረም የተዛመደ እቃ ከ ዝርዝር ውስጥ: ይምረጡ እቃውን: እርስዎ የሚፈልጉትን ለውጥ ያድርጉ: እና ከዛ ይጫኑ የ <emph>እሺ</emph> ቁልፍ"
#: 06140100.xhp
msgctxt ""
@@ -38481,7 +38478,7 @@ msgctxt ""
"par_idN10922\n"
"help.text"
msgid "You cannot load a menu configuration from one location and save the configuration to another location."
-msgstr ""
+msgstr "እርስዎ መጫን አይችሉም ዝርዝር ማሰናጃ ከ አንድ አካባቢ እና ማስቀመጥ ማሰናጃውን ወደ ሌላ አካባቢ"
#: 06140101.xhp
msgctxt ""
@@ -38513,7 +38510,7 @@ msgctxt ""
"par_idN1055C\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a name for the menu. To specify a letter in the name as an accelerator key, enter a tilde (~) before the letter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ለ ዝርዝር ስም ያስገቡ: ለ መወሰን ፊደል በ ስም ውስጥ እንደ አፍጣኝ ቁልፍ: ያስገቡ ቲልዴ (~) ከ ፊደሉ በፊት </ahelp>"
#: 06140101.xhp
msgctxt ""
@@ -38529,7 +38526,7 @@ msgctxt ""
"par_idN10563\n"
"help.text"
msgid "Moves the selected menu entry up one position or down one position in the menu when you click the arrow buttons."
-msgstr ""
+msgstr "የ ተመረጠውን ዝርዝር ማስገቢያ አንድ ቦታ ወደ ላይ ወይንም አንድ ቦታ ወደ ታች ማንቀሳቀሻ በ ዝርዝር ውስጥ እርስዎ በሚጫኑ ጊዜ የ ቀስት ቁልፎች"
#: 06140102.xhp
msgctxt ""
@@ -38561,7 +38558,7 @@ msgctxt ""
"par_idN1055C\n"
"help.text"
msgid "<ahelp hid=\".\">Moves the selected menu entry up one position or down one position in the menu when you click an arrow button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ተመረጠውን ዝርዝር ማስገቢያ አንድ ቦታ ወደ ላይ ወይንም አንድ ቦታ ወደ ታች ማንቀሳቀሻ በ ዝርዝር ውስጥ እርስዎ በሚጫኑ ጊዜ የ ቀስት ቁልፎች </ahelp>"
#: 06140200.xhp
msgctxt ""
@@ -38595,7 +38592,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/AccelConfigPage\">Assigns or edits the shortcut keys for $[officename] commands, or $[officename] Basic macros.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/AccelConfigPage\">አቋራጭ ቁልፎች ማረሚያ ወይንም መመደቢያ ለ $[officename] ትእዛዝ: ወይንም $[officename] Basic macros.</ahelp>"
#: 06140200.xhp
msgctxt ""
@@ -38604,7 +38601,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications."
-msgstr ""
+msgstr "እርስዎ የ አቋራጭ ቁልፎች ማረም ወይንም መመደብ ይችላሉ ለ አሁኑ መተግበሪያ ወይንም ለ ሁሉም $[officename] መተግበሪያዎች"
#: 06140200.xhp
msgctxt ""
@@ -38613,7 +38610,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "Avoid assigning shortcut keys that are currently used by your operating system."
-msgstr ""
+msgstr "አቋራጭ ቁልፍ መመደብ ያስወግዱ አሁን የ እርስዎ የ መስሪያ ስርአት የሚጠቀምበትን"
#: 06140200.xhp
msgctxt ""
@@ -38631,7 +38628,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/office\">Displays shortcut keys that are common to all $[officename] applications.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/office\">የ አቋራጭ ቁልፍ ማሳያ ለሁሉም የጋራ የሆኑ $[officename] መተግበሪያዎች </ahelp>"
#: 06140200.xhp
msgctxt ""
@@ -38649,7 +38646,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/module\">Displays shortcut keys for the current $[officename] application.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/module\">የ አቋራጭ ቁልፍ ማሳያ ለ አሁኑ $[officename] መተግበሪያ </ahelp>"
#: 06140200.xhp
msgctxt ""
@@ -38667,7 +38664,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/shortcuts\">Lists the shortcut keys and the associated commands. To assign or modify the shortcut key for the command selected in the <emph>Function</emph> list, click a shortcut in this list, and then click <emph>Modify</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/shortcuts\">የ አቋራጭ ቁልፍ ዝርዝር እና የ ተዛመዱ ትእዛዞች: ለ መመደብ ወይንም ለማሻሻል የ አቋራጭ ቁልፍ ለ ተመረጠው ትእዛዝ በ <emph>ተግባር</emph> ዝርዝር ውስጥ: ይጫኑ አቋራጭ ቁልፍ ከ ዝርዝር ውስጥ: እና ከዛ ይጫኑ <emph>ማሻሻያ</emph>.</ahelp>"
#: 06140200.xhp
msgctxt ""
@@ -38685,7 +38682,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "Lists the function categories and the $[officename] functions that you can assign shortcut keys to."
-msgstr ""
+msgstr "የ ተግባር ምድቦች ዝርዝር እና የ $[officename] ተግባሮች እርስዎ አቋራጭ ቁልፍ መመደብ የሚችሉት"
#: 06140200.xhp
msgctxt ""
diff --git a/source/cy/chart2/uiconfig/ui.po b/source/cy/chart2/uiconfig/ui.po
index 50bb159123f..6508560adb1 100644
--- a/source/cy/chart2/uiconfig/ui.po
+++ b/source/cy/chart2/uiconfig/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.2\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:22+0100\n"
-"PO-Revision-Date: 2014-12-01 18:23+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-02-10 11:55+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: CYMRAEG <post@meddal.com>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1417458230.000000\n"
+"X-POOTLE-MTIME: 1455105309.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rotate Text"
-msgstr "Troi Testun"
+msgstr "Cylchdroi Testun"
#: dlg_DataLabel.ui
msgctxt ""
@@ -2066,7 +2066,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rotate Text"
-msgstr "Troi Testun"
+msgstr "Cylchdroi Testun"
#: tp_DataLabel.ui
msgctxt ""
@@ -2993,7 +2993,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show _bars side by side"
-msgstr "Dangos _barau ochr yn ochr"
+msgstr "Dangos _barrau ochr yn ochr"
#: tp_SeriesToAxis.ui
msgctxt ""
diff --git a/source/cy/cui/source/options.po b/source/cy/cui/source/options.po
index 5b5b4c59e99..5131396325a 100644
--- a/source/cy/cui/source/options.po
+++ b/source/cy/cui/source/options.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-07-07 10:09+0000\n"
+"PO-Revision-Date: 2016-02-08 16:43+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1436263767.000000\n"
+"X-POOTLE-MTIME: 1454949831.000000\n"
#: connpooloptions.src
msgctxt ""
@@ -324,7 +324,7 @@ msgctxt ""
"RID_SVXSTR_HYPH\n"
"string.text"
msgid "Hyphenation"
-msgstr "Cyplysnodi"
+msgstr "Cysylltnodi"
#: optlingu.src
msgctxt ""
@@ -412,7 +412,7 @@ msgctxt ""
"RID_SVXSTR_HYPH_AUTO\n"
"string.text"
msgid "Hyphenate without inquiry"
-msgstr "Cylysnodi heb ofyn"
+msgstr "Cysylltnodi heb ofyn"
#: optlingu.src
msgctxt ""
@@ -420,7 +420,7 @@ msgctxt ""
"RID_SVXSTR_HYPH_SPECIAL\n"
"string.text"
msgid "Hyphenate special regions"
-msgstr "Cyplysnodi ardaloedd arbennig"
+msgstr "Cysylltnodi ardaloedd arbennig"
#: optlingu.src
msgctxt ""
diff --git a/source/cy/cui/uiconfig/ui.po b/source/cy/cui/uiconfig/ui.po
index c98f682df4e..00fd5d6de49 100644
--- a/source/cy/cui/uiconfig/ui.po
+++ b/source/cy/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-08 14:52+0100\n"
-"PO-Revision-Date: 2016-01-11 10:22+0000\n"
+"PO-Revision-Date: 2016-02-09 16:46+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452507752.000000\n"
+"X-POOTLE-MTIME: 1455036391.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Hyphenation"
-msgstr "Cyplysnodi"
+msgstr "Cysylltnodi"
#: breaknumberoption.ui
msgctxt ""
@@ -2273,7 +2273,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hyphenation _active"
-msgstr "Cyplysnodi _gweithredol"
+msgstr "Cysylltnodi _gweithredol"
#: cellalignment.ui
msgctxt ""
@@ -6818,7 +6818,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Hyphenation"
-msgstr "Cyplysnodi"
+msgstr "Cysylltnodi"
#: hyphenate.ui
msgctxt ""
@@ -9485,7 +9485,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use te_xt selection cursor in read-only text documents"
-msgstr "_Defnyddiwch cyrchwr dewis testun mewn dogfennau darllen yn unig"
+msgstr "_Defnyddio cyrchwr dewis testun mewn dogfennau darllen yn unig"
#: optaccessibilitypage.ui
msgctxt ""
@@ -9512,7 +9512,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Help tips disappear after"
-msgstr "C_ynhorion yn diflannu ar ôl"
+msgstr "C_ynghorion yn diflannu ar ôl"
#: optaccessibilitypage.ui
msgctxt ""
@@ -10493,7 +10493,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open/Save Dialogs"
-msgstr "Dialogau Agor/Cadw"
+msgstr "Deialogau Agor/Cadw"
#: optgeneralpage.ui
msgctxt ""
@@ -10997,7 +10997,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Decimal separator key:"
-msgstr "Allweddol gwahanydd degol:"
+msgstr "Allwedd gwahanydd degol:"
#: optlanguagespage.ui
msgctxt ""
@@ -11510,7 +11510,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OS Version"
-msgstr "Fersiwn y System Weithredu"
+msgstr "System Weithredu"
#: optopenclpage.ui
msgctxt ""
@@ -12560,7 +12560,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use OpenGL for all rendering"
-msgstr "Defnyddiwch OpenGL ar gyfer rendro"
+msgstr "Defnyddio OpenGL ar gyfer rendro"
#: optviewpage.ui
msgctxt ""
@@ -16589,7 +16589,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hyphenation"
-msgstr "Cyplysnodi"
+msgstr "Cysylltnodi"
#: textflowpage.ui
msgctxt ""
diff --git a/source/cy/editeng/source/items.po b/source/cy/editeng/source/items.po
index af0aacb286f..e5e8e219933 100644
--- a/source/cy/editeng/source/items.po
+++ b/source/cy/editeng/source/items.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-12-08 10:30+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2016-02-08 16:46+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1418034600.000000\n"
+"X-POOTLE-MTIME: 1454949972.000000\n"
#: page.src
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"RID_SVXITEMS_HYPHEN_TRUE\n"
"string.text"
msgid "Hyphenation"
-msgstr "Cyplysnodi"
+msgstr "Cysylltnodi"
#: svxitems.src
msgctxt ""
@@ -1671,7 +1671,7 @@ msgctxt ""
"RID_SVXITEMS_CHARROTATE_OFF\n"
"string.text"
msgid "No rotated characters"
-msgstr "Dim nodau troi"
+msgstr "Dim nodau wedi'u cylchdroi"
#: svxitems.src
msgctxt ""
@@ -1679,7 +1679,7 @@ msgctxt ""
"RID_SVXITEMS_CHARROTATE\n"
"string.text"
msgid "Character rotated by $(ARG1)°"
-msgstr "Nod trowyd yn ôl $(ARG1)°"
+msgstr "Cylchdrowyd y nod $(ARG1)°"
#: svxitems.src
msgctxt ""
diff --git a/source/cy/filter/uiconfig/ui.po b/source/cy/filter/uiconfig/ui.po
index 538877d08e6..fd14acbc805 100644
--- a/source/cy/filter/uiconfig/ui.po
+++ b/source/cy/filter/uiconfig/ui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-18 16:33+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"PO-Revision-Date: 2016-04-06 08:41+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: Pootle 2.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431966786.000000\n"
+"X-POOTLE-MTIME: 1459932107.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -594,7 +594,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Security"
-msgstr "Dioglwch"
+msgstr "Diogelwch"
#: pdfoptionsdialog.ui
msgctxt ""
@@ -639,7 +639,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "No open password set"
-msgstr "Dim cyfrinair agored wedi eu gosod"
+msgstr "Dim cyfrinair agored wedi ei osod"
#: pdfsecuritypage.ui
msgctxt ""
@@ -792,7 +792,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Commenting, filling in form fields"
-msgstr "_Sylwadau, llanw meysydd ffurflen"
+msgstr "_Sylwadau, llenwi meysydd ffurflen"
#: pdfsecuritypage.ui
msgctxt ""
diff --git a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
index 8cd7acfdf71..69fc752ca5c 100644
--- a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-09-02 14:43+0200\n"
-"PO-Revision-Date: 2015-11-11 11:21+0000\n"
+"PO-Revision-Date: 2016-04-06 08:41+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1447240891.000000\n"
+"X-POOTLE-MTIME: 1459932111.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Vertically"
-msgstr "Troi'n Fertigol"
+msgstr "Gwrthdroi'n Fertigol"
#: CalcCommands.xcu
msgctxt ""
@@ -329,7 +329,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Horizontally"
-msgstr "Troi'n Llorweddol"
+msgstr "Gwrthdroi'n Llorweddol"
#: CalcCommands.xcu
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hyphenation..."
-msgstr "~Cyplysnodi..."
+msgstr "~Cysylltnodi..."
#: CalcCommands.xcu
msgctxt ""
@@ -1175,7 +1175,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Array Formula"
-msgstr "Dewis Fformiwla'r Aräe"
+msgstr "Dewis Fformiwla'r Arae"
#: CalcCommands.xcu
msgctxt ""
@@ -1571,7 +1571,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Headers & Footers..."
-msgstr "~Penawdau a Throedynnau..."
+msgstr "~Penynnau a Throedynnau..."
#: CalcCommands.xcu
msgctxt ""
@@ -6395,7 +6395,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hyphenation"
-msgstr "~Cyplysnodi"
+msgstr "~Cysylltnodi"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6413,7 +6413,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Duplicate ~Slide"
-msgstr "Sleid ~Dyblyg"
+msgstr "Dyblygu'r ~Sleid"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7871,7 +7871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip"
-msgstr "Troi"
+msgstr "Gwrthdroi"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7961,7 +7961,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Flip"
-msgstr "~Troi"
+msgstr "~Gwrthdroi"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8942,7 +8942,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Venetian Blinds"
-msgstr "Lleni Fenetiaidd"
+msgstr "Llenni Delltog"
#: Effects.xcu
msgctxt ""
@@ -9041,7 +9041,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Random Bars"
-msgstr "Barau"
+msgstr "Barrau ar Hap"
#: Effects.xcu
msgctxt ""
@@ -9113,7 +9113,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wipe"
-msgstr "Sychu"
+msgstr "Llusgo"
#: Effects.xcu
msgctxt ""
@@ -9374,7 +9374,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip"
-msgstr "Troi"
+msgstr "Gwrthdroi"
#: Effects.xcu
msgctxt ""
@@ -9671,7 +9671,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Venetian Blinds"
-msgstr "Lleni Fenetiaidd"
+msgstr "Llenni Delltog"
#: Effects.xcu
msgctxt ""
@@ -9779,7 +9779,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Random Bars"
-msgstr "Barau"
+msgstr "Barrau ar Hap"
#: Effects.xcu
msgctxt ""
@@ -9833,7 +9833,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wipe"
-msgstr "Sychu"
+msgstr "Llusgo"
#: Effects.xcu
msgctxt ""
@@ -10022,7 +10022,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip"
-msgstr "Troi"
+msgstr "Gwrthdroi"
#: Effects.xcu
msgctxt ""
@@ -11246,7 +11246,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Venetian Blinds Horizontal"
-msgstr "Lleni Fenetiaidd Llorweddol"
+msgstr "Llenni Delltog Llorweddol"
#: Effects.xcu
msgctxt ""
@@ -11255,7 +11255,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Venetian Blinds Vertical"
-msgstr "Lleni Fenetiaid Fertigol"
+msgstr "Llenni Delltog Fertigol"
#: Effects.xcu
msgctxt ""
@@ -11309,7 +11309,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Comb Vertical"
-msgstr "CribFertigol"
+msgstr "Crib Fertigol"
#: Effects.xcu
msgctxt ""
@@ -11480,7 +11480,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Random Bars Horizontal"
-msgstr "Barau Hap Llorweddol"
+msgstr "Barrau Llorweddol ar Hap"
#: Effects.xcu
msgctxt ""
@@ -11489,7 +11489,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Random Bars Vertical"
-msgstr "Barau Hap Fertigol"
+msgstr "Barrau Fertigol ar Hap"
#: Effects.xcu
msgctxt ""
@@ -11723,7 +11723,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wipe Down"
-msgstr "Sychu Lawr"
+msgstr "Llusgo i Lawr"
#: Effects.xcu
msgctxt ""
@@ -11732,7 +11732,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wipe Left"
-msgstr "Sychu i'r Chwith"
+msgstr "Llusgo i'r Chwith"
#: Effects.xcu
msgctxt ""
@@ -11741,7 +11741,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wipe Right"
-msgstr "Sychu i'r Dde"
+msgstr "Llusgo i'r Dde"
#: Effects.xcu
msgctxt ""
@@ -11750,7 +11750,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wipe Up"
-msgstr "Sychu i Fyny"
+msgstr "Llusgo i Fyny"
#: Effects.xcu
msgctxt ""
@@ -11768,7 +11768,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flipping tiles"
-msgstr "Newid teitlau"
+msgstr "Teils yn gwrthdroi"
#: Effects.xcu
msgctxt ""
@@ -11858,7 +11858,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Venetian Blinds 3D Vertical"
-msgstr "Lleni Fenetiaid Fertigol 3D"
+msgstr "Llenni Delltog Fertigol 3D"
#: Effects.xcu
msgctxt ""
@@ -11867,7 +11867,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Venetian Blinds 3D Horizontal"
-msgstr "Llenni Fenetiaidd Llorweddol 3D"
+msgstr "Llenni Delltog Llorweddol 3D"
#: Effects.xcu
msgctxt ""
@@ -14722,7 +14722,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Rotate"
-msgstr "~Troi"
+msgstr "~Cylchdroi"
#: GenericCommands.xcu
msgctxt ""
@@ -15667,7 +15667,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chinese Conversion..."
-msgstr "Trosi Tseineaidd..."
+msgstr "Trosi Tsieineaidd..."
#: GenericCommands.xcu
msgctxt ""
@@ -17143,7 +17143,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Horizontally"
-msgstr "Troi'n Llorweddol"
+msgstr "Gwrthdroi'n Llorweddol"
#: GenericCommands.xcu
msgctxt ""
@@ -17152,7 +17152,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Vertically"
-msgstr "Troi'n Fertigol"
+msgstr "Gwrthdroi'n Fertigol"
#: GenericCommands.xcu
msgctxt ""
@@ -18142,7 +18142,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Navigator..."
-msgstr "Llywio'r Ffurflen..."
+msgstr "Llywiwr Ffurflen..."
#: GenericCommands.xcu
msgctxt ""
@@ -19303,7 +19303,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Flip"
-msgstr "~Troi"
+msgstr "~Gwrthdroi"
#: GenericCommands.xcu
msgctxt ""
@@ -20941,7 +20941,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Position and Size"
-msgstr "Safel a Maint"
+msgstr "Safle a Maint"
#: Sidebar.xcu
msgctxt ""
@@ -22462,7 +22462,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rotate 90° ~Left"
-msgstr "Troi 90° i'r ~Chwith"
+msgstr "Cylchdroi 90° i'r ~Chwith"
#: WriterCommands.xcu
msgctxt ""
@@ -22471,7 +22471,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rotate 90° ~Right"
-msgstr "Troi 90° i'r ~Dde"
+msgstr "Cylchdroi 90° i'r ~Dde"
#: WriterCommands.xcu
msgctxt ""
@@ -24289,7 +24289,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Images on Even Pages"
-msgstr "Troi Delweddau ar Dudalennau Eilrif"
+msgstr "Gwrthdroi Delweddau ar Dudalennau Eilrif"
#: WriterCommands.xcu
msgctxt ""
@@ -24676,7 +24676,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hyphenation..."
-msgstr "~Cyplysnodi..."
+msgstr "~Cysylltnodi..."
#: WriterCommands.xcu
msgctxt ""
@@ -24775,7 +24775,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Book Preview"
-msgstr "Llyfr Rhagolwg"
+msgstr "Rhagolwg Llyfr"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/cy/readlicense_oo/docs.po b/source/cy/readlicense_oo/docs.po
index c1558bf949d..668ad05bfd6 100644
--- a/source/cy/readlicense_oo/docs.po
+++ b/source/cy/readlicense_oo/docs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-12-08 11:04+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-02-08 16:52+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1418036664.000000\n"
+"X-POOTLE-MTIME: 1454950337.000000\n"
#: readme.xrm
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"naso6\n"
"readmeitem.text"
msgid "To enable touchpad scrolling, add the following lines to the \"<tt>C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.ini</tt>\" configuration file, and restart your computer:"
-msgstr "I alluogi sgrolio pad cyffwrdd, ychwanegwch y llinellau canlynol i ffeil ffurfweddu \"<tt>C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.ini</tt>\" , ac ail gychwyn eich cyfrifiadur:"
+msgstr "I alluogi sgrolio pad cyffwrdd, ychwanegwch y llinellau canlynol i ffeil ffurfweddu \"<tt>C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.ini</tt>\" , ac ailgychwyn eich cyfrifiadur:"
#: readme.xrm
msgctxt ""
diff --git a/source/cy/sc/source/core/src.po b/source/cy/sc/source/core/src.po
index 63c1633563a..0c42e9f2f69 100644
--- a/source/cy/sc/source/core/src.po
+++ b/source/cy/sc/source/core/src.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2011-05-01 07:54+0200\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-04-04 13:55+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1459778101.000000\n"
#: compiler.src
msgctxt ""
@@ -76,7 +77,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "Array"
-msgstr "Aräe"
+msgstr "Arae"
#: compiler.src
msgctxt ""
diff --git a/source/cy/sc/source/ui/drawfunc.po b/source/cy/sc/source/ui/drawfunc.po
index 3944db1a18c..faf6ef38e98 100644
--- a/source/cy/sc/source/ui/drawfunc.po
+++ b/source/cy/sc/source/ui/drawfunc.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-05-11 16:12+0200\n"
-"PO-Revision-Date: 2015-05-19 10:03+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"PO-Revision-Date: 2016-02-10 13:07+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: Pootle 2.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1432029835.000000\n"
+"X-POOTLE-MTIME: 1455109633.000000\n"
#: drformsh.src
msgctxt ""
@@ -202,7 +202,7 @@ msgctxt ""
"SUBMENU_OBJMIRROR\n"
"menuitem.text"
msgid "~Flip"
-msgstr "~Troi"
+msgstr "~Gwrthdroi"
#: objdraw.src
msgctxt ""
diff --git a/source/cy/sc/source/ui/formdlg.po b/source/cy/sc/source/ui/formdlg.po
index c01c6e95145..d1770daae4c 100644
--- a/source/cy/sc/source/ui/formdlg.po
+++ b/source/cy/sc/source/ui/formdlg.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-30 13:09+0200\n"
-"PO-Revision-Date: 2014-01-07 20:07+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-04-04 13:55+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1389125247.0\n"
+"X-POOTLE-MTIME: 1459778106.000000\n"
#: dwfunctr.src
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"Array\n"
"stringlist.text"
msgid "Array"
-msgstr "Aräe"
+msgstr "Arae"
#: dwfunctr.src
msgctxt ""
diff --git a/source/cy/sc/source/ui/src.po b/source/cy/sc/source/ui/src.po
index 7c748c0f7ca..47e0f2afa5d 100644
--- a/source/cy/sc/source/ui/src.po
+++ b/source/cy/sc/source/ui/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-09-02 14:42+0200\n"
-"PO-Revision-Date: 2015-09-14 16:02+0000\n"
+"PO-Revision-Date: 2016-04-06 08:42+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1442246528.000000\n"
+"X-POOTLE-MTIME: 1459932147.000000\n"
#: condformatdlg.src
msgctxt ""
@@ -1548,7 +1548,7 @@ msgctxt ""
"STR_UNDO_ENTERMATRIX\n"
"string.text"
msgid "Insert Array Formula"
-msgstr "Mewnosod Fformiwla Aräe"
+msgstr "Mewnosod Fformiwla Arae"
#: globstr.src
msgctxt ""
@@ -2693,7 +2693,7 @@ msgctxt ""
"STR_READONLYERR\n"
"string.text"
msgid "Document opened in read-only mode."
-msgstr "Agor dogfen ym modd darllen yn unig."
+msgstr "Dogfen ar agor ym modd darllen yn unig."
#: globstr.src
msgctxt ""
@@ -3500,7 +3500,7 @@ msgctxt ""
"STR_UNDO_TAB_RTL\n"
"string.text"
msgid "Flip sheet"
-msgstr "Dalen"
+msgstr "Gwrthdroi'r ddalen"
#: globstr.src
msgctxt ""
@@ -6097,7 +6097,7 @@ msgctxt ""
"FID_PROTECT_TABLE\n"
"menuitem.text"
msgid "~Protect Sheet..."
-msgstr "~Diogelu dalen..."
+msgstr "~Diogelu Dalen..."
#: popup.src
msgctxt ""
@@ -6115,7 +6115,7 @@ msgctxt ""
"FID_TAB_EVENTS\n"
"menuitem.text"
msgid "Sheet E~vents..."
-msgstr "D~igwyddoadau Taflen..."
+msgstr "D~igwyddiadau Dalen..."
#: popup.src
msgctxt ""
@@ -13628,7 +13628,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The first array for the array product."
-msgstr "Aräe cyntaf cynnyrch aräe."
+msgstr "Arae cyntaf cynnyrch arae."
#: scfuncs.src
msgctxt ""
@@ -13745,7 +13745,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Array "
-msgstr "Aräe "
+msgstr "Arae "
#: scfuncs.src
msgctxt ""
@@ -13754,7 +13754,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "Array 1, array 2, ... are up to 30 arrays whose arguments are to be multiplied."
-msgstr "Aräe 1, aräe 2, ... i fyny i 30 aräe y mae eu hymresymiadau i'w lluosogi."
+msgstr "Arae 1, arae 2, ... i fyny i 30 aräe y mae eu hymresymiadau i'w lluosogi."
#: scfuncs.src
msgctxt ""
@@ -13781,7 +13781,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "First array where the square of the arguments are totalled."
-msgstr "Aräe cyntaf lle mae sgwâr yr ymresymiadau i'w cyfansymu."
+msgstr "Arae cyntaf lle mae sgwâr yr ymresymiadau i'w cyfansymu."
#: scfuncs.src
msgctxt ""
@@ -13826,7 +13826,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "First array where the square of the arguments are totalled."
-msgstr "Aräe cyntaf lle mae sgwâr yr ymresymiadau i'w cyfansymu."
+msgstr "Arae cyntaf lle mae sgwâr yr ymresymiadau i'w cyfansymu."
#: scfuncs.src
msgctxt ""
@@ -13871,7 +13871,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "First array for forming argument differences."
-msgstr "Aräe cyntaf ar gyfer ffurfio gwahaniaethau ymresymiad."
+msgstr "Arae cyntaf ar gyfer ffurfio gwahaniaethau ymresymiad."
#: scfuncs.src
msgctxt ""
@@ -13916,7 +13916,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data."
-msgstr "Aräe o'r data."
+msgstr "Arae o'r data."
#: scfuncs.src
msgctxt ""
@@ -13934,7 +13934,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The array for forming classes."
-msgstr "Aräe dosbarthiadau ffurf."
+msgstr "Arae dosbarthiadau ffurf."
#: scfuncs.src
msgctxt ""
@@ -13961,7 +13961,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The Y data array."
-msgstr "Aräe data Y."
+msgstr "Arae data Y."
#: scfuncs.src
msgctxt ""
@@ -13979,7 +13979,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The X data array."
-msgstr "Aräe data X."
+msgstr "Arae data X."
#: scfuncs.src
msgctxt ""
@@ -14042,7 +14042,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The Y data array."
-msgstr "Aräe data Y."
+msgstr "Arae data Y."
#: scfuncs.src
msgctxt ""
@@ -14060,7 +14060,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The X data array."
-msgstr "Aräe data X."
+msgstr "Arae data X."
#: scfuncs.src
msgctxt ""
@@ -14123,7 +14123,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The Y data array."
-msgstr "Aräe data Y."
+msgstr "Arae data Y."
#: scfuncs.src
msgctxt ""
@@ -14141,7 +14141,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The X data array as the basis for the regression."
-msgstr "Aräe data X fel sail atchweliad."
+msgstr "Arae data X fel sail atchweliad."
#: scfuncs.src
msgctxt ""
@@ -14159,7 +14159,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The array of X data for recalculating the values."
-msgstr "Aräe data X ar gyfer ailgyfrifo'r gwerthoedd."
+msgstr "Arae data X ar gyfer ail-gyfrifo'r gwerthoedd."
#: scfuncs.src
msgctxt ""
@@ -14204,7 +14204,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The Y data array."
-msgstr "Aräe data Y."
+msgstr "Arae data Y."
#: scfuncs.src
msgctxt ""
@@ -14222,7 +14222,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The X data array as the basis for the regression."
-msgstr "Aräe data X fel sail atchweliad."
+msgstr "Arae data X fel sail atchweliad."
#: scfuncs.src
msgctxt ""
@@ -14240,7 +14240,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The array of X data for recalculating the values."
-msgstr "Aräe data X ar gyfer ailgyfrifo'r gwerthoedd."
+msgstr "Arae data X ar gyfer ail-gyfrifo'r gwerthoedd."
#: scfuncs.src
msgctxt ""
@@ -15122,7 +15122,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15167,7 +15167,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15212,7 +15212,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15257,7 +15257,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15302,7 +15302,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15347,7 +15347,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15392,7 +15392,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15437,7 +15437,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15482,7 +15482,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15545,7 +15545,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15608,7 +15608,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15689,7 +15689,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15752,7 +15752,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15815,7 +15815,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15860,7 +15860,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array of the data in the sample."
-msgstr "Aräe data yn y sampl."
+msgstr "Arae data yn y sampl."
#: scfuncs.src
msgctxt ""
@@ -15905,7 +15905,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The sample data array."
-msgstr "Aräe data syml."
+msgstr "Arae data syml."
#: scfuncs.src
msgctxt ""
@@ -15923,7 +15923,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The array of the associated probabilities."
-msgstr "Aräe o debygolrwyddau cysylltiedig."
+msgstr "Arae o debygolrwyddau cysylltiedig."
#: scfuncs.src
msgctxt ""
@@ -20189,7 +20189,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The given sample, drawn from a normally distributed population."
-msgstr "Aräe data."
+msgstr "Arae data."
#: scfuncs.src
msgctxt ""
@@ -20315,7 +20315,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The observed data array."
-msgstr "Aräe data arsylwedig."
+msgstr "Arae data arsylwedig."
#: scfuncs.src
msgctxt ""
@@ -20333,7 +20333,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The expected data array."
-msgstr "Aräe data disgwyliedig."
+msgstr "Arae data disgwyliedig."
#: scfuncs.src
msgctxt ""
@@ -20360,7 +20360,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The observed data array."
-msgstr "Aräe data arsylwedig."
+msgstr "Arae data arsylwedig."
#: scfuncs.src
msgctxt ""
@@ -20378,7 +20378,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The expected data array."
-msgstr "Aräe data disgwyliedig."
+msgstr "Arae data disgwyliedig."
#: scfuncs.src
msgctxt ""
@@ -20405,7 +20405,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The first record array."
-msgstr "Aräe cofnod cyntaf."
+msgstr "Arae cofnod cyntaf."
#: scfuncs.src
msgctxt ""
@@ -20450,7 +20450,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The first record array."
-msgstr "Aräe cofnod cyntaf."
+msgstr "Arae cofnod cyntaf."
#: scfuncs.src
msgctxt ""
@@ -20495,7 +20495,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The first record array."
-msgstr "Aräe cofnod cyntaf."
+msgstr "Arae cofnod cyntaf."
#: scfuncs.src
msgctxt ""
@@ -20576,7 +20576,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The first record array."
-msgstr "Aräe cofnod cyntaf."
+msgstr "Arae cofnod cyntaf."
#: scfuncs.src
msgctxt ""
@@ -20657,7 +20657,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The Y data array."
-msgstr "Aräe data Y."
+msgstr "Arae data Y."
#: scfuncs.src
msgctxt ""
@@ -20675,7 +20675,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The X data array."
-msgstr "Aräe data X."
+msgstr "Arae data X."
#: scfuncs.src
msgctxt ""
@@ -20702,7 +20702,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The Y data array."
-msgstr "Aräe data Y."
+msgstr "Arae data Y."
#: scfuncs.src
msgctxt ""
@@ -20720,7 +20720,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The X data array."
-msgstr "Aräe data X."
+msgstr "Arae data X."
#: scfuncs.src
msgctxt ""
@@ -20747,7 +20747,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The Y data array."
-msgstr "Aräe data Y."
+msgstr "Arae data Y."
#: scfuncs.src
msgctxt ""
@@ -20765,7 +20765,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The X data array."
-msgstr "Aräe data X."
+msgstr "Arae data X."
#: scfuncs.src
msgctxt ""
@@ -20792,7 +20792,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The Y data array."
-msgstr "Aräe data Y."
+msgstr "Arae data Y."
#: scfuncs.src
msgctxt ""
@@ -20810,7 +20810,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The X data array."
-msgstr "Aräe data X."
+msgstr "Arae data X."
#: scfuncs.src
msgctxt ""
@@ -20837,7 +20837,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The first record array."
-msgstr "Aräe cofnod cyntaf."
+msgstr "Arae cofnod cyntaf."
#: scfuncs.src
msgctxt ""
@@ -20882,7 +20882,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The first record array."
-msgstr "Aräe cofnod cyntaf."
+msgstr "Arae cofnod cyntaf."
#: scfuncs.src
msgctxt ""
@@ -20927,7 +20927,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The first record array."
-msgstr "Aräe cofnod cyntaf."
+msgstr "Arae cofnod cyntaf."
#: scfuncs.src
msgctxt ""
@@ -20972,7 +20972,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The first record array."
-msgstr "Aräe cofnod cyntaf."
+msgstr "Arae cofnod cyntaf."
#: scfuncs.src
msgctxt ""
@@ -21017,7 +21017,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The first record array."
-msgstr "Aräe cofnod cyntaf."
+msgstr "Arae cofnod cyntaf."
#: scfuncs.src
msgctxt ""
@@ -21080,7 +21080,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The Y data array."
-msgstr "Aräe data Y."
+msgstr "Arae data Y."
#: scfuncs.src
msgctxt ""
@@ -21098,7 +21098,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The X data array."
-msgstr "Aräe data X."
+msgstr "Arae data X."
#: scfuncs.src
msgctxt ""
@@ -21379,7 +21379,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array (reference) for which the number of columns is to be determined."
-msgstr "Aräe (cyfeiriad ) y bydd nifer y colofnau yn cael eu pennu."
+msgstr "Arae (cyfeiriad ) y bydd nifer y colofnau yn cael eu pennu."
#: scfuncs.src
msgctxt ""
@@ -21406,7 +21406,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The array (reference) for which the number of rows is to be determined."
-msgstr "Aräe (cyfeiriad ) y bydd nifer y colofnau yn cael eu pennu."
+msgstr "Arae (cyfeiriad ) y bydd nifer y colofnau yn cael eu pennu."
#: scfuncs.src
msgctxt ""
@@ -21478,7 +21478,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The array or the range for the reference."
-msgstr "Aräe neu ystod ar gyfer cyfeiriadaeth."
+msgstr "Arae neu ystod ar gyfer cyfeiriadaeth."
#: scfuncs.src
msgctxt ""
@@ -21559,7 +21559,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The array or range for referencing."
-msgstr "Aräe neu ystod ar gyfer cyfeiriadaeth."
+msgstr "Arae neu ystod ar gyfer cyfeiriadaeth."
#: scfuncs.src
msgctxt ""
@@ -21829,7 +21829,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The array (range) in which the search is made."
-msgstr "Aräe (ystodau) lle gwneir y chwilio."
+msgstr "Arae (ystodau) lle gwneir y chwilio."
#: scfuncs.src
msgctxt ""
diff --git a/source/cy/scp2/source/accessories.po b/source/cy/scp2/source/accessories.po
index 9669b80c604..0757f3b7371 100644
--- a/source/cy/scp2/source/accessories.po
+++ b/source/cy/scp2/source/accessories.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2015-05-19 10:55+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"PO-Revision-Date: 2016-02-10 13:40+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: Pootle 2.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1432032930.000000\n"
+"X-POOTLE-MTIME: 1455111617.000000\n"
#: module_accessories.ulf
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_ZH_TW\n"
"LngText.text"
msgid "Installs Chinese (traditional) support in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Gosod cefnogaeth i'r Tsieninêeg (traddodiadol) yn %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Gosod cefnogaeth i'r Tsienineeg (traddodiadol) yn %PRODUCTNAME %PRODUCTVERSION"
#: module_samples_accessories.ulf
msgctxt ""
@@ -2078,7 +2078,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_ZH_TW\n"
"LngText.text"
msgid "Installs Chinese (traditional) support in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Gosod cefnogaeth i'r Tsieninêeg (traddodiadol) yn %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Gosod cefnogaeth i'r Tsienineeg (traddodiadol) yn %PRODUCTNAME %PRODUCTVERSION"
#: module_templates_accessories.ulf
msgctxt ""
diff --git a/source/cy/scp2/source/ooo.po b/source/cy/scp2/source/ooo.po
index 9be9c2bf928..b12ab247303 100644
--- a/source/cy/scp2/source/ooo.po
+++ b/source/cy/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2015-07-07 10:04+0000\n"
+"PO-Revision-Date: 2016-02-08 16:53+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1436263457.000000\n"
+"X-POOTLE-MTIME: 1454950420.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"STR_DESC_MODULE_HELPPACK_ZH_TW\n"
"LngText.text"
msgid "Installs Chinese (traditional) help in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Gosod Cymorth Tseineeg (traddodiadol) yn %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Gosod Cymorth Tsieineeg (traddodiadol) yn %PRODUCTNAME %PRODUCTVERSION"
#: module_helppack.ulf
msgctxt ""
diff --git a/source/cy/sd/source/ui/app.po b/source/cy/sd/source/ui/app.po
index 9e645aad953..5e899688885 100644
--- a/source/cy/sd/source/ui/app.po
+++ b/source/cy/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-06-24 17:06+0200\n"
-"PO-Revision-Date: 2015-08-27 18:03+0000\n"
+"PO-Revision-Date: 2016-02-10 13:02+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440698590.000000\n"
+"X-POOTLE-MTIME: 1455109359.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"SID_DUPLICATE_PAGE\n"
"menuitem.text"
msgid "~Duplicate Slide"
-msgstr "Sleid ~Dyblyg"
+msgstr "~Dyblygu'r Sleid"
#: menuids_tmpl.src
msgctxt ""
@@ -1067,7 +1067,7 @@ msgctxt ""
"SID_MIRROR\n"
"menuitem.text"
msgid "~Flip"
-msgstr "~Fflipio"
+msgstr "~Gwrthdroi"
#: menuids_tmpl.src
msgctxt ""
diff --git a/source/cy/sd/uiconfig/simpress/ui.po b/source/cy/sd/uiconfig/simpress/ui.po
index 2b25eb26e1e..f882b38cf79 100644
--- a/source/cy/sd/uiconfig/simpress/ui.po
+++ b/source/cy/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-06-24 17:06+0200\n"
-"PO-Revision-Date: 2015-07-07 10:08+0000\n"
+"PO-Revision-Date: 2016-02-09 16:53+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: none\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1436263689.000000\n"
+"X-POOTLE-MTIME: 1455036820.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -1859,7 +1859,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Compatibility"
-msgstr "Cytunedd"
+msgstr "Cydweddiad"
#: photoalbum.ui
msgctxt ""
diff --git a/source/cy/sfx2/source/view.po b/source/cy/sfx2/source/view.po
index 2118dc6296a..707aa2f38cd 100644
--- a/source/cy/sfx2/source/view.po
+++ b/source/cy/sfx2/source/view.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:22+0100\n"
-"PO-Revision-Date: 2014-12-06 16:22+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-04-06 08:42+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1417882957.000000\n"
+"X-POOTLE-MTIME: 1459932163.000000\n"
#: view.src
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"STR_READONLY_DOCUMENT\n"
"string.text"
msgid "This document is open in read-only mode."
-msgstr "Agor dogfen ym modd darllen yn unig."
+msgstr "Dogfen ar agor ym modd darllen yn unig."
#: view.src
msgctxt ""
diff --git a/source/cy/sfx2/uiconfig/ui.po b/source/cy/sfx2/uiconfig/ui.po
index 29be5c748a8..b0bbe5edb43 100644
--- a/source/cy/sfx2/uiconfig/ui.po
+++ b/source/cy/sfx2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-08 14:52+0100\n"
-"PO-Revision-Date: 2016-01-11 15:44+0000\n"
+"PO-Revision-Date: 2016-02-08 16:54+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: none\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452527085.000000\n"
+"X-POOTLE-MTIME: 1454950455.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -755,13 +755,13 @@ msgid ""
msgstr ""
"Mae %PRODUCTNAME ar gael yn unol ag amodau'r Mozilla Public License, v. 2.0. Mae copi o drwydded MPL ar gael yn http://mozilla.org/MPL/2.0/.\n"
"\n"
-"Mae hysbysiadau hawlfraint at Third Party Code Additional ac amodau trwyddedu darnau perthnasol y Feddalwedd ar gael yn y ffeil LICENSE.html file; dewiswch Dangos Trwydded i weld y manylion yn Saesneg.\n"
+"Mae hysbysiadau hawlfraint at Third Party Code Additional ac amodau trwyddedu darnau perthnasol y Feddalwedd ar gael yn y ffeil LICENSE.html file; dewiswch Dangos y Drwydded i weld y manylion yn Saesneg.\n"
"\n"
"Eiddo eu perchnogion yw'r holl nodau masnach a nodau masnach cofrestredig nodir yma.\n"
"\n"
-"Hawlfraint © 2000, 2016 cyfranwyr LibreOffice contributors a'u cysylltiadau. Diogelir pob hawl.\n"
+"Hawlfraint © 2000, 2016 cyfranwyr LibreOffice a'u cysylltiadau. Diogelir pob hawl.\n"
"\n"
-"Crëwyd y cynnyrch hwn gan %OOOVENDOR, ar sail OpenOffice.org, Hawlfraint 2000, 2011 Oracle a/neu ei gysylltiadau. Mae %OOOVENDOR yn cydnabod pob aelod cymunedol, gw. http://www.libreoffice.org/ am wybodaeth bellach."
+"Crëwyd y cynnyrch hwn gan %OOOVENDOR, ar sail OpenOffice.org, Hawlfraint 2000, 2011 Oracle a/neu ei gysylltiadau. Mae %OOOVENDOR yn cydnabod pob aelod cymunedol, gweler http://www.libreoffice.org/ am wybodaeth bellach."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/cy/starmath/uiconfig/smath/ui.po b/source/cy/starmath/uiconfig/smath/ui.po
index a91b44e1adb..8a3f7df7225 100644
--- a/source/cy/starmath/uiconfig/smath/ui.po
+++ b/source/cy/starmath/uiconfig/smath/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-07-07 08:50+0000\n"
+"PO-Revision-Date: 2016-02-10 11:59+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: none\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1436259024.000000\n"
+"X-POOTLE-MTIME: 1455105594.000000\n"
#: alignmentdialog.ui
msgctxt ""
@@ -788,7 +788,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fraction Bar"
-msgstr "Barau Ffracsiwn"
+msgstr "Bar Ffracsiwn"
#: spacingdialog.ui
msgctxt ""
@@ -1013,7 +1013,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fraction Bars"
-msgstr "Barau Ffracsiwn"
+msgstr "Barrau Ffracsiwn"
#: spacingdialog.ui
msgctxt ""
diff --git a/source/cy/svtools/source/misc.po b/source/cy/svtools/source/misc.po
index d75d7668a9e..e4999da14fa 100644
--- a/source/cy/svtools/source/misc.po
+++ b/source/cy/svtools/source/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-06-24 17:06+0200\n"
-"PO-Revision-Date: 2015-07-07 08:50+0000\n"
+"PO-Revision-Date: 2016-04-06 08:42+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1436259046.000000\n"
+"X-POOTLE-MTIME: 1459932173.000000\n"
#: imagemgr.src
msgctxt ""
@@ -924,7 +924,7 @@ msgctxt ""
"LANGUAGE_CHINESE_HONGKONG\n"
"pairedlist.text"
msgid "Chinese (Hong Kong)"
-msgstr "Tseinëeg (Hong Kong)"
+msgstr "Tsieineeg (Hong Kong)"
#: langtab.src
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"LANGUAGE_CHINESE_MACAU\n"
"pairedlist.text"
msgid "Chinese (Macau)"
-msgstr "Tseinëeg (Macau)"
+msgstr "Tsieinëeg (Macau)"
#: langtab.src
msgctxt ""
@@ -1419,7 +1419,7 @@ msgctxt ""
"LANGUAGE_KOREAN\n"
"pairedlist.text"
msgid "Korean (RoK)"
-msgstr "Korean (RoK)"
+msgstr "Coreeg (Gw.C)"
#: langtab.src
msgctxt ""
@@ -2598,7 +2598,7 @@ msgctxt ""
"LANGUAGE_USER_ENGLISH_GHANA\n"
"pairedlist.text"
msgid "English (Ghana)"
-msgstr "English (Ghana)"
+msgstr "Saesneg (Ghana)"
#: langtab.src
msgctxt ""
@@ -3777,7 +3777,7 @@ msgctxt ""
"LANGUAGE_USER_VENETIAN\n"
"pairedlist.text"
msgid "Venetian"
-msgstr "Fenetiaidd"
+msgstr "Fenisaidd"
#: svtools.src
msgctxt ""
diff --git a/source/cy/svx/inc.po b/source/cy/svx/inc.po
index 940855356e7..bdfb5752725 100644
--- a/source/cy/svx/inc.po
+++ b/source/cy/svx/inc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-06-24 17:06+0200\n"
-"PO-Revision-Date: 2015-07-07 08:51+0000\n"
+"PO-Revision-Date: 2016-02-08 16:56+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1436259080.000000\n"
+"X-POOTLE-MTIME: 1454950588.000000\n"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -423,7 +423,7 @@ msgctxt ""
"DEFINE_SLOTID_FOR_NUMBER_BULLETS\n"
"menuitem.text"
msgid "~Bullets and Numbering..."
-msgstr "~Bledi a Rhifo..."
+msgstr "~Bwledi a Rhifo..."
#: globlmn_tmpl.hrc
msgctxt ""
@@ -475,7 +475,7 @@ msgctxt ""
"ITEM_POPUP_GROUP\n"
"#define.text"
msgid "~Group"
-msgstr "~Gr?p"
+msgstr "~Grŵp"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -508,7 +508,7 @@ msgctxt ""
"SID_MN_GROUP\n"
"menuitem.text"
msgid "~Group"
-msgstr "~Gr?p"
+msgstr "~Grŵp"
#: globlmn_tmpl.hrc
msgctxt ""
diff --git a/source/cy/svx/source/dialog.po b/source/cy/svx/source/dialog.po
index 7f942c25d3c..a388d531154 100644
--- a/source/cy/svx/source/dialog.po
+++ b/source/cy/svx/source/dialog.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-05-11 16:12+0200\n"
-"PO-Revision-Date: 2015-05-19 11:52+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"PO-Revision-Date: 2016-04-06 08:42+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: Pootle 2.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1432036345.000000\n"
+"X-POOTLE-MTIME: 1459932177.000000\n"
#: bmpmask.src
msgctxt ""
@@ -2836,7 +2836,7 @@ msgctxt ""
"RID_SVXSTR_CALC_STYLES\n"
"string.text"
msgid "Search for Cell St~yles"
-msgstr "Chwilio a Arddulliau ~Celloedd"
+msgstr "Chwilio am Arddulliau ~Celloedd"
#: srchdlg.src
msgctxt ""
diff --git a/source/cy/svx/source/engine3d.po b/source/cy/svx/source/engine3d.po
index 7f1ef76fb8d..1241b4b6c10 100644
--- a/source/cy/svx/source/engine3d.po
+++ b/source/cy/svx/source/engine3d.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2013-06-17 12:22+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"PO-Revision-Date: 2016-02-08 16:56+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1371471762.0\n"
+"X-POOTLE-MTIME: 1454950595.000000\n"
#: float3d.src
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"RID_SVX_3D_UNDO_ROTATE\n"
"string.text"
msgid "Rotate 3D object"
-msgstr "Troi'r gwrthrych 3D"
+msgstr "Cylchdroi'r gwrthrych 3D"
#: string3d.src
msgctxt ""
diff --git a/source/cy/svx/source/form.po b/source/cy/svx/source/form.po
index feeccba42d4..fbc8ac2ace8 100644
--- a/source/cy/svx/source/form.po
+++ b/source/cy/svx/source/form.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2014-12-05 11:37+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"PO-Revision-Date: 2016-02-09 15:32+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1417779436.000000\n"
+"X-POOTLE-MTIME: 1455031977.000000\n"
#: datanavi.src
msgctxt ""
@@ -769,7 +769,7 @@ msgctxt ""
"RID_STR_FMEXPLORER\n"
"string.text"
msgid "Form Navigator"
-msgstr "Porwr Ffurflen"
+msgstr "Llywiwr Ffurflen"
#: fmstring.src
msgctxt ""
diff --git a/source/cy/svx/source/items.po b/source/cy/svx/source/items.po
index 4f485117d67..1e42ae1db27 100644
--- a/source/cy/svx/source/items.po
+++ b/source/cy/svx/source/items.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-06-24 17:06+0200\n"
-"PO-Revision-Date: 2015-07-07 08:52+0000\n"
+"PO-Revision-Date: 2016-02-08 16:56+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1436259135.000000\n"
+"X-POOTLE-MTIME: 1454950598.000000\n"
#: svxerr.src
msgctxt ""
@@ -505,7 +505,7 @@ msgctxt ""
"Hyphenation\n"
"itemlist.text"
msgid "Hyphenation"
-msgstr "Cyplysnodi"
+msgstr "Cysylltnodi"
#: svxitems.src
msgctxt ""
diff --git a/source/cy/svx/source/sidebar/area.po b/source/cy/svx/source/sidebar/area.po
index d7f271863c4..8b52c225922 100644
--- a/source/cy/svx/source/sidebar/area.po
+++ b/source/cy/svx/source/sidebar/area.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2014-05-29 13:13+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2016-02-08 16:56+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1401369235.000000\n"
+"X-POOTLE-MTIME: 1454950605.000000\n"
#: AreaPropertyPanel.src
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"STR_HELP_LEFT\n"
"string.text"
msgid "Rotate counterclockwise by 45 degrees."
-msgstr "Troi gwrthglocwedd 45 gradd."
+msgstr "Cylchdroi gwrthglocwedd 45 gradd."
#: AreaPropertyPanel.src
msgctxt ""
@@ -149,4 +149,4 @@ msgctxt ""
"STR_HELP_RIGHT\n"
"string.text"
msgid "Rotate clockwise by 45 degrees."
-msgstr "Troi clocwedd 45 gradd."
+msgstr "Cylchdroi clocwedd 45 gradd."
diff --git a/source/cy/svx/source/svdraw.po b/source/cy/svx/source/svdraw.po
index 281afb98b0f..d32d1f32b35 100644
--- a/source/cy/svx/source/svdraw.po
+++ b/source/cy/svx/source/svdraw.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2014-05-29 13:15+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2016-02-10 13:28+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1401369347.000000\n"
+"X-POOTLE-MTIME: 1455110931.000000\n"
#: svdstr.src
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"STR_EditRotate\n"
"string.text"
msgid "Rotate %1"
-msgstr "Troi %1"
+msgstr "Cylchdroi %1"
#: svdstr.src
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"STR_EditMirrorHori\n"
"string.text"
msgid "Flip %1 horizontal"
-msgstr "Tro %1 yn llorweddol"
+msgstr "Gwrthdroi %1 yn llorweddol"
#: svdstr.src
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"STR_EditMirrorVert\n"
"string.text"
msgid "Flip %1 vertical"
-msgstr "Troi %1 yn fertigol"
+msgstr "Gwrthdroi %1 yn fertigol"
#: svdstr.src
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"STR_EditMirrorDiag\n"
"string.text"
msgid "Flip %1 diagonal"
-msgstr "Troi %1 yn groeslin"
+msgstr "Gwrthdroi %1 yn groeslin"
#: svdstr.src
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"STR_EditMirrorFree\n"
"string.text"
msgid "Flip %1 freehand"
-msgstr "Tro %1 llaw rydd"
+msgstr "Gwrthdroi %1 llaw rydd"
#: svdstr.src
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"STR_DragMethRotate\n"
"string.text"
msgid "Rotate %1"
-msgstr "Troi %1"
+msgstr "Cylchdroi %1"
#: svdstr.src
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"STR_DragMethMirrorHori\n"
"string.text"
msgid "Flip %1 horizontal"
-msgstr "Tro %1 yn llorweddol"
+msgstr "Gwrthdroi %1 yn llorweddol"
#: svdstr.src
msgctxt ""
@@ -1702,7 +1702,7 @@ msgctxt ""
"STR_DragMethMirrorVert\n"
"string.text"
msgid "Flip %1 vertical"
-msgstr "Troi %1 yn fertigol"
+msgstr "Gwrthdroi %1 yn fertigol"
#: svdstr.src
msgctxt ""
@@ -1710,7 +1710,7 @@ msgctxt ""
"STR_DragMethMirrorDiag\n"
"string.text"
msgid "Flip %1 diagonal"
-msgstr "Troi %1 yn groeslin"
+msgstr "Gwrthdroi %1 yn groeslin"
#: svdstr.src
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"STR_DragMethMirrorFree\n"
"string.text"
msgid "Flip %1 freehand"
-msgstr "Tro %1 llaw rydd"
+msgstr "Gwrthdroi %1 llaw rydd"
#: svdstr.src
msgctxt ""
@@ -4030,7 +4030,7 @@ msgctxt ""
"SIP_SA_MEASURETEXTUPSIDEDOWN\n"
"string.text"
msgid "Rotate dimension value by 180 degree"
-msgstr "Troi gwerth dimeniwn 180 gradd"
+msgstr "Cylchdroi gwerth dimensiwn 180 gradd"
#: svdstr.src
msgctxt ""
@@ -4422,7 +4422,7 @@ msgctxt ""
"SIP_SA_ROTATEALL\n"
"string.text"
msgid "Rotate all"
-msgstr "Cylchdroi poeth"
+msgstr "Cylchdroi popeth"
#: svdstr.src
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"SIP_EE_PARA_HYPHENATE\n"
"string.text"
msgid "Hyphenation"
-msgstr "Cyplysnodi"
+msgstr "Cysylltnodi"
#: svdstr.src
msgctxt ""
diff --git a/source/cy/svx/uiconfig/ui.po b/source/cy/svx/uiconfig/ui.po
index 62a326960bf..984328569f1 100644
--- a/source/cy/svx/uiconfig/ui.po
+++ b/source/cy/svx/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-06-24 17:06+0200\n"
-"PO-Revision-Date: 2015-08-27 18:03+0000\n"
+"PO-Revision-Date: 2016-02-10 12:59+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440698614.000000\n"
+"X-POOTLE-MTIME: 1455109180.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -2120,7 +2120,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Rotate"
-msgstr "Troi"
+msgstr "Cylchdroi"
#: dockingfontwork.ui
msgctxt ""
@@ -3051,7 +3051,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Footer on"
-msgstr "_Troedyn ar"
+msgstr "_Troedyn ymlaen"
#: headfootformatpage.ui
msgctxt ""
@@ -5647,7 +5647,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Flip:"
-msgstr "_Fflipio:"
+msgstr "_Gwrthdroi:"
#: sidebarpossize.ui
msgctxt ""
@@ -5656,7 +5656,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Flip the selected object vertically."
-msgstr "Fflipio'r gwrthrych yn fertigol."
+msgstr "Gwrthdroi'r gwrthrych yn fertigol."
#: sidebarpossize.ui
msgctxt ""
@@ -5665,7 +5665,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Flip the selected object vertically."
-msgstr "Fflipio'r gwrthrych yn fertigol."
+msgstr "Gwrthdroi'r gwrthrych yn fertigol."
#: sidebarpossize.ui
msgctxt ""
@@ -5674,7 +5674,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Flip the selected object horizontally."
-msgstr "Fflipio’r gwrthrych yn llorweddol."
+msgstr "Gwrthdroi’r gwrthrych yn llorweddol."
#: sidebarpossize.ui
msgctxt ""
@@ -5683,7 +5683,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Flip the selected object horizontally."
-msgstr "Fflipio’r gwrthrych yn llorweddol."
+msgstr "Gwrthdroi’r gwrthrych yn llorweddol."
#: textcontrolchardialog.ui
msgctxt ""
diff --git a/source/cy/sw/source/ui/app.po b/source/cy/sw/source/ui/app.po
index 20d0527b021..f20e79927aa 100644
--- a/source/cy/sw/source/ui/app.po
+++ b/source/cy/sw/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-07-15 14:44+0000\n"
+"PO-Revision-Date: 2016-04-06 08:43+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1436971489.000000\n"
+"X-POOTLE-MTIME: 1459932191.000000\n"
#: app.src
msgctxt ""
@@ -201,7 +201,7 @@ msgctxt ""
"Frame Styles\n"
"sfxstylefamilyitem.text"
msgid "Frame Styles"
-msgstr "Arddull Ffrâm"
+msgstr "Arddulliau Ffrâm"
#: app.src
msgctxt ""
@@ -615,7 +615,7 @@ msgctxt ""
"STR_STATSTR_HYPHEN\n"
"string.text"
msgid "Hyphenation..."
-msgstr "Cyplysnodi..."
+msgstr "Cysylltnodi..."
#: app.src
msgctxt ""
@@ -2325,7 +2325,7 @@ msgctxt ""
"SID_ROTATE_GRAPHIC_LEFT\n"
"menuitem.text"
msgid "Rotate 90° Left"
-msgstr "Troi 90° i'r Chwith"
+msgstr "Cylchdroi 90° i'r Chwith"
#: mn.src
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"SID_ROTATE_GRAPHIC_RIGHT\n"
"menuitem.text"
msgid "Rotate 90° Right"
-msgstr "Troi 90° i'r Dde"
+msgstr "Cylchdroi 90° i'r Dde"
#: mn.src
msgctxt ""
@@ -2343,7 +2343,7 @@ msgctxt ""
"SID_MENU_MANAGE_GRAPHIC\n"
"menuitem.text"
msgid "~Rotate"
-msgstr "~Troi"
+msgstr "~Cylchdroi"
#: mn.src
msgctxt ""
diff --git a/source/cy/sw/source/ui/config.po b/source/cy/sw/source/ui/config.po
index 99b9ce48b28..9c54acccb89 100644
--- a/source/cy/sw/source/ui/config.po
+++ b/source/cy/sw/source/ui/config.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-30 13:08+0200\n"
-"PO-Revision-Date: 2014-05-29 13:22+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-02-08 17:01+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1401369757.000000\n"
+"X-POOTLE-MTIME: 1454950915.000000\n"
#: optdlg.src
msgctxt ""
@@ -236,7 +236,7 @@ msgctxt ""
"Front sides / right pages\n"
"itemlist.text"
msgid "Front sides / right pages"
-msgstr "Ochrau blaern / tudalennau de"
+msgstr "Ochrau blaen / tudalennau de"
#: optdlg.src
msgctxt ""
diff --git a/source/cy/sw/source/ui/sidebar.po b/source/cy/sw/source/ui/sidebar.po
index b0f4aed8e58..70baf966361 100644
--- a/source/cy/sw/source/ui/sidebar.po
+++ b/source/cy/sw/source/ui/sidebar.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-12-01 17:38+0100\n"
-"PO-Revision-Date: 2014-01-07 21:31+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-02-09 15:34+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: Pootle 2.5.0\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1389130288.0\n"
+"X-POOTLE-MTIME: 1455032089.000000\n"
#: PagePropertyPanel.src
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"STR_LANDSCAPE\n"
"string.text"
msgid "Landscape"
-msgstr "Tirwedd"
+msgstr "Tirlun"
#: PagePropertyPanel.src
msgctxt ""
diff --git a/source/cy/sw/source/ui/utlui.po b/source/cy/sw/source/ui/utlui.po
index 895d993b291..0bb491ef44c 100644
--- a/source/cy/sw/source/ui/utlui.po
+++ b/source/cy/sw/source/ui/utlui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-12-08 10:48+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-02-08 17:02+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1418035686.000000\n"
+"X-POOTLE-MTIME: 1454950923.000000\n"
#: poolfmt.src
msgctxt ""
@@ -2077,7 +2077,7 @@ msgctxt ""
"STR_HYPH_TITLE\n"
"string.text"
msgid "Hyphenation"
-msgstr "Cyplysnodi"
+msgstr "Cysylltnodi"
#: utlui.src
msgctxt ""
diff --git a/source/cy/sw/source/uibase/lingu.po b/source/cy/sw/source/uibase/lingu.po
index f1993506223..872b1dc0154 100644
--- a/source/cy/sw/source/uibase/lingu.po
+++ b/source/cy/sw/source/uibase/lingu.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-12-06 15:16+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-02-08 17:02+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1417878993.000000\n"
+"X-POOTLE-MTIME: 1454950931.000000\n"
#: olmenu.src
msgctxt ""
@@ -109,7 +109,7 @@ msgctxt ""
"STR_HYP_OK\n"
"string.text"
msgid "Hyphenation completed"
-msgstr "Cyplysnodi wedi ei gwblhau"
+msgstr "Cysylltnodi wedi ei gwblhau"
#: olmenu.src
msgctxt ""
diff --git a/source/cy/sw/source/uibase/utlui.po b/source/cy/sw/source/uibase/utlui.po
index e2f7a496e7c..1c75143933d 100644
--- a/source/cy/sw/source/uibase/utlui.po
+++ b/source/cy/sw/source/uibase/utlui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-05-11 16:12+0200\n"
-"PO-Revision-Date: 2015-05-19 11:38+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"PO-Revision-Date: 2016-02-10 12:59+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: Pootle 2.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1432035521.000000\n"
+"X-POOTLE-MTIME: 1455109195.000000\n"
#: attrdesc.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_VERT_MIRROR\n"
"string.text"
msgid "Flip vertically"
-msgstr "Troi'n fertigol"
+msgstr "Gwrthdroi'n fertigol"
#: attrdesc.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_HORI_MIRROR\n"
"string.text"
msgid "Flip horizontal"
-msgstr "Troi'n llorweddol"
+msgstr "Gwrthdroi'n llorweddol"
#: attrdesc.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_BOTH_MIRROR\n"
"string.text"
msgid "Horizontal and Vertical Flip"
-msgstr "Troi Llorweddol a Fertigol"
+msgstr "Gwrthdroi Llorweddol a Fertigol"
#: attrdesc.src
msgctxt ""
diff --git a/source/cy/sw/uiconfig/swriter/ui.po b/source/cy/sw/uiconfig/swriter/ui.po
index f58a5c7eee4..475b7135431 100644
--- a/source/cy/sw/uiconfig/swriter/ui.po
+++ b/source/cy/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-08-06 22:51+0200\n"
-"PO-Revision-Date: 2015-08-27 18:31+0000\n"
+"PO-Revision-Date: 2016-02-10 12:59+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: none\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440700303.000000\n"
+"X-POOTLE-MTIME: 1455109199.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9595,7 +9595,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Use OpenOffice.org 1.1 tabstop formatting"
-msgstr "Defnyddiwch fformatio tabstop OpenOffice.org 1.1"
+msgstr "Defnyddio fformatio tabstop OpenOffice.org 1.1"
#: optcompatpage.ui
msgctxt ""
@@ -9613,7 +9613,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Use OpenOffice.org 1.1 line spacing"
-msgstr "Defnyddiwch fylchu llinell OpenOffice.org 1.1"
+msgstr "Defnyddio bylchu llinell OpenOffice.org 1.1"
#: optcompatpage.ui
msgctxt ""
@@ -9631,7 +9631,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Use OpenOffice.org 1.1 object positioning"
-msgstr "Defnyddiwch leoli gwrthrych OpenOffice.org 1.1"
+msgstr "Defnyddio lleoli gwrthrych OpenOffice.org 1.1"
#: optcompatpage.ui
msgctxt ""
@@ -9640,7 +9640,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Use OpenOffice.org 1.1 text wrapping around objects"
-msgstr "Defnyddiwch amlapio testun OpenOffice.org 1.1 o amgylch gwrthrych"
+msgstr "Defnyddio amlapio testun OpenOffice.org 1.1 o amgylch gwrthrych"
#: optcompatpage.ui
msgctxt ""
@@ -9649,7 +9649,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "Consider wrapping style when positioning objects"
-msgstr "Ystyriwch arddull amlapio wrth leoli gwrthrychau"
+msgstr "Ystyried arddull amlapio wrth leoli gwrthrychau"
#: optcompatpage.ui
msgctxt ""
@@ -9685,7 +9685,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Compatibility options for %DOCNAME"
-msgstr "Cytunedd ar gyfer %DOCNAME"
+msgstr "Dewisiadau cydweddiad ar gyfer %DOCNAME"
#: optfonttabpage.ui
msgctxt ""
@@ -10405,7 +10405,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "By author"
-msgstr "Gan awdur"
+msgstr "Gan yr awdur"
#: opttablepage.ui
msgctxt ""
@@ -10531,7 +10531,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Changes affect the adjacent area only"
-msgstr "Newid yn effeithio'r ardal gyfagos"
+msgstr "Newidiadau yn effeithio'r ardal gyfagos"
#: opttablepage.ui
msgctxt ""
@@ -10540,7 +10540,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Changes affect the entire table"
-msgstr "Newid yn effeithio'r tabl cyfan"
+msgstr "Newidiadau yn effeithio'r tabl cyfan"
#: opttablepage.ui
msgctxt ""
@@ -11282,7 +11282,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Flip"
-msgstr "Fflipio"
+msgstr "Gwrthdroi"
#: previewzoomdialog.ui
msgctxt ""
@@ -11966,7 +11966,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Rotate into standard orientation?"
-msgstr "Troi i'r cyfeiriad safonol?"
+msgstr "Cylchdroi i'r cyfeiriad safonol?"
#: queryrotateintostandarddialog.ui
msgctxt ""
@@ -11975,7 +11975,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
-msgstr "Mae'r ddelwedd wedi ei throi. Hoffech chi ei throi i'w gogwydd safonol?"
+msgstr "Mae'r ddelwedd wedi ei chylchdroi. Hoffech chi ei chylchdroi i'w gogwydd safonol?"
#: querysavelabeldialog.ui
msgctxt ""
@@ -15350,7 +15350,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Table of Contents"
-msgstr "Cynnwys Tabl"
+msgstr "Tabl Cynnwys"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/cy/swext/mediawiki/help.po b/source/cy/swext/mediawiki/help.po
index 4af84d5e6a7..d7535413f0e 100644
--- a/source/cy/swext/mediawiki/help.po
+++ b/source/cy/swext/mediawiki/help.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-12-08 10:55+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:39+0200\n"
+"PO-Revision-Date: 2016-02-08 17:03+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1418036145.000000\n"
+"X-POOTLE-MTIME: 1454951019.000000\n"
#: help.tree
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"par_id2381969\n"
"help.text"
msgid "Note: You can store your user name and password for all respective dialogs inside %PRODUCTNAME. The password will be stored in a secure way, where access is maintained by a master password. To enable the master password, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security</item>."
-msgstr "Nodyn: Gallwch gadw eich enw defnyddiwr a chyfrinair ar gyfer dialogau perthnasol o fewn %PRODUCTNAME. Bydd y cyfrinair yn cael ei gadw mewn dull diogel, lle mae mynediad yn cael ei gynnal gan brif gyfrinair. Er mwyn galluogi prif gyfrinair, dewiswch <item type=\"menuitem\">Offer - Dewisiadau - %PRODUCTNAME - Diogelwch</item>."
+msgstr "Nodyn: Gallwch gadw eich enw defnyddiwr a chyfrinair ar gyfer deialogau perthnasol o fewn %PRODUCTNAME. Bydd y cyfrinair yn cael ei gadw mewn dull diogel, lle mae mynediad yn cael ei gynnal gan brif gyfrinair. Er mwyn galluogi prif gyfrinair, dewiswch <item type=\"menuitem\">Offer - Dewisiadau - %PRODUCTNAME - Diogelwch</item>."
#: wiki.xhp
msgctxt ""
diff --git a/source/cy/vcl/uiconfig/ui.po b/source/cy/vcl/uiconfig/ui.po
index 11b8a62c521..488d60faa80 100644
--- a/source/cy/vcl/uiconfig/ui.po
+++ b/source/cy/vcl/uiconfig/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-12-05 16:07+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2016-02-09 15:35+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: none\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1417795646.000000\n"
+"X-POOTLE-MTIME: 1455032143.000000\n"
#: cupspassworddialog.ui
msgctxt ""
@@ -887,7 +887,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Landscape"
-msgstr "Tirwedd"
+msgstr "Tirlun"
#: printerpropertiesdialog.ui
msgctxt ""
diff --git a/source/cy/wizards/source/formwizard.po b/source/cy/wizards/source/formwizard.po
index 41526fd5fd2..eec03abded9 100644
--- a/source/cy/wizards/source/formwizard.po
+++ b/source/cy/wizards/source/formwizard.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-19 10:50+0000\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"PO-Revision-Date: 2016-02-10 13:29+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: Pootle 2.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1432032649.000000\n"
+"X-POOTLE-MTIME: 1455110968.000000\n"
#: dbwizres.src
msgctxt ""
@@ -720,7 +720,7 @@ msgctxt ""
"RID_DB_FORM_WIZARD_START + 47\n"
"string.text"
msgid "Do not allow ~modification of existing data"
-msgstr "Peidiwch caniatáu ~newid i'r data presennol"
+msgstr "Peidio caniatáu ~newid i'r data presennol"
#: dbwizres.src
msgctxt ""
@@ -728,7 +728,7 @@ msgctxt ""
"RID_DB_FORM_WIZARD_START + 48\n"
"string.text"
msgid "Do not allow ~deletion of existing data"
-msgstr "Peidiwch caniatáu ~dileu'r data presennol"
+msgstr "Peidio caniatáu ~dileu'r data presennol"
#: dbwizres.src
msgctxt ""
@@ -736,7 +736,7 @@ msgctxt ""
"RID_DB_FORM_WIZARD_START + 49\n"
"string.text"
msgid "Do not allow ~addition of new data"
-msgstr "Peidiwch ganiatáu ~ychwanegu data newydd"
+msgstr "Peidio caniatáu ~ychwanegu data newydd"
#: dbwizres.src
msgctxt ""
diff --git a/source/da/filter/uiconfig/ui.po b/source/da/filter/uiconfig/ui.po
index 67fd876ed65..3e4ac15e3fd 100644
--- a/source/da/filter/uiconfig/ui.po
+++ b/source/da/filter/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-06-22 15:54+0000\n"
+"PO-Revision-Date: 2016-03-18 22:10+0000\n"
"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1434988440.000000\n"
+"X-POOTLE-MTIME: 1458339024.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -621,7 +621,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open password set"
-msgstr "Åben-adgangskode er sat"
+msgstr "Åbne-adgangskode er sat"
#: pdfsecuritypage.ui
msgctxt ""
@@ -945,7 +945,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Open in full screen mode"
-msgstr "Åben i fuldskærmstilstand"
+msgstr "Åbn i fuldskærmstilstand"
#: pdfuserinterfacepage.ui
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/00.po b/source/da/helpcontent2/source/text/shared/00.po
index 8e3008c7c3b..8bc0e632e86 100644
--- a/source/da/helpcontent2/source/text/shared/00.po
+++ b/source/da/helpcontent2/source/text/shared/00.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-12-27 15:20+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2016-03-18 22:07+0000\n"
+"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1451229607.000000\n"
+"X-POOTLE-MTIME: 1458338871.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -10849,7 +10849,7 @@ msgctxt ""
"94\n"
"help.text"
msgid "<variable id=\"aupitab\">Open <emph>Form Controls</emph> toolbar, click <emph>More Controls</emph> icon, click <emph>Table Control</emph> icon and drag mouse to generate field.</variable>"
-msgstr "<variable id=\"aupitab\">Åben værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>Flere kontrolementer</emph>, klik på ikonet <emph>Tabelkontrolelement</emph> og træk musen for at oprette et felt.</variable>"
+msgstr "<variable id=\"aupitab\">Åbn værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>Flere kontrolementer</emph>, klik på ikonet <emph>Tabelkontrolelement</emph> og træk musen for at oprette et felt.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -10858,7 +10858,7 @@ msgctxt ""
"119\n"
"help.text"
msgid "<variable id=\"aupitab1\">Open <emph>Form Controls</emph> toolbar, click <emph>More Controls</emph> icon, click <emph>Table Control</emph> icon and drag mouse to generate field. No database connection in current form is allowed.</variable>"
-msgstr "<variable id=\"aupitab1\">Åben værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>Flere kontrolementer</emph>, klik på ikonet <emph>Tabelkontrolelement</emph> og træk musen for at oprette et felt. Ingen databaseforbindelse er tilladt i den aktuelle formular.</variable>"
+msgstr "<variable id=\"aupitab1\">Åbn værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>Flere kontrolementer</emph>, klik på ikonet <emph>Tabelkontrolelement</emph> og træk musen for at oprette et felt. Ingen databaseforbindelse er tilladt i den aktuelle formular.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -10867,7 +10867,7 @@ msgctxt ""
"120\n"
"help.text"
msgid "<variable id=\"aupitab2\">Open <emph>Form Controls</emph> toolbar, click <emph>More Controls</emph> icon, click <emph>Table Control</emph> icon and drag mouse to generate field. Database connection must exist.</variable>"
-msgstr "<variable id=\"aupitab2\">Åben værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>Flere kontrolementer</emph>, klik på ikonet <emph>Tabelkontrolelement</emph> og træk musen for at oprette et felt. Der skal eksistere en databaseforbindelse.</variable>"
+msgstr "<variable id=\"aupitab2\">Åbn værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>Flere kontrolementer</emph>, klik på ikonet <emph>Tabelkontrolelement</emph> og træk musen for at oprette et felt. Der skal eksistere en databaseforbindelse.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -10876,7 +10876,7 @@ msgctxt ""
"95\n"
"help.text"
msgid "<variable id=\"aupikomli\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form.</variable>"
-msgstr "<variable id=\"aupikomli\">Åben værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>Kombinationsfelt</emph> eller <emph>listefelt</emph> og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen.</variable>"
+msgstr "<variable id=\"aupikomli\">Åbn værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>Kombinationsfelt</emph> eller <emph>listefelt</emph> og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -10885,7 +10885,7 @@ msgctxt ""
"121\n"
"help.text"
msgid "<variable id=\"aupikomli1\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1.</variable>"
-msgstr "<variable id=\"aupikomli1\">Åben værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>Kombinationsfelt</emph> eller <emph>listefelt</emph> og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 1.</variable>"
+msgstr "<variable id=\"aupikomli1\">Åbn værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>Kombinationsfelt</emph> eller <emph>listefelt</emph> og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 1.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -10894,7 +10894,7 @@ msgctxt ""
"122\n"
"help.text"
msgid "<variable id=\"aupikomli2\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2.</variable>"
-msgstr "<variable id=\"aupikomli2\">Åben værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>Kombinationsfelt</emph> eller <emph>listefelt</emph> og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 2.</variable>"
+msgstr "<variable id=\"aupikomli2\">Åbn værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>Kombinationsfelt</emph> eller <emph>listefelt</emph> og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 2.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -10903,7 +10903,7 @@ msgctxt ""
"123\n"
"help.text"
msgid "<variable id=\"aupikomli3a\">Open Form Controls toolbar, click <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.</variable>"
-msgstr "<variable id=\"aupikomli3a\">Åben værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>listefelt</emph> og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 3.</variable>"
+msgstr "<variable id=\"aupikomli3a\">Åbn værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>listefelt</emph> og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 3.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -10912,7 +10912,7 @@ msgctxt ""
"124\n"
"help.text"
msgid "<variable id=\"aupikomli3b\">Open Form Controls toolbar, click <emph>Combo Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.</variable>"
-msgstr "<variable id=\"aupikomli3b\">Åben værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>kombinationsfelt</emph> og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 3.</variable>"
+msgstr "<variable id=\"aupikomli3b\">Åbn værktøjslinjen <emph>Formularkontrolelementer</emph>, klik på ikonet <emph>kombinationsfelt</emph> og træk musen for at oprette et felt. En databaseforbindelse skal eksistere i formularen: Guide - side 3.</variable>"
#: 00040501.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/01.po b/source/da/helpcontent2/source/text/shared/01.po
index 9f41de5df9d..e5b88156bbc 100644
--- a/source/da/helpcontent2/source/text/shared/01.po
+++ b/source/da/helpcontent2/source/text/shared/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-18 17:25+0100\n"
-"PO-Revision-Date: 2016-01-19 19:56+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2016-03-18 22:09+0000\n"
+"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453233409.000000\n"
+"X-POOTLE-MTIME: 1458338968.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -2886,7 +2886,7 @@ msgctxt ""
"64\n"
"help.text"
msgid "The following sections describe the <emph><item type=\"productname\">%PRODUCTNAME</item> Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item> Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- General</link></emph>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr "De følgende afsnit beskriver <emph><item type=\"productname\">%PRODUCTNAME</item> Gem som</emph> dialogem. For at aktivere <emph><item type=\"productname\">%PRODUCTNAME</item> Åben</emph> og <emph>Save</emph> dialog bokse, vælg <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Indstillinger</caseinline><defaultinline>Værktøjer - Muligheder</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- Generelt</link></emph>, og vælg herefter <emph>Use %PRODUCTNAME dialogs</emph> i <emph>Åben/Gem dialogernes</emph> område."
+msgstr "De følgende afsnit beskriver <emph><item type=\"productname\">%PRODUCTNAME</item> Gem som</emph>-dialogen. For at aktivere <emph><item type=\"productname\">%PRODUCTNAME</item> Åbn</emph>- og <emph>Gem</emph>-dialogboksene skal du vælge <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Indstillinger</caseinline><defaultinline>Værktøjer - Muligheder</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME - Generelt</link></emph>, og herefter <emph>Brug %PRODUCTNAME-dialoger</emph> i <emph>Åbn/Gem-dialogernes</emph> område."
#: 01070000.xhp
msgctxt ""
@@ -14216,7 +14216,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertoleobject/urlbtn\">Locate the file that you want to insert, and then click <emph>Open</emph>.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/insertoleobject/urlbtn\">Lokaliser den fil du ønsker at indsætte, og klik så på <emph>Åben</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/insertoleobject/urlbtn\">Lokaliser den fil du ønsker at indsætte, og klik så på <emph>Åbn</emph>.</ahelp>"
#: 04150100.xhp
msgctxt ""
@@ -18249,7 +18249,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/urlpb\">Locate the file that you want to link to, and then click <emph>Open</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/charurlpage/urlpb\">Lokaliser den fil, du ønsker at oprette en kæde til, og klik så på <emph>Åben</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/charurlpage/urlpb\">Lokaliser den fil, du ønsker at oprette en kæde til, og klik så på <emph>Åbn</emph>.</ahelp>"
#: 05020400.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/02.po b/source/da/helpcontent2/source/text/shared/02.po
index 927780c2284..3ee21c6f209 100644
--- a/source/da/helpcontent2/source/text/shared/02.po
+++ b/source/da/helpcontent2/source/text/shared/02.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-12-29 15:01+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2016-03-18 22:10+0000\n"
+"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1451401297.000000\n"
+"X-POOTLE-MTIME: 1458339008.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -9161,7 +9161,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "Drag and drop to copy controls within the same document or between documents. Open another form document and drag the hidden control from the <emph>Form Navigator</emph> into the <emph>Form Navigator</emph> of the target document. Click a visible control directly in the document, rest the mouse for a moment so that a copy of the control is added to the drag-and-drop clipboard, then drag the copy into the other document. If you want a copy in the same document, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while dragging."
-msgstr "Træk og slip for at kopiere kontrolelementer inden for det samme dokument eller mellem dokumenter. Åben et andet formulardokument og træk det skjulte kontrolelement fra <emph>formularnavigatoren</emph> til <emph>formularnavigatoren</emph> i måldokumentet. Klik på et synligt kontrolelement direkte i dokumentet, hold musen stille et øjeblik indtil en kopi af kontrolelementet er føjet til træk og slip-udklipsholderen, træk derefter kopien til andet dokument. Hvis du ønsker en kopi i det samme dokument skal du trykke på <switchinline select=\"sys\"><caseinline select=\"MAC\">Æble</caseinline><defaultinline>Ctrl</defaultinline></switchinline> mens du trækker."
+msgstr "Træk og slip for at kopiere kontrolelementer inden for det samme dokument eller mellem dokumenter. Åbn et andet formulardokument og træk det skjulte kontrolelement fra <emph>formularnavigatoren</emph> til <emph>formularnavigatoren</emph> i måldokumentet. Klik på et synligt kontrolelement direkte i dokumentet, hold musen stille et øjeblik indtil en kopi af kontrolelementet er føjet til træk og slip-udklipsholderen, træk derefter kopien til andet dokument. Hvis du ønsker en kopi i det samme dokument skal du trykke på <switchinline select=\"sys\"><caseinline select=\"MAC\">Æble</caseinline><defaultinline>Ctrl</defaultinline></switchinline> mens du trækker."
#: 01170600.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/guide.po b/source/da/helpcontent2/source/text/shared/guide.po
index 1e0365bbad2..4494c2d4810 100644
--- a/source/da/helpcontent2/source/text/shared/guide.po
+++ b/source/da/helpcontent2/source/text/shared/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2016-01-06 21:22+0000\n"
-"Last-Translator: Jeppe Bundsgaard <jeppe@bundsgaard.net>\n"
+"PO-Revision-Date: 2016-03-18 22:10+0000\n"
+"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452115375.000000\n"
+"X-POOTLE-MTIME: 1458339012.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -19520,7 +19520,7 @@ msgctxt ""
"par_idN1073B\n"
"help.text"
msgid "Open the XForms document and use the following toolbars and windows:"
-msgstr "Åben XForms-dokumentet og brug følgende værktøjslinjer og vinduer:"
+msgstr "Åbn XForms-dokumentet og brug følgende værktøjslinjer og vinduer:"
#: xforms.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/swriter/guide.po b/source/da/helpcontent2/source/text/swriter/guide.po
index feb7cf80573..27b231f54e4 100644
--- a/source/da/helpcontent2/source/text/swriter/guide.po
+++ b/source/da/helpcontent2/source/text/swriter/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-12-29 19:56+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2016-03-18 22:10+0000\n"
+"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1451418961.000000\n"
+"X-POOTLE-MTIME: 1458339019.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -15733,7 +15733,7 @@ msgctxt ""
"67\n"
"help.text"
msgid "To create a document based on the template, choose <item type=\"menuitem\">File - New - Templates</item>, select the template, and then click <item type=\"menuitem\">Open</item>."
-msgstr "For at oprette et dokument baseret på skabelonen, vælg <item type=\"menuitem\">Fil - Ny - Skabelon</item>, vælg skabelonen, og klik så på <item type=\"menuitem\">Åben</item>."
+msgstr "For at oprette et dokument baseret på skabelonen, vælg <item type=\"menuitem\">Fil - Ny - Skabelon</item>, vælg skabelonen, og klik så på <item type=\"menuitem\">Åbn</item>."
#: template_create.xhp
msgctxt ""
diff --git a/source/da/officecfg/registry/data/org/openoffice/Office.po b/source/da/officecfg/registry/data/org/openoffice/Office.po
index cbd9cb30207..36bab758bf2 100644
--- a/source/da/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/da/officecfg/registry/data/org/openoffice/Office.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-08-06 22:51+0200\n"
-"PO-Revision-Date: 2015-08-25 18:36+0000\n"
-"Last-Translator: Jeppe Bundsgaard <jeppe@bundsgaard.net>\n"
+"PO-Revision-Date: 2016-03-18 22:10+0000\n"
+"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440527772.000000\n"
+"X-POOTLE-MTIME: 1458339028.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1301,7 +1301,7 @@ msgctxt ""
"STR_AUTOMATICALLY_OPEN\n"
"value.text"
msgid "~Open newly created presentation"
-msgstr "Åben den netop dannede præsentation"
+msgstr "Åbn den netop dannede præsentation"
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/da/readlicense_oo/docs.po b/source/da/readlicense_oo/docs.po
index 425f60785cd..e5edc5303b2 100644
--- a/source/da/readlicense_oo/docs.po
+++ b/source/da/readlicense_oo/docs.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-12-21 22:22+0000\n"
-"Last-Translator: Jesper <jesper.hertel@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-18 22:10+0000\n"
+"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1419200531.000000\n"
+"X-POOTLE-MTIME: 1458339047.000000\n"
#: readme.xrm
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"debianinstall4\n"
"readmeitem.text"
msgid "Right-click within the directory and choose \"Open in Terminal\". A terminal window will open. From the command line of the terminal window, enter the following command (you will be prompted to enter your root user's password before the command will execute):"
-msgstr "Højreklik inden i mappen og vælg \"Åben i terminal\". Et terminalvindue vises. Fra kommandolinjen i terminalvinduet, skriv de følgende kommandoer (du vil blive spurgt om superbruger/administrator kodeordet før kommandoerne udføres):"
+msgstr "Højreklik inden i mappen og vælg \"Åbn i terminal\". Et terminalvindue vises. Fra kommandolinjen i terminalvinduet, skriv de følgende kommandoer (du vil blive spurgt om superbruger/administrator kodeordet før kommandoerne udføres):"
#: readme.xrm
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"linuxlangpack3\n"
"readmeitem.text"
msgid "Now change directory to the directory that was created during the extraction process. For instance, for the French language pack for a 32-bit Debian/Ubuntu-based system, the directory is named LibreOffice_, plus some version information, plus Linux_x86_langpack-deb_fr."
-msgstr "Åben nu den folder som blev oprettet ved udpakningsprocessen. F.eks. er folderen ved dansk sprogpakke for et 32-bit Debian/Ubuntu-baseret system navngivet som LibreOffice_ efterfulgt af versionsinformationer og Linux_x86_langpack-deb_da."
+msgstr "Åbn nu den mappe som blev oprettet ved udpakningsprocessen. F.eks. er mappen ved dansk sprogpakke for et 32-bit Debian/Ubuntu-baseret system navngivet som LibreOffice_ efterfulgt af versionsinformationer og Linux_x86_langpack-deb_da."
#: readme.xrm
msgctxt ""
diff --git a/source/da/sc/source/ui/src.po b/source/da/sc/source/ui/src.po
index e64717c8d28..f06725d4e8a 100644
--- a/source/da/sc/source/ui/src.po
+++ b/source/da/sc/source/ui/src.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-09-02 14:42+0200\n"
-"PO-Revision-Date: 2015-09-13 19:41+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2016-03-18 22:10+0000\n"
+"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1442173276.000000\n"
+"X-POOTLE-MTIME: 1458339057.000000\n"
#: condformatdlg.src
msgctxt ""
@@ -25530,7 +25530,7 @@ msgctxt ""
"SCSTR_DDEDOC_NOT_LOADED\n"
"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 "Følgende DDE-kilde kunne ikke opdateres, muligvis fordi kildedokumentet ikke var åbent. Åben kildedokumentet og prøv igen."
+msgstr "Følgende DDE-kilde kunne ikke opdateres, muligvis fordi kildedokumentet ikke var åbent. Åbn kildedokumentet og prøv igen."
#: scstring.src
msgctxt ""
diff --git a/source/da/sw/source/ui/app.po b/source/da/sw/source/ui/app.po
index c70954755a1..8d91cb7db2e 100644
--- a/source/da/sw/source/ui/app.po
+++ b/source/da/sw/source/ui/app.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-08-20 14:58+0000\n"
-"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
+"PO-Revision-Date: 2016-02-12 18:06+0000\n"
+"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440082699.000000\n"
+"X-POOTLE-MTIME: 1455300362.000000\n"
#: app.src
msgctxt ""
@@ -735,7 +735,7 @@ msgctxt ""
"STR_FDLG_OUTLINE_LEVEL\n"
"string.text"
msgid "Outline: Level "
-msgstr "Kontur: Niveau"
+msgstr "Disposition: Niveau"
#: app.src
msgctxt ""
diff --git a/source/da/sw/source/ui/config.po b/source/da/sw/source/ui/config.po
index 9ecf15de93f..34639d8355f 100644
--- a/source/da/sw/source/ui/config.po
+++ b/source/da/sw/source/ui/config.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-30 13:08+0200\n"
-"PO-Revision-Date: 2014-06-09 19:31+0000\n"
-"Last-Translator: laugesen <jesper@laugesen.org>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-02-20 17:17+0000\n"
+"Last-Translator: Esben Aaberg <esben_aaberg@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1402342281.000000\n"
+"X-POOTLE-MTIME: 1455988655.000000\n"
#: optdlg.src
msgctxt ""
@@ -317,7 +317,7 @@ msgctxt ""
"Place in margins\n"
"itemlist.text"
msgid "Place in margins"
-msgstr "Pladsér i margener"
+msgstr "Placer i margener"
#: optload.src
msgctxt ""
diff --git a/source/da/swext/mediawiki/help.po b/source/da/swext/mediawiki/help.po
index 8e6d390312e..9ba671da0b6 100644
--- a/source/da/swext/mediawiki/help.po
+++ b/source/da/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-08-20 14:53+0000\n"
+"PO-Revision-Date: 2016-04-12 23:14+0000\n"
"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440082391.000000\n"
+"X-POOTLE-MTIME: 1460502899.000000\n"
#: help.tree
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id5238196\n"
"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 "Bemærk: Konverteringen bruger den nye type fodnoter med <ref>- og <references>-mærker, som kræver at udvidelsen Cite.php er installeret i MediaWiki. Hvis disse mærker forekommer som simpel tekst i konverteringsresultatet, så bed wiki-administratoren om at installere denne udvidelse."
+msgstr "Bemærk: Konverteringen bruger den nye type fodnoter med <ref>- og <references>-mærker, som kræver at udvidelsen Cite.php er installeret i MediaWiki. Hvis disse mærker forekommer som ren tekst i konverteringsresultatet, så bed wiki-administratoren om at installere denne udvidelse."
#: wikiformats.xhp
msgctxt ""
diff --git a/source/da/uui/source.po b/source/da/uui/source.po
index c1eda7ff0ec..188610a2e26 100644
--- a/source/da/uui/source.po
+++ b/source/da/uui/source.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-06-24 17:06+0200\n"
-"PO-Revision-Date: 2015-07-19 17:44+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-18 22:11+0000\n"
+"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1437327886.000000\n"
+"X-POOTLE-MTIME: 1458339072.000000\n"
#: alreadyopen.src
msgctxt ""
@@ -35,9 +35,9 @@ msgid ""
"Open document read-only, or ignore own file locking and open the document for editing.\n"
"\n"
msgstr ""
-"Dokument filen '$(ARG1)' har været låst for redigering af dig selv på et andet system siden $(ARG2)\n"
+"Dokumentfilen '$(ARG1)' har været låst for redigering af dig selv på et andet system siden $(ARG2)\n"
"\n"
-"Åben dokumentet i skrivebeskyttet tilstand, eller ignorer din egen fillåsning og åben dokument for redigering.\n"
+"Åbn dokumentet i skrivebeskyttet tilstand, eller ignorer din egen fillåsning og åbn dokumentet for redigering.\n"
"\n"
#: alreadyopen.src
diff --git a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
index ba372fe6a9c..06d98f34786 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-09-02 14:43+0200\n"
-"PO-Revision-Date: 2015-10-27 05:53+0000\n"
+"PO-Revision-Date: 2016-03-25 06:00+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1445925232.000000\n"
+"X-POOTLE-MTIME: 1458885619.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -20437,7 +20437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Graphic..."
-msgstr "Grafik..."
+msgstr "G~rafik..."
#: ReportCommands.xcu
msgctxt ""
@@ -20662,7 +20662,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Shapes"
-msgstr "Formen"
+msgstr "~Form"
#: ReportCommands.xcu
msgctxt ""
diff --git a/source/es/cui/source/tabpages.po b/source/es/cui/source/tabpages.po
index 17a98c2e425..1d2a71d056d 100644
--- a/source/es/cui/source/tabpages.po
+++ b/source/es/cui/source/tabpages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-06-24 17:06+0200\n"
-"PO-Revision-Date: 2016-02-02 20:13+0000\n"
-"Last-Translator: Juan C. Sanz <juancsanzc@hotmail.com>\n"
+"PO-Revision-Date: 2016-02-10 09:48+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1454443992.000000\n"
+"X-POOTLE-MTIME: 1455097694.000000\n"
#: border.src
msgctxt ""
@@ -440,7 +440,7 @@ msgctxt ""
"#9 Envelope\n"
"itemlist.text"
msgid "#9 Envelope"
-msgstr "Sobre del nº 9"
+msgstr "Sobre del n.º 9"
#: page.src
msgctxt ""
@@ -449,7 +449,7 @@ msgctxt ""
"#10 Envelope\n"
"itemlist.text"
msgid "#10 Envelope"
-msgstr "Sobre del nº 10"
+msgstr "Sobre del n.º 10"
#: page.src
msgctxt ""
@@ -458,7 +458,7 @@ msgctxt ""
"#11 Envelope\n"
"itemlist.text"
msgid "#11 Envelope"
-msgstr "Sobre del nº 11"
+msgstr "Sobre del n.º 11"
#: page.src
msgctxt ""
@@ -467,7 +467,7 @@ msgctxt ""
"#12 Envelope\n"
"itemlist.text"
msgid "#12 Envelope"
-msgstr "Sobre del nº 12"
+msgstr "Sobre del n.º 12"
#: page.src
msgctxt ""
diff --git a/source/es/cui/uiconfig/ui.po b/source/es/cui/uiconfig/ui.po
index 6991b4ae2cf..b43b979c96f 100644
--- a/source/es/cui/uiconfig/ui.po
+++ b/source/es/cui/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-08 14:52+0100\n"
-"PO-Revision-Date: 2016-02-02 20:14+0000\n"
-"Last-Translator: Juan C. Sanz <juancsanzc@hotmail.com>\n"
+"PO-Revision-Date: 2016-03-31 18:20+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: none\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1454444070.000000\n"
+"X-POOTLE-MTIME: 1459448441.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -2867,7 +2867,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Field shadings"
-msgstr "Sombreado de los campos"
+msgstr "Marcas de campos"
#: colorconfigwin.ui
msgctxt ""
@@ -3461,7 +3461,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hex _#:"
-msgstr "Nº _hex:"
+msgstr "N.º he_x.:"
#: colorpickerdialog.ui
msgctxt ""
@@ -4001,7 +4001,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Events"
-msgstr "Eventos"
+msgstr "Sucesos"
#: databaselinkdialog.ui
msgctxt ""
@@ -6413,7 +6413,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Events"
-msgstr "Eventos"
+msgstr "Sucesos"
#: hyperlinkdocpage.ui
msgctxt ""
@@ -6548,7 +6548,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Events"
-msgstr "Eventos"
+msgstr "Sucesos"
#: hyperlinkinternetpage.ui
msgctxt ""
@@ -6647,7 +6647,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Events"
-msgstr "Eventos"
+msgstr "Sucesos"
#: hyperlinkmailpage.ui
msgctxt ""
@@ -6800,7 +6800,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Events"
-msgstr "Eventos"
+msgstr "Sucesos"
#: hyperlinknewdocpage.ui
msgctxt ""
diff --git a/source/es/dbaccess/source/ext/macromigration.po b/source/es/dbaccess/source/ext/macromigration.po
index f8de97b9933..2105be9d151 100644
--- a/source/es/dbaccess/source/ext/macromigration.po
+++ b/source/es/dbaccess/source/ext/macromigration.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-11-21 15:32+0000\n"
-"Last-Translator: Adolfo <fito@libreoffice.org>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-16 12:48+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416583959.000000\n"
+"X-POOTLE-MTIME: 1458132507.000000\n"
#: macromigration.src
msgctxt ""
@@ -200,7 +200,7 @@ msgctxt ""
"STR_INVALID_BACKUP_LOCATION\n"
"string.text"
msgid "You need to choose a backup location other than the document location itself."
-msgstr "Para la copia de seguridad necesita elegir una ubicación diferente a la ubicación del documento."
+msgstr "Para la copia de seguridad debe elegir una ubicación diferente de la ubicación del documento."
#: macromigration.src
msgctxt ""
diff --git a/source/es/extensions/source/propctrlr.po b/source/es/extensions/source/propctrlr.po
index b06b8b79f98..1dd4a5ef3ef 100644
--- a/source/es/extensions/source/propctrlr.po
+++ b/source/es/extensions/source/propctrlr.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-12-14 02:28+0000\n"
-"Last-Translator: Adolfo <fito@libreoffice.org>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-31 18:20+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1418524086.000000\n"
+"X-POOTLE-MTIME: 1459448446.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -1687,7 +1687,7 @@ msgctxt ""
"RID_STR_EVENTS\n"
"string.text"
msgid "Events"
-msgstr "Eventos"
+msgstr "Sucesos"
#: formres.src
msgctxt ""
diff --git a/source/es/extras/source/autocorr/emoji.po b/source/es/extras/source/autocorr/emoji.po
index 0e35326c54a..e71d944adad 100644
--- a/source/es/extras/source/autocorr/emoji.po
+++ b/source/es/extras/source/autocorr/emoji.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-09-02 14:42+0200\n"
-"PO-Revision-Date: 2016-02-02 19:27+0000\n"
-"Last-Translator: Juan C. Sanz <juancsanzc@hotmail.com>\n"
+"PO-Revision-Date: 2016-02-10 09:52+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1454441251.000000\n"
+"X-POOTLE-MTIME: 1455097933.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6827,7 +6827,7 @@ msgctxt ""
"DASH_SYMBOL\n"
"LngText.text"
msgid "dash"
-msgstr "guión"
+msgstr "viento"
#. 💩 (U+1F4A9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/es/helpcontent2/source/text/sbasic/guide.po b/source/es/helpcontent2/source/text/sbasic/guide.po
index c89dd151d93..b66b178c4cc 100644
--- a/source/es/helpcontent2/source/text/sbasic/guide.po
+++ b/source/es/helpcontent2/source/text/sbasic/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-11-16 04:38+0000\n"
+"PO-Revision-Date: 2016-03-31 19:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1447648729.000000\n"
+"X-POOTLE-MTIME: 1459450970.000000\n"
#: access2base.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_idA2B016\n"
"help.text"
msgid "facilities for programming form, dialog and control <emph>events</emph>"
-msgstr "facilidades para programar <emph>eventos</emph> para formularios, diálogos y controles"
+msgstr "facilidades para programar <emph>sucesos</emph> para formularios, cuadros de diálogo y controles"
#: access2base.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Changing the Properties of Controls in the Dialog Editor"
-msgstr "Cambio de las propiedades de los campos de control en el Editor de diálogos"
+msgstr "Cambio de las propiedades de los controles en el Editor de diálogos"
#: control_properties.xhp
msgctxt ""
@@ -191,7 +191,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
-msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Cambio de las propiedades de los campos de control en el Editor de diálogos</link></variable>"
+msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Cambiar las propiedades de los controles del Editor de diálogos\">Cambiar las propiedades de los controles del Editor de diálogos</link></variable>"
#: control_properties.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating Controls in the Dialog Editor"
-msgstr "Creación de campos de control en el Editor de diálogos"
+msgstr "Creación de controles en el Editor de diálogos"
#: insert_control.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"bm_id3149182\n"
"help.text"
msgid "<bookmark_value>controls; creating in the dialog editor</bookmark_value><bookmark_value>dialog editor;creating controls</bookmark_value>"
-msgstr "<bookmark_value>campos de control;crear en el editor de diálogos</bookmark_value><bookmark_value>editor de diálogos;crear campos de control</bookmark_value>"
+msgstr "<bookmark_value>controles; creación en el editor de diálogos</bookmark_value><bookmark_value>editor de diálogos; creación de controles</bookmark_value>"
#: insert_control.xhp
msgctxt ""
@@ -303,7 +303,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creating Controls in the Dialog Editor</link></variable>"
-msgstr "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creación de campos de control en el Editor de diálogos </link></variable>"
+msgstr "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creación de controles en el Editor de diálogos\">Creación de controles en el Editor de diálogos</link></variable>"
#: insert_control.xhp
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Programming Examples for Controls in the Dialog Editor"
-msgstr "Ejemplos de programación de campos de control en el Editor de diálogos"
+msgstr "Ejemplos de programación de controles en el Editor de diálogos"
#: sample_code.xhp
msgctxt ""
@@ -364,7 +364,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link></variable>"
-msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Ejemplos de programación de campos de control en el Editor de diálogos</link></variable>"
+msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Ejemplos de programación de controles en el Editor de diálogos\">Ejemplos de programación de controles en el Editor de diálogos</link></variable>"
#: sample_code.xhp
msgctxt ""
@@ -417,7 +417,7 @@ msgctxt ""
"27\n"
"help.text"
msgid "Read or Edit Properties of Controls in the Program"
-msgstr "Leer o editar propiedades de los campos de control en el programa"
+msgstr "Lectura o edición de las propiedades de los controles en el programa"
#: sample_code.xhp
msgctxt ""
@@ -648,7 +648,7 @@ msgctxt ""
"par_id6998809\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the language for the strings that you want to edit. Click the Manage Languages icon to add languages.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleccione el idioma para las cadenas que quiere editar. Haga clic en el icono Gestionar idiomas para añadir idiomas.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleccione el idioma para las cadenas que quiere editar. Pulse en el icono Gestionar idiomas para añadir idiomas.</ahelp>"
#: translation.xhp
msgctxt ""
@@ -728,7 +728,7 @@ msgctxt ""
"par_id7359233\n"
"help.text"
msgid "Click the <emph>Manage Languages</emph> icon <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Manage Language icon</alt></image> on the Language toolbar or on the Toolbox bar."
-msgstr "Haga clic en el icono <emph>Gestionar idiomas</emph> <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Icono Gestionar idiomas</alt></image> en la barra de herramientas de Idioma o en la barra Cuadro de herramientas."
+msgstr "Pulse en el icono <emph>Gestionar idiomas</emph> <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Icono Gestionar idiomas</alt></image> en la barra de herramientas Idioma o en la barra Cuadro de herramientas."
#: translation.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po b/source/es/helpcontent2/source/text/sbasic/shared.po
index 9dffcffdb6e..c50665a4c37 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-08-06 22:51+0200\n"
-"PO-Revision-Date: 2015-11-25 16:27+0000\n"
+"PO-Revision-Date: 2016-04-05 04:15+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1448468872.000000\n"
+"X-POOTLE-MTIME: 1459829727.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -3762,7 +3762,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "Click <emph>Delete</emph>."
-msgstr "Pulse en <emph>Borrar</emph>."
+msgstr "Pulse en <emph>Eliminar</emph>."
#: 01030400.xhp
msgctxt ""
@@ -3825,7 +3825,7 @@ msgctxt ""
"63\n"
"help.text"
msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
-msgstr "Haga clic en la ficha <emph>Módulos</emph> o la ficha <emph>Diálogos</emph>."
+msgstr "Pulse en la pestaña <emph>Módulos</emph> o la pestaña <emph>Diálogos</emph>."
#: 01030400.xhp
msgctxt ""
@@ -3870,7 +3870,7 @@ msgctxt ""
"67\n"
"help.text"
msgid "Click the module to be renamed twice, with a pause between the clicks. Enter the new name."
-msgstr "Haga doble clic en el módulo cuyo nombre debe cambiarse, con una pausa entre los clics. Especifique el nombre nuevo."
+msgstr "Pulse dos veces en el módulo cuyo nombre quiere cambiarse, con una pausa pequeña entre los clics. Escriba el nombre nuevo."
#: 01030400.xhp
msgctxt ""
@@ -3915,7 +3915,7 @@ msgctxt ""
"69\n"
"help.text"
msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
-msgstr "Haga clic en la ficha <emph>Módulos</emph> o la ficha <emph>Diálogos</emph>."
+msgstr "Pulse en la pestaña <emph>Módulos</emph> o la pestaña <emph>Diálogos</emph>."
#: 01030400.xhp
msgctxt ""
@@ -3924,7 +3924,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "Select the module or dialog to be deleted from the list. Double-click an entry to reveal sub-entries, if required."
-msgstr "Seleccione el módulo o diálogo que se debe eliminar de la lista. Haga doble clic para mostrar las subentradas, si es necesario."
+msgstr "Seleccione el módulo o el cuadro de diálogo que se debe eliminar de la lista. Pulse dos veces en una entrada para mostrar las subentradas, si es necesario."
#: 01030400.xhp
msgctxt ""
@@ -3933,7 +3933,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "Click <emph>Delete</emph>."
-msgstr "Pulse en <emph>Borrar</emph>."
+msgstr "Pulse en <emph>Eliminar</emph>."
#: 01030400.xhp
msgctxt ""
@@ -3942,7 +3942,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "Deleting a module permanently deletes all existing procedures and functions in that module."
-msgstr "Al borrar un módulo se borran permanentemente todos sus procedimientos y funciones."
+msgstr "Al eliminar un módulo se borran permanentemente todos sus procedimientos y funciones."
#: 01030400.xhp
msgctxt ""
@@ -4003,7 +4003,7 @@ msgctxt ""
"bm_id3154581\n"
"help.text"
msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value>"
-msgstr "<bookmark_value>borrar;asignaciones de macros a eventos</bookmark_value><bookmark_value>macros;asignar a eventos</bookmark_value><bookmark_value>asignar macros a eventos</bookmark_value><bookmark_value>eventos;asignar macros</bookmark_value>"
+msgstr "<bookmark_value>eliminar;asignaciones de macros a sucesos</bookmark_value><bookmark_value>macros;asignar a sucesos</bookmark_value><bookmark_value>asignar macros a sucesos</bookmark_value><bookmark_value>sucesos;asignar macros</bookmark_value>"
#: 01040000.xhp
msgctxt ""
@@ -4372,7 +4372,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
-msgstr "Elija <emph>Herramientas ▸ Personalizar</emph> y pulse en la pestaña <emph>Eventos</emph>."
+msgstr "Vaya a <emph>Herramientas ▸ Personalizar</emph> y pulse en la pestaña <emph>Sucesos</emph>."
#: 01040000.xhp
msgctxt ""
@@ -4399,7 +4399,7 @@ msgctxt ""
"33\n"
"help.text"
msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
-msgstr "Pulse en <emph>Macros</emph> y seleccione la macro que se asignará al evento elegido."
+msgstr "Pulse en <emph>Macros</emph> y seleccione la macro que se asignará al suceso elegido."
#: 01040000.xhp
msgctxt ""
@@ -4435,7 +4435,7 @@ msgctxt ""
"57\n"
"help.text"
msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
-msgstr "Elija <emph>Herramientas ▸ Personalizar</emph> y pulse en la pestaña <emph>Eventos</emph>."
+msgstr "Vaya a <emph>Herramientas ▸ Personalizar</emph> y pulse en la pestaña <emph>Sucesos</emph>."
#: 01040000.xhp
msgctxt ""
@@ -4878,7 +4878,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Control and Dialog Properties"
-msgstr "Propiedades de los campos de control y diálogos"
+msgstr "Propiedades de los controles y diálogos"
#: 01170100.xhp
msgctxt ""
@@ -4895,7 +4895,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
-msgstr "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Propiedades de los campos de control y diálogos\">Propiedades de los campos de control y diálogos</link>"
+msgstr "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Propiedades de los controles y diálogos\">Propiedades de los controles y diálogos</link>"
#: 01170100.xhp
msgctxt ""
@@ -5340,7 +5340,7 @@ msgctxt ""
"par_idN108D0\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the delay in milliseconds between scrollbar trigger events.</ahelp> A trigger event occurs when you click a scrollbar arrow or click the background area in a scrollbar. Repeated trigger events occur if you keep the mouse button pressed when you click a scrollbar arrow or background area in a scrollbar. If you want, you can include valid time units with the number that you enter, for example, 2 s or 500 ms."
-msgstr "<ahelp hid=\".\">Especifica el retraso en milisegundos entre los eventos desencadenadores de la barra de desplazamiento.</ahelp> Un evento desencadenador tiene lugar al hacer clic en una flecha de barra de desplazamiento o en el área de fondo de una barra de desplazamiento. Los eventos desencadenadores se repiten si mantiene el botón del ratón pulsado al hacer clic en una flecha de barra de desplazamiento o en el área de fondo de una barra de desplazamiento. Si lo desea, puede incluir unidades temporales válidas con el número especificado, por ejemplo, 2 s o 500 ms."
+msgstr "<ahelp hid=\".\">Especifica el retardo en milisegundos entre los sucesos desencadenadores de la barra de desplazamiento.</ahelp> Un suceso desencadenador tiene lugar al pulsar en una flecha de la barra de desplazamiento o en el área de fondo de una de estas barras. Los sucesos desencadenadores se repiten si mantiene el botón del ratón oprimido al pulsar en una flecha de barra de desplazamiento o en el área de fondo de esta. Si lo desea, puede incluir unidades de tiempo válidas con el número que especifique, por ejemplo: «2 s» o «500 ms»."
#: 01170101.xhp
msgctxt ""
@@ -5951,7 +5951,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "Initially, the controls receive numbers in the order they are added to the dialog. You can change the order numbers for controls. $[officename] Basic updates the order numbers automatically to avoid duplicate numbers. Controls that cannot be focused are also assigned a value but these controls are skipped when using the Tab key."
-msgstr "Inicialmente, los campos de control reciben números en el orden en el que se fueron añadiendo al diálogo. El número de orden de los campos de control puede cambiarse. $[officename] Basic actualiza los números de orden automáticamente para evitar números duplicados. A los campos de control que no pueden enfocarse también se les asigna un valor, pero se ignoran al utilizar la tecla Tabulación."
+msgstr "Inicialmente, los controles reciben números en el orden en el que se añadieron al cuadro de diálogo. Se puede cambiar el ordenamiento de los controles. $[officename] Basic actualiza los números de orden automáticamente para evitar números duplicados. A los controles que no pueden enfocarse también se les asigna un valor, pero se ignoran al utilizar la tecla Tabulador."
#: 01170101.xhp
msgctxt ""
@@ -6183,7 +6183,7 @@ msgctxt ""
"par_idN11128\n"
"help.text"
msgid "<ahelp hid=\".\">Repeats trigger events when you keep the mouse button pressed on a control such as a spin button.</ahelp>"
-msgstr "<ahelp hid=\".\">Repite eventos desencadenadores al mantener el botón del ratón pulsado sobre un control como un botón de selección.</ahelp>"
+msgstr "<ahelp hid=\".\">Repite los sucesos desencadenadores al mantener el botón del ratón oprimido sobre un control como un botón de selección de valores.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -6662,7 +6662,7 @@ msgctxt ""
"55\n"
"help.text"
msgid "<emph>Titles</emph> are only used for labeling a dialog and can only contain one line. Please note that if you work with macros, controls are only called through their <emph>Name</emph> property."
-msgstr "Los <emph>títulos</emph> sólo se utilizan para etiquetar diálogos y sólo pueden contener una línea. Tenga presente que si trabaja con macros, los campos de control sólo se llaman empleando su propiedad <emph>Nombre</emph>."
+msgstr "Los <emph>títulos</emph> se utilizan únicamente para etiquetar diálogos y pueden contener solo una línea. Tenga presente que si trabaja con macros, los controles solo se llaman mediante su propiedad <emph>Nombre</emph>."
#: 01170101.xhp
msgctxt ""
@@ -6778,7 +6778,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Events"
-msgstr "Acontecimientos"
+msgstr "Sucesos"
#: 01170103.xhp
msgctxt ""
@@ -6814,7 +6814,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">Este evento tiene lugar si un control recibe el foco.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">Este suceso se produce si un control recibe el foco.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6832,7 +6832,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_FOCUSLOST\">Este evento tiene lugar si un control pierde el foco.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_FOCUSLOST\">Este suceso se produce si un control pierde el foco.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6850,7 +6850,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_KEYTYPED\">This event occurs when the user presses any key while the control has the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">Este evento tiene lugar cuando el usuario pulsa una tecla cuando el campo de control tiene el foco.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">Este suceso se produce cuando el usuario oprime una tecla mientras el control tiene el foco.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6868,7 +6868,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_KEYUP\">This event occurs when the user releases a key while the control has the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_KEYUP\">Este evento tiene lugar cuando el usuario suelta una tecla mientras el control tiene el foco.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_KEYUP\">Este suceso se produce cuando el usuario suelta una tecla mientras el control tiene el foco.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6886,7 +6886,7 @@ msgctxt ""
"42\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_CHANGED\">This event takes place, when the control loses the focus and the contents of the control were changed since it lost the focus.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_CHANGED\">Este evento tiene lugar si el control pierde el foco y el contenido del control cambia desde que perdió el foco.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_CHANGED\">Este suceso se produce si el control pierde el foco y el contenido del control cambia desde que perdió el foco.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6904,7 +6904,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_TEXTCHANGED\">This event takes place if you enter or modify a text in an input field.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_TEXTCHANGED\">Este evento tiene lugar si se introduce o modifica un texto en un campo de entrada.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_TEXTCHANGED\">Este suceso se produce si escribe o modifica un texto en un campo de entrada.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6922,7 +6922,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">This event takes place if the status of the control field is changed, for example, from checked to unchecked.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">Este evento tiene lugar si el estado del campo de control ha cambiado, por ejemplo, de marcado a desmarcado.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">Este suceso se produce si el estado del control ha cambiado, por ejemplo, de marcado a desmarcado.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6940,7 +6940,7 @@ msgctxt ""
"27\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEENTERED\">Este evento tiene lugar cuando el ratón entra en el control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEENTERED\">Este suceso se produce cuando el ratón entra en el control.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6958,7 +6958,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">This event takes place when the mouse is dragged while a key is pressed.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">Este evento tiene lugar cuando el ratón se arrastra con una tecla pulsada.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">Este suceso se produce cuando el ratón se arrastra con una tecla oprimida.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6976,7 +6976,7 @@ msgctxt ""
"33\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">Este evento tiene lugar cuando el ratón se mueve sobre el control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">Este suceso se produce cuando el ratón se mueve sobre el control.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6994,7 +6994,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">This event takes place when the mouse button is pressed while the mouse pointer is on the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">Este evento tiene lugar cuando se suelta el botón del ratón mientras el puntero se encuentra sobre el control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">Este suceso se produce cuando se suelta el botón del ratón mientras el puntero se encuentra sobre el control.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -7012,7 +7012,7 @@ msgctxt ""
"25\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSERELEASED\">This event takes place when the mouse button is released while the mouse pointer is on the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSERELEASED\">Este evento tiene lugar cuando se suelta el botón del ratón mientras el puntero se encuentra sobre el control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSERELEASED\">Este suceso se produce cuando se suelta el botón del ratón mientras el puntero se encuentra sobre el control.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -7030,7 +7030,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Este evento tiene lugar cuando el ratón sale del control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Este suceso se produce cuando el ratón sale del control.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -7048,7 +7048,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
-msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Este evento tiene lugar cuando se arrastra una barra de desplazamiento.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Este suceso se produce cuando se arrastra una barra de desplazamiento.</ahelp>"
#: 03000000.xhp
msgctxt ""
@@ -10654,7 +10654,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Seek Statement [Runtime]"
-msgstr "Función Seek [Ejecución]"
+msgstr "Declaración Seek [Ejecución]"
#: 03020305.xhp
msgctxt ""
@@ -10671,7 +10671,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Declaración Seek [Runtime]\">Declaración Seek [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Declaración Seek [Ejecución]\">Declaración Seek [Ejecución]</link>"
#: 03020305.xhp
msgctxt ""
@@ -10880,7 +10880,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ChDrive Statement [Runtime]"
-msgstr "Función ChDrive [Ejecución]"
+msgstr "Declaración ChDrive [Ejecución]"
#: 03020402.xhp
msgctxt ""
@@ -10897,7 +10897,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"Declaración ChDrive [Runtime]\">Declaración ChDrive [Ejecución]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"Declaración ChDrive [Ejecución]\">Declaración ChDrive [Ejecución]</link>"
#: 03020402.xhp
msgctxt ""
@@ -11502,7 +11502,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "FileCopy Statement [Runtime]"
-msgstr "Instrucción FileCopy [Ejecución]"
+msgstr "Declaración FileCopy [Ejecución]"
#: 03020406.xhp
msgctxt ""
@@ -11519,7 +11519,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"Declaración FileCopy [Runtime]\">Declaración FileCopy [Ejecución]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"Declaración FileCopy [Ejecución]\">Declaración FileCopy [Ejecución]</link>"
#: 03020406.xhp
msgctxt ""
@@ -12148,7 +12148,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "' Example for functions of the file organization"
-msgstr "' Ejemplo de funciones par una organización de archivos."
+msgstr "' Ejemplo de funciones de organización de archivos"
#: 03020411.xhp
msgctxt ""
@@ -23134,7 +23134,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic."
-msgstr "<emph>Nombre:</emph> nombre distinto al definido en la DLL para llamar a la subrutina desde $[officename] Basic."
+msgstr "<emph>Nombre:</emph> un nombre distinto del definido en la DLL para llamar a la subrutina desde $[officename] Basic."
#: 03090403.xhp
msgctxt ""
@@ -36183,7 +36183,7 @@ msgctxt ""
"51\n"
"help.text"
msgid "Many Uno interfaces let you register listeners on a special listener interface. This allows you to listen for specific events and call up the appropriate listener method. The CreateUnoListener function waits for the called listener interface and then passes the interface an object that the interface supports. This object is then passed to the method to register the listener."
-msgstr "Muchas interfaces Uno permiten registrar listeners en una interfaz especial, lo que permite supervisar eventos específicos y llamar al método listener apropiado. La función CreateUnoListener espera a la interfaz listener llamada y después la pasa un objeto que ésta admita y que, a su vez, después se pasa al método para registrar el listener."
+msgstr "Muchas interfaces de Uno permiten registrar receptores en una interfaz especial, lo que permite supervisar sucesos específicos y llamar al método receptor apropiado. La función CreateUnoListener espera a la interfaz receptora llamada y después le pasa un objeto que esta admite. A continuación, a su vez, se pasa este objeto al método para registrar el receptor."
#: 03132000.xhp
msgctxt ""
@@ -36936,7 +36936,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/assignments\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/eventassignpage/assignments\">Muestra los eventos que son relevantes a la macro asignada actualmente al objeto seleccionado.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/assignments\">Muestra los sucesos que son relevantes a la macro asignada actualmente al objeto seleccionado.</ahelp>"
#: 05060700.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sbasic/shared/01.po b/source/es/helpcontent2/source/text/sbasic/shared/01.po
index 2f2a88036c4..7fb4adb2d7d 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-11-16 04:39+0000\n"
+"PO-Revision-Date: 2016-03-31 19:27+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1447648747.000000\n"
+"X-POOTLE-MTIME: 1459452433.000000\n"
#: 06130000.xhp
msgctxt ""
@@ -120,7 +120,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Opens the Customize dialog, where you can assign the selected macro to a menu command, a toolbar, or an event.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Abre el cuadro de diálogo Personalizar, donde puede asignar la macro seleccionada a una orden de menú, una barra de herramientas o un evento.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Abre el cuadro de diálogo Personalizar, donde puede asignar la macro seleccionada a una orden de menú, una barra de herramientas o un suceso.</ahelp>"
#: 06130000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sbasic/shared/02.po b/source/es/helpcontent2/source/text/sbasic/shared/02.po
index 278a32f638f..df957fa6b76 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared/02.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-12-17 10:13+0000\n"
-"Last-Translator: Adolfo <fito@libreoffice.org>\n"
+"POT-Creation-Date: 2015-04-22 23:39+0200\n"
+"PO-Revision-Date: 2016-03-31 13:33+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1418811198.000000\n"
+"X-POOTLE-MTIME: 1459431212.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -960,7 +960,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert Controls"
-msgstr "Insertar campos de control"
+msgstr "Insertar controles"
#: 20000000.xhp
msgctxt ""
@@ -977,7 +977,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Insert Controls</link>"
-msgstr "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Insertar campos de control</link>"
+msgstr "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insertar controles\">Insertar controles</link>"
#: 20000000.xhp
msgctxt ""
@@ -1003,7 +1003,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Insert Controls"
-msgstr "Insertar campos de control"
+msgstr "Insertar controles"
#: 20000000.xhp
msgctxt ""
@@ -1316,7 +1316,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "<ahelp hid=\".uno:Groupbox\">Adds a frame that you can use to visually group similar controls, such as option buttons.</ahelp>"
-msgstr "<ahelp hid=\".uno:Groupbox\">Añade un marco que puede usarse para agrupar visualmente campos de control similares, como botones de opción.</ahelp>"
+msgstr "<ahelp hid=\".uno:Groupbox\">Añade un marco que puede usarse para agrupar visualmente controles similares, como los botones de opción.</ahelp>"
#: 20000000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc.po b/source/es/helpcontent2/source/text/scalc.po
index 4f57305a3c6..c8760885683 100644
--- a/source/es/helpcontent2/source/text/scalc.po
+++ b/source/es/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-12-03 08:13+0000\n"
+"PO-Revision-Date: 2016-03-14 08:28+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449130438.000000\n"
+"X-POOTLE-MTIME: 1457944099.000000\n"
#: main0000.xhp
msgctxt ""
@@ -720,7 +720,7 @@ msgctxt ""
"hd_id1387066\n"
"help.text"
msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
-msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Texto a Columnas</link>"
+msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Texto a columnas</link>"
#: main0112.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/00.po b/source/es/helpcontent2/source/text/scalc/00.po
index 8a418ab6afe..8b040bd5199 100644
--- a/source/es/helpcontent2/source/text/scalc/00.po
+++ b/source/es/helpcontent2/source/text/scalc/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-11-25 17:52+0000\n"
+"PO-Revision-Date: 2016-03-14 08:29+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1448473956.000000\n"
+"X-POOTLE-MTIME: 1457944178.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1269,7 +1269,7 @@ msgctxt ""
"par_id8366954\n"
"help.text"
msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
-msgstr "<variable id=\"text2columns\">Seleccione <emph>Datos - Texto a Columnas</emph></variable>"
+msgstr "<variable id=\"text2columns\">Vaya a <emph>Datos ▸ Texto a columnas</emph></variable>"
#: 00000412.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index 347e832a8bc..688f4085645 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/helpcontent2/source/text/scalc/01.po