[Libreoffice-commits] .: 2 commits - binfilter/bf_sw binfilter/inc binfilter/prj
Caolán McNamara
caolan at kemper.freedesktop.org
Fri Aug 19 01:31:20 PDT 2011
binfilter/bf_sw/source/core/edit/sw_edws.cxx | 23
binfilter/bf_sw/source/ui/app/sw_apphdl.cxx | 22
binfilter/bf_sw/source/ui/app/sw_docsh.cxx | 5
binfilter/bf_sw/source/ui/app/sw_docsh2.cxx | 15
binfilter/bf_sw/source/ui/app/sw_docshini.cxx | 2
binfilter/bf_sw/source/ui/app/sw_docstyle.cxx | 51
binfilter/bf_sw/source/ui/app/sw_swmodul1.cxx | 1
binfilter/bf_sw/source/ui/dbui/sw_dbmgr.cxx | 1
binfilter/bf_sw/source/ui/inc/ccoll.hxx | 1
binfilter/bf_sw/source/ui/inc/uitool.hxx | 1
binfilter/bf_sw/source/ui/inc/wrtsh.hxx | 319 --
binfilter/bf_sw/source/ui/index/sw_toxmgr.cxx | 2
binfilter/bf_sw/source/ui/makefile.mk | 3
binfilter/bf_sw/source/ui/uno/sw_unomod.cxx | 1
binfilter/bf_sw/source/ui/uno/sw_unotxdoc.cxx | 17
binfilter/bf_sw/source/ui/wrtsh/makefile.mk | 57
binfilter/bf_sw/source/ui/wrtsh/sw_move.cxx | 99
binfilter/bf_sw/source/ui/wrtsh/sw_wrtsh.src | 2847 --------------------------
binfilter/bf_sw/source/ui/wrtsh/sw_wrtsh1.cxx | 71
binfilter/bf_sw/source/ui/wrtsh/sw_wrtsh3.cxx | 64
binfilter/bf_sw/source/ui/wrtsh/wrtsh.hrc | 173 -
binfilter/bf_sw/util/makefile.mk | 3
binfilter/inc/bf_sw/docsh.hxx | 8
binfilter/inc/bf_sw/editsh.hxx | 3
binfilter/inc/bf_sw/swmodule.hxx | 1
binfilter/prj/build.lst | 3
26 files changed, 10 insertions(+), 3783 deletions(-)
New commits:
commit f7e3dd4efe9432f4e139c464b5af909f54bfafaf
Author: Caolán McNamara <caolanm at redhat.com>
Date: Fri Aug 19 08:54:08 2011 +0100
callcatcher: reduce further
diff --git a/binfilter/bf_sw/source/core/edit/sw_edws.cxx b/binfilter/bf_sw/source/core/edit/sw_edws.cxx
index 1ebde49..2179612 100644
--- a/binfilter/bf_sw/source/core/edit/sw_edws.cxx
+++ b/binfilter/bf_sw/source/core/edit/sw_edws.cxx
@@ -84,29 +84,6 @@ namespace binfilter {
/*N*/ pSh = (ViewShell *)pSh->GetNext();
/*N*/ } while(pSh != this);
/*N*/ }
-
-/******************************************************************************
- * void SwEditShell::CalcLayout()
- ******************************************************************************/
-
-
-/*N*/ void SwEditShell::CalcLayout()
-/*N*/ {
-/*N*/ StartAllAction();
-/*N*/ ViewShell::CalcLayout();
-/*N*/
-/*N*/ ViewShell *pSh = this;
-/*N*/ do
-/*N*/ {
-/*N*/ if ( pSh->GetWin() )
-/*N*/ pSh->GetWin()->Invalidate();
-/*N*/ pSh = (ViewShell*)pSh->GetNext();
-/*N*/
-/*N*/ } while ( pSh != this );
-/*N*/
-/*N*/ EndAllAction();
-/*N*/ }
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/binfilter/inc/bf_sw/editsh.hxx b/binfilter/inc/bf_sw/editsh.hxx
index 1c79414..db370c8 100644
--- a/binfilter/inc/bf_sw/editsh.hxx
+++ b/binfilter/inc/bf_sw/editsh.hxx
@@ -227,9 +227,6 @@ public:
void StartAllAction();
void EndAllAction();
- //Damit Start-/EndActions aufgesetzt werden koennen.
- void CalcLayout();
-
/* Anwenden der ViewOptions mit Start-/EndAction */
inline void ApplyViewOptions( const SwViewOption &rOpt );
commit 508adb9d62b6e525d0bf475d3bb9e890a70520b2
Author: Caolán McNamara <caolanm at redhat.com>
Date: Thu Aug 18 23:35:27 2011 +0100
SwWrtShell cannot be constructed
diff --git a/binfilter/bf_sw/source/ui/app/sw_apphdl.cxx b/binfilter/bf_sw/source/ui/app/sw_apphdl.cxx
index ac7494f..b5c5553 100644
--- a/binfilter/bf_sw/source/ui/app/sw_apphdl.cxx
+++ b/binfilter/bf_sw/source/ui/app/sw_apphdl.cxx
@@ -45,7 +45,7 @@
#include <horiornt.hxx>
-#include <wrtsh.hxx>
+#include <viewsh.hxx>
#include <cmdid.h> // Funktion-Ids
#include <swmodule.hxx>
#include <wdocsh.hxx>
@@ -80,22 +80,6 @@ namespace binfilter {
/*M*/ {
/*M*/ if( rHint.ISA( SfxEventHint ) )
/*M*/ {
-/*M*/ SfxEventHint& rEvHint = (SfxEventHint&) rHint;
-/*M*/ SwDocShell* pDocSh = PTR_CAST( SwDocShell, rEvHint.GetObjShell() );
-/*M*/ if( pDocSh )
-/*M*/ {
-/*M*/ SwWrtShell* pWrtSh = pDocSh ? pDocSh->GetWrtShell() : 0;
-/*M*/ switch( rEvHint.GetEventId() )
-/*M*/ {
-/*M*/ case SFX_EVENT_CREATEDOC:
-/*M*/ // alle FIX-Date/Time Felder auf akt. setzen
-/*M*/ if( pWrtSh )
-/*M*/ {
-/*?*/ DBG_BF_ASSERT(0, "STRIP");
-/*M*/ }
-/*M*/ break;
-/*M*/ }
-/*M*/ }
/*M*/ }
/*M*/ else if(rHint.ISA(SfxItemSetHint))
/*M*/ {
@@ -108,8 +92,8 @@ namespace binfilter {
/*M*/ GetItemState( SID_ATTR_ADDRESS, sal_False ))
/*M*/ bAuthorInitialised = FALSE;
/*M*/ }
-/*M*/ else if(rHint.ISA(SfxSimpleHint))
-/*M*/ {
+/*M*/ else if(rHint.ISA(SfxSimpleHint))
+/*M*/ {
/*M*/ ULONG nHintId = ((SfxSimpleHint&)rHint).GetId();
/*M*/ if(SFX_HINT_COLORS_CHANGED == nHintId ||
/*N*/ SFX_HINT_ACCESSIBILITY_CHANGED == nHintId )
diff --git a/binfilter/bf_sw/source/ui/app/sw_docsh.cxx b/binfilter/bf_sw/source/ui/app/sw_docsh.cxx
index 1a8db95..786f972 100644
--- a/binfilter/bf_sw/source/ui/app/sw_docsh.cxx
+++ b/binfilter/bf_sw/source/ui/app/sw_docsh.cxx
@@ -56,8 +56,8 @@
#include <horiornt.hxx>
-#include <wrtsh.hxx> // Verbindung zur Core
#include <wdocsh.hxx>
+#include <crsrsh.hxx>
#include <swmodule.hxx>
#include <globdoc.hxx>
#include <usrpref.hxx>
@@ -389,8 +389,7 @@ SFX_IMPL_OBJECTFACTORY_DLL(SwDocShell, SFXOBJECTSHELL_STD_NORMAL|SFXOBJECTSHELL_
/*N*/ BOOL bSttTimer = FALSE;
// ohne WrtShell haben wir eine WebDocShell und muessen uns die
// Optionen vom Modul holen
-/*N*/ if( pWrtShell ? pWrtShell->GetViewOptions()->IsGraphic()
-/*N*/ : SW_MOD()->GetUsrPref(TRUE)->IsGraphic() )
+/*N*/ if( SW_MOD()->GetUsrPref(TRUE)->IsGraphic() )
/*N*/ {
/*N*/ const SvxLinkManager& rLnkMgr = pDoc->GetLinkManager();
/*N*/ const ::binfilter::SvBaseLinks& rLnks = rLnkMgr.GetLinks();
diff --git a/binfilter/bf_sw/source/ui/app/sw_docsh2.cxx b/binfilter/bf_sw/source/ui/app/sw_docsh2.cxx
index a055277..754c908 100644
--- a/binfilter/bf_sw/source/ui/app/sw_docsh2.cxx
+++ b/binfilter/bf_sw/source/ui/app/sw_docsh2.cxx
@@ -69,7 +69,6 @@
#include <horiornt.hxx>
-#include <wrtsh.hxx>
#include <fldbas.hxx>
#include <viewopt.hxx>
#include <globdoc.hxx>
@@ -136,13 +135,6 @@ using namespace ::rtl;
/*N*/
/*N*/ if( nAction )
/*N*/ {
-/*N*/ BOOL bUnlockView(false);
-/*N*/ if( pWrtShell )
-/*N*/ {
-/*N*/ bUnlockView = !pWrtShell->IsViewLocked();
-/*N*/ pWrtShell->LockView( TRUE ); //lock visible section
-/*N*/ pWrtShell->StartAllAction();
-/*N*/ }
/*N*/ switch( nAction )
/*N*/ {
/*N*/ case 1:
@@ -153,13 +145,6 @@ using namespace ::rtl;
/*N*/ pDoc->GetSysFldType( RES_FILENAMEFLD )->UpdateFlds();
/*N*/ break;
/*N*/ }
-/*N*/
-/*N*/ if( pWrtShell )
-/*N*/ {
-/*N*/ pWrtShell->EndAllAction();
-/*N*/ if( bUnlockView )
-/*N*/ pWrtShell->LockView( FALSE );
-/*N*/ }
/*N*/ }
/*N*/ }
diff --git a/binfilter/bf_sw/source/ui/app/sw_docshini.cxx b/binfilter/bf_sw/source/ui/app/sw_docshini.cxx
index 008c940..1889bb8 100644
--- a/binfilter/bf_sw/source/ui/app/sw_docshini.cxx
+++ b/binfilter/bf_sw/source/ui/app/sw_docshini.cxx
@@ -316,7 +316,6 @@ using namespace ::rtl;
/*N*/ , pBasePool(0)
/*N*/ , pFontList(0)
/*N*/ , pView( 0 )
-/*N*/ , pWrtShell( 0 )
/*N*/ , nUpdateDocMode(document::UpdateDocMode::ACCORDING_TO_CONFIG)
/*N*/ {
/*N*/ RTL_LOGFILE_CONTEXT_AUTHOR( aLog, "SW", "JP93722", "SwDocShell::SwDocShell" );
@@ -335,7 +334,6 @@ using namespace ::rtl;
/*?*/ , pBasePool(0)
/*?*/ , pFontList(0)
/*?*/ , pView( 0 )
-/*?*/ , pWrtShell( 0 )
/*?*/ , nUpdateDocMode(document::UpdateDocMode::ACCORDING_TO_CONFIG)
/*?*/ {
/*?*/ RTL_LOGFILE_CONTEXT_AUTHOR( aLog, "SW", "JP93722", "SwDocShell::SwDocShell" );
diff --git a/binfilter/bf_sw/source/ui/app/sw_docstyle.cxx b/binfilter/bf_sw/source/ui/app/sw_docstyle.cxx
index 55ac68c..f500bd6 100644
--- a/binfilter/bf_sw/source/ui/app/sw_docstyle.cxx
+++ b/binfilter/bf_sw/source/ui/app/sw_docstyle.cxx
@@ -47,7 +47,6 @@
#include <horiornt.hxx>
-#include <wrtsh.hxx>
#include <docsh.hxx>
#include <osl/diagnose.h>
#include <charfmt.hxx>
@@ -73,48 +72,6 @@ namespace binfilter {
#define cPAGE (sal_Unicode)'g'
#define cNUMRULE (sal_Unicode)'n'
-// Dieses Zeichen wird bei der Herausgabe der Namen wieder entfernt und
-// die Familie wird neu generiert.
-
-// Ausserdem gibt es jetzt zusaetzlich das Bit bPhysical. Ist dieses Bit
-// TRUE, werden die Pool-Formatnamen NICHT mit eingetragen.
-
-
-/*N*/ class SwImplShellAction
-/*N*/ {
-/*N*/ SwWrtShell* pSh;
-/*N*/ CurrShell* pCurrSh;
-/*N*/ public:
-/*N*/ SwImplShellAction( SwDoc& rDoc );
-/*N*/ ~SwImplShellAction();
-/*N*/
-/*N*/ SwWrtShell* GetSh() { return pSh; }
-/*N*/ };
-
-/*N*/ SwImplShellAction::SwImplShellAction( SwDoc& rDoc )
-/*N*/ : pCurrSh( 0 )
-/*N*/ {
-/*N*/ if( rDoc.GetDocShell() )
-/*N*/ pSh = rDoc.GetDocShell()->GetWrtShell();
-/*N*/ else
-/*N*/ pSh = 0;
-/*N*/
-/*N*/ if( pSh )
-/*N*/ {
-/*N*/ pCurrSh = new CurrShell( pSh );
-/*N*/ pSh->StartAllAction();
-/*N*/ }
-/*N*/ }
-
-/*N*/ SwImplShellAction::~SwImplShellAction()
-/*N*/ {
-/*N*/ if( pCurrSh )
-/*N*/ {
-/*N*/ pSh->EndAllAction();
-/*N*/ delete pCurrSh;
-/*N*/ }
-/*N*/ }
-
/*--------------------------------------------------------------------
Beschreibung: SwCharFormate finden/anlegen
evtl. Style fuellen
@@ -555,10 +512,7 @@ namespace binfilter {
/*N*/ if( pFmt && pFmt->DerivedFrom() &&
/*N*/ pFmt->DerivedFrom()->GetName() != rStr )
/*N*/ {
-/*N*/ {
-/*N*/ SwImplShellAction aTmp( rDoc );
-/*N*/ bRet = pFmt->SetDerivedFrom( pParent );
-/*N*/ }
+/*N*/ bRet = pFmt->SetDerivedFrom( pParent );
/*N*/
/*N*/ if( bRet )
/*N*/ {
@@ -581,7 +535,6 @@ namespace binfilter {
/*N*/ if( rStr.Len() && !SfxStyleSheetBase::SetFollow( rStr ))
/*?*/ return FALSE;
/*N*/
-/*N*/ SwImplShellAction aTmpSh( rDoc );
/*N*/ switch(nFamily)
/*N*/ {
/*N*/ case SFX_STYLE_FAMILY_PARA :
@@ -715,8 +668,6 @@ namespace binfilter {
/*N*/ if(!bPhysical)
/*?*/ FillStyleSheet( FillPhysical );
/*N*/
-/*N*/ SwImplShellAction aTmpSh( rDoc );
-/*N*/
/*N*/ OSL_ENSURE( &rSet != &aCoreSet, "SetItemSet mit eigenem Set ist nicht erlaubt" );
/*N*/
/*N*/ SwFmt* pFmt = 0;
diff --git a/binfilter/bf_sw/source/ui/app/sw_swmodul1.cxx b/binfilter/bf_sw/source/ui/app/sw_swmodul1.cxx
index da1e07a..9c7a148 100644
--- a/binfilter/bf_sw/source/ui/app/sw_swmodul1.cxx
+++ b/binfilter/bf_sw/source/ui/app/sw_swmodul1.cxx
@@ -64,7 +64,6 @@
#include <horiornt.hxx>
-#include <wrtsh.hxx>
#include <docsh.hxx>
#include <dbmgr.hxx>
#include <uinums.hxx>
diff --git a/binfilter/bf_sw/source/ui/dbui/sw_dbmgr.cxx b/binfilter/bf_sw/source/ui/dbui/sw_dbmgr.cxx
index b4c46b0..6c1b3a6 100644
--- a/binfilter/bf_sw/source/ui/dbui/sw_dbmgr.cxx
+++ b/binfilter/bf_sw/source/ui/dbui/sw_dbmgr.cxx
@@ -65,7 +65,6 @@
#include <horiornt.hxx>
-#include <wrtsh.hxx>
#include <fldbas.hxx>
#include <flddat.hxx>
#include <swmodule.hxx>
diff --git a/binfilter/bf_sw/source/ui/inc/ccoll.hxx b/binfilter/bf_sw/source/ui/inc/ccoll.hxx
index eaf9a89..85e9dc1 100644
--- a/binfilter/bf_sw/source/ui/inc/ccoll.hxx
+++ b/binfilter/bf_sw/source/ui/inc/ccoll.hxx
@@ -35,7 +35,6 @@
namespace binfilter {
-class SwWrtShell;
class SwFmt;
class SwCollCondition;
diff --git a/binfilter/bf_sw/source/ui/inc/uitool.hxx b/binfilter/bf_sw/source/ui/inc/uitool.hxx
index 2e765ea..e7a4579 100644
--- a/binfilter/bf_sw/source/ui/inc/uitool.hxx
+++ b/binfilter/bf_sw/source/ui/inc/uitool.hxx
@@ -43,7 +43,6 @@ class SfxMedium;
class SwPageDesc;
class SvxTabStopItem;
-class SwWrtShell;
class SwDocShell;
class SwFrmFmt;
diff --git a/binfilter/bf_sw/source/ui/inc/wrtsh.hxx b/binfilter/bf_sw/source/ui/inc/wrtsh.hxx
deleted file mode 100644
index ba23775..0000000
--- a/binfilter/bf_sw/source/ui/inc/wrtsh.hxx
+++ /dev/null
@@ -1,319 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-#ifndef _WRTSH_HXX
-#define _WRTSH_HXX
-
-#include <bf_svtools/bf_solar.h>
-
-#include <fesh.hxx>
-#include <sortopt.hxx>
-#include <tools/debug.hxx>
-namespace com { namespace sun { namespace star { namespace util {
- struct SearchOptions;
-} } } }
-class Window;
-class SbxArray;
-class SvGlobalName;
-class Timer;
-
-namespace binfilter {
-class SvInPlaceObjectRef;
-class SvEmbeddedObjectRef;
-class SvxMacro;
-class SwDoc;
-class SpellCheck;
-class SwViewOption;
-class SwFlyFrmAttrMgr;
-class SwField;
-class SwTOXBase;
-class SdrView;
-class SwView;
-class SwInputFieldList;
-class SwSection;
-class SwFmtINetFmt;
-class SvxINetBookmark;
-class SvxAutoCorrect;
-class NaviContentBookmark;
-struct SwCallMouseEvent;
-class DropEvent;
-struct ChartSelectionInfo;
-class SfxStringListItem;
-
-
-
-class SwWrtShell: public SwFEShell
-{
-public:
- typedef long (SwWrtShell::*SELECTFUNC)(const Point *, BOOL bProp );
-
- SELECTFUNC fnDrag;
- SELECTFUNC fnSetCrsr;
- SELECTFUNC fnEndDrag;
- SELECTFUNC fnKillSel;
-
- // Alle Selektionen aufheben
-
- //setzt den Cursorstack nach dem Bewegen mit PageUp/-Down
- //zurueck, falls ein Stack aufgebaut ist
- inline void ResetCursorStack();
-
- enum SelectionType
- {
- SEL_TXT = CNT_TXT, // Text, niemals auch Rahmen 0x0001
- SEL_GRF = CNT_GRF, // Grafik 0x0002
- SEL_OLE = CNT_OLE, // OLE 0x0010
- SEL_FRM = 0x0020, // Rahmen, keine Inhaltsform
- SEL_NUM = 0x0040, // NumListe
- SEL_TBL = 0x0080, // Cursor steht in Tabelle
- SEL_TBL_CELLS = 0x0100, // Tabellenzellen sind selektiert
- SEL_DRW = 0x0200, // Zeichenobjekte (Rechteck, Kreis...)
- SEL_DRW_TXT = 0x0400, // Draw-Textobjekte im Editmode
- SEL_BEZ = 0x0800, // Bezierobjekte editieren
- SEL_DRW_FORM = 0x1000 // Zeichenobjekte: DB-Forms
- };
- BOOL IsModePushed() const { return 0 != pModeStack; }
-
- BOOL IsInSelect() const { return bInSelect; }
- void SetInSelect(BOOL bSel = TRUE) { bInSelect = bSel; }
-
- BOOL IsStdMode() const { return !bExtMode && !bAddMode; }
-
- BOOL IsExtMode() const { return bExtMode; }
-
- BOOL IsAddMode() const { return bAddMode; }
-
- BOOL IsInsMode() const { return bIns; }
-
- BOOL IsSelFrmMode() const { return bLayoutMode; }
-
- // Tabellenzellen selektieren fuer Bearbeiten von Formeln in der Ribbonbar
- inline void SelTblCells( const Link &rLink, BOOL bMark = TRUE );
- inline void EndSelTblCells();
-
- //Wortweisen oder zeilenweisen Selektionsmodus verlassen. Wird
- //in der Regel in MB-Up gerufen.
- BOOL IsExtSel() const { return bSelWrd || bSelLn; }
-
- //Basiscursortravelling
-typedef bool (SwWrtShell:: *FNSimpleMove)();
-
- // Felder Update
-
- BOOL IsNoEdit() const { return bNoEdit; }
-
- // Loeschen
-
- // loescht auch Rahmen bzw. setzt den Cursor in den Rahmen,
- // wenn bDelFrm == FALSE ist
-
- // Prueft, ob eine Wortselektion vorliegt.
- // Gemaess den Regeln fuer intelligentes Cut / Paste
- // werden umgebende Spaces rausgeschnitten.
- // Liefert Art der Wortselektion zurueck (siehe enum)
- enum {
- NO_WORD = 0,
- WORD_SPACE_BEFORE = 1,
- WORD_SPACE_AFTER = 2,
- WORD_NO_SPACE = 3
- };
-
- virtual void CalcAndSetScale( SvEmbeddedObjectRef xObj,
- const SwRect *pFlyPrtRect = 0,
- const SwRect *pFlyFrmRect = 0 );
- virtual void ConnectObj( SvInPlaceObjectRef xIPObj, const SwRect &rPrt,
- const SwRect &rFrm );
-
- // Vorlagen und Formate
-
- // enum gibt an, was geschehen soll, wenn das Style nicht gefunden wurde
- enum GetStyle { GETSTYLE_NOCREATE, // keins anlegen
- GETSTYLE_CREATESOME, // falls auf PoolId mapt anlegen
- GETSTYLE_CREATEANY }; // ggfs Standard returnen
-
-
-
- // Aktuelle Vorlage anhand der geltenden Attribute aendern
-
- enum DoType { UNDO, REDO, REPEAT };
-
- String GetDoString( DoType eDoType ) const;
-
- //Suchen oder Ersetzen
-
-
-
-
- // Aktion vor Cursorbewegung
- // Hebt gfs. Selektionen auf, triggert Timer und GCAttr()
-
- // Eingabefelder updaten
-
- //"Handler" fuer Anederungen an der DrawView - fuer Controls.
- virtual void DrawSelChanged( SdrView * );
-
- // jump to the next / previous hyperlink - inside text and also
- // on graphics
-
- // Zugehoerige SwView ermitteln
- const SwView& GetView() const { return rView; }
- SwView& GetView() { return rView; }
-
- //Weil es sonst keiner macht, gibt es hier eine ExecMacro()
- // rufe ins dunkle Basic/JavaScript
-
-
- // ein Klick aus das angegebene Feld. Der Cursor steht auf diesem.
- // Fuehre die vor definierten Aktionen aus.
- inline BOOL IsInClickToEdit() const ;
-
- SwWrtShell(SwDoc&, Window*, SwView&, SwRootFrm*, SwViewOption const*);
- virtual ~SwWrtShell();
-
-private:
-
-
- String GetWrdDelim();
- String GetSDelim();
- String GetBothDelim();
-
- struct ModeStack
- {
- ModeStack *pNext;
- BOOL bAdd,
- bExt,
- bIns;
- ModeStack(ModeStack *pNextMode, BOOL _bIns, BOOL _bExt, BOOL _bAdd)
- : pNext(pNextMode)
- , bAdd(_bAdd)
- , bExt(_bExt)
- , bIns(_bIns)
- {}
- } *pModeStack;
-
- // Cursor bei PageUp / -Down mitnehmen
- enum PageMove
- {
- MV_NO,
- MV_PAGE_UP,
- MV_PAGE_DOWN
- } ePageMove;
-
- struct CrsrStack
- {
- Point aDocPos;
- CrsrStack *pNext;
- BOOL bValidCurPos : 1;
- BOOL bIsFrmSel : 1;
- SwTwips lOffset;
-
- CrsrStack( BOOL bValid, BOOL bFrmSel, const Point &rDocPos,
- SwTwips lOff, CrsrStack *pN )
- : aDocPos(rDocPos), pNext(pN), lOffset(lOff)
- {
- bValidCurPos = bValid;
- bIsFrmSel = bFrmSel;
- }
-
- } *pCrsrStack;
-
- SwView &rView;
-
- Point aDest;
- BOOL bDestOnStack;
- BOOL HasCrsrStack() const { return 0 != pCrsrStack; }
- BOOL PopCrsr(BOOL bUpdate, BOOL bSelect = FALSE);
-
- // ENDE Cursor bei PageUp / -Down mitnehmen
-
- // Selektionen
- BOOL bIns :1;
- BOOL bInSelect :1;
- BOOL bExtMode :1;
- BOOL bAddMode :1;
- BOOL bLayoutMode :1;
- BOOL bNoEdit :1;
- BOOL bCopy :1;
- BOOL bSelWrd :1;
- BOOL bSelLn :1;
- BOOL bIsInClickToEdit:1;
- BOOL bClearMark :1; // Selektion fuer ChartAutoPilot nicht loeschen
-
- Point aStart;
- Link aSelTblLink;
-
- SELECTFUNC fnLeaveSelect;
-
- //setzt den Cursorstack nach dem Bewegen mit PageUp/-Down zurueck.
-
- void SttDragDrop(Timer *);
-
- long StdSelect(const Point *, BOOL bProp=FALSE );
-
-
- //Verschieben von Text aus Drag and Drop; Point ist
- //Destination fuer alle Selektionen.
-
- void LeaveExtSel() { bSelWrd = bSelLn = FALSE;}
-
-
- enum BookMarkMove
- {
- BOOKMARK_INDEX,
- BOOKMARK_NEXT,
- BOOKMARK_PREV,
- BOOKMARK_LAST_LAST_ENTRY
- };
-
-
-};
-
- inline void SwWrtShell::ResetCursorStack()
- {
- if ( HasCrsrStack() )
- {DBG_BF_ASSERT(0, "STRIP"); }
- }
-
-inline void SwWrtShell::SelTblCells(const Link &rLink, BOOL bMark )
-{
- SetSelTblCells( TRUE );
- bClearMark = bMark;
- aSelTblLink = rLink;
-}
-inline void SwWrtShell::EndSelTblCells()
-{
- SetSelTblCells( FALSE );
- bClearMark = TRUE;
-}
-
-inline BOOL SwWrtShell::IsInClickToEdit() const { return bIsInClickToEdit; }
-
-
-} //namespace binfilter
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/binfilter/bf_sw/source/ui/index/sw_toxmgr.cxx b/binfilter/bf_sw/source/ui/index/sw_toxmgr.cxx
index ba9a3aa..80d0374 100644
--- a/binfilter/bf_sw/source/ui/index/sw_toxmgr.cxx
+++ b/binfilter/bf_sw/source/ui/index/sw_toxmgr.cxx
@@ -28,7 +28,7 @@
#include <horiornt.hxx>
-#include <wrtsh.hxx>
+#include <viewsh.hxx>
#include <shellres.hxx>
#include <globals.hrc>
diff --git a/binfilter/bf_sw/source/ui/makefile.mk b/binfilter/bf_sw/source/ui/makefile.mk
index e637c91..5093a0b 100644
--- a/binfilter/bf_sw/source/ui/makefile.mk
+++ b/binfilter/bf_sw/source/ui/makefile.mk
@@ -66,8 +66,7 @@ LIB1FILES= \
$(SLB)$/sw_globdoc.lib \
$(SLB)$/sw_index.lib \
$(SLB)$/sw_unoidl.lib \
- $(SLB)$/sw_web.lib \
- $(SLB)$/sw_wrtsh.lib
+ $(SLB)$/sw_web.lib
.INCLUDE : target.mk
diff --git a/binfilter/bf_sw/source/ui/uno/sw_unomod.cxx b/binfilter/bf_sw/source/ui/uno/sw_unomod.cxx
index 7b924bd..e9ea0e5 100644
--- a/binfilter/bf_sw/source/ui/uno/sw_unomod.cxx
+++ b/binfilter/bf_sw/source/ui/uno/sw_unomod.cxx
@@ -50,7 +50,6 @@
#include <horiornt.hxx>
-#include <wrtsh.hxx>
#include <viewopt.hxx>
#include <osl/mutex.hxx>
#include <vcl/svapp.hxx>
diff --git a/binfilter/bf_sw/source/ui/uno/sw_unotxdoc.cxx b/binfilter/bf_sw/source/ui/uno/sw_unotxdoc.cxx
index fcc7f97..da3b302 100644
--- a/binfilter/bf_sw/source/ui/uno/sw_unotxdoc.cxx
+++ b/binfilter/bf_sw/source/ui/uno/sw_unotxdoc.cxx
@@ -46,7 +46,6 @@
#include <horiornt.hxx>
-#include <wrtsh.hxx>
#include <viewsh.hxx>
#include <pvprtdat.hxx>
#include <swprtopt.hxx>
@@ -1856,10 +1855,7 @@ void SwXTextDocument::refresh(void) throw( RuntimeException )
SolarMutexGuard aGuard;
if(!IsValid())
throw RuntimeException();
- SwWrtShell *pWrtShell = pDocShell->GetWrtShell();
notifyRefreshListeners();
- if(pWrtShell)
- pWrtShell->CalcLayout();
}
void SwXTextDocument::addRefreshListener(const Reference< util::XRefreshListener > & l)
@@ -1993,19 +1989,6 @@ sal_Int32 SAL_CALL SwXTextDocument::getRendererCount(
if (!pDoc)
throw RuntimeException();
- SwWrtShell *pWrtShell = pDoc->GetDocShell()->GetWrtShell();
- if( pWrtShell )
- {
- SwViewOption aViewOpt( *pWrtShell->GetViewOptions() );
- aViewOpt.SetPDFExport( TRUE );
- if ( pWrtShell->IsBrowseMode() )
- aViewOpt.SetPrtFormat( TRUE );
- pWrtShell->ApplyViewOptions( aViewOpt );
- pWrtShell->CalcLayout();
- aViewOpt.SetPDFExport( FALSE );
- pWrtShell->ApplyViewOptions( aViewOpt );
- }
-
return pDoc->GetPageCount();
}
diff --git a/binfilter/bf_sw/source/ui/wrtsh/makefile.mk b/binfilter/bf_sw/source/ui/wrtsh/makefile.mk
deleted file mode 100644
index e7933f0..0000000
--- a/binfilter/bf_sw/source/ui/wrtsh/makefile.mk
+++ /dev/null
@@ -1,57 +0,0 @@
-#*************************************************************************
-#
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# Copyright 2000, 2010 Oracle and/or its affiliates.
-#
-# OpenOffice.org - a multi-platform office productivity suite
-#
-# This file is part of OpenOffice.org.
-#
-# OpenOffice.org is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License version 3
-# only, as published by the Free Software Foundation.
-#
-# OpenOffice.org is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Lesser General Public License version 3 for more details
-# (a copy is included in the LICENSE file that accompanied this code).
-#
-# You should have received a copy of the GNU Lesser General Public License
-# version 3 along with OpenOffice.org. If not, see
-# <http://www.openoffice.org/license.html>
-# for a copy of the LGPLv3 License.
-#
-#*************************************************************************
-
-PRJ=..$/..$/..$/..
-BFPRJ=..$/..$/..
-
-PRJNAME=binfilter
-TARGET=sw_wrtsh
-
-NO_HIDS=TRUE
-
-# --- Settings -----------------------------------------------------
-
-.INCLUDE : $(PRJ)$/inc$/bf_sw$/swpre.mk
-.INCLUDE : settings.mk
-alllangiso=en-US
-.INCLUDE : $(PRJ)$/inc$/bf_sw$/sw.mk
-
-INC+= -I$(PRJ)$/inc$/bf_sw
-# --- Files --------------------------------------------------------
-SRS1NAME=$(TARGET)
-SRC1FILES = \
- sw_wrtsh.src
-
-SLOFILES = \
- $(SLO)$/sw_move.obj \
- $(SLO)$/sw_wrtsh1.obj \
- $(SLO)$/sw_wrtsh3.obj
-
-# --- Tagets -------------------------------------------------------
-
-.INCLUDE : target.mk
-
diff --git a/binfilter/bf_sw/source/ui/wrtsh/sw_move.cxx b/binfilter/bf_sw/source/ui/wrtsh/sw_move.cxx
deleted file mode 100644
index 9d59bd9..0000000
--- a/binfilter/bf_sw/source/ui/wrtsh/sw_move.cxx
+++ /dev/null
@@ -1,99 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-
-#ifdef _MSC_VER
-#pragma hdrstop
-#endif
-
-
-#include <horiornt.hxx>
-
-#include <wrtsh.hxx>
-namespace binfilter {
-
-/* Immer:
- - Zuruecksetzen des Cursorstacks
- - Timer nachtriggern
- - gfs. GCAttr
-
- bei Selektion
- - SttSelect()
-
- sonst
- - EndSelect()
- */
-
-const long nReadOnlyScrollOfst = 10;
-
-/*------------------------------------------------------------------------
- Beschreibung: Spaltenweises Springen
- Parameter: mit oder ohne SSelection
- Return: Erfolg oder Misserfolg
-------------------------------------------------------------------------*/
-
-
-/*N*/ BOOL SwWrtShell::PopCrsr(BOOL bUpdate, BOOL)
-/*N*/ {
-/*N*/ if( 0 == pCrsrStack)
-/*N*/ return FALSE;
-
-/*?*/ const BOOL bValidPos = pCrsrStack->bValidCurPos;
-/*?*/ if( bUpdate && bValidPos )
-/*?*/ {
-/*?*/ // falls ein Vorgaenger auf dem Stack steht, dessen Flag fuer eine
-/*?*/ // gueltige Position verwenden.
-/*?*/ SwRect aTmpArea(VisArea());
-/*?*/ aTmpArea.Pos().Y() -= pCrsrStack->lOffset;
-/*?*/ if( aTmpArea.IsInside( pCrsrStack->aDocPos ) )
-/*?*/ {
-/*?*/ DBG_BF_ASSERT(0, "STRIP");
-/*?*/ }
-/*?*/ // Falls eine Verschiebung zwischen dem sichtbaren Bereich
-/*?*/ // und der gemerkten Cursorpositionen auftritt, werden
-/*?*/ // alle gemerkten Positionen weggeschmissen
-/*?*/ else
-/*?*/ {
-/*?*/ DBG_BF_ASSERT(0, "STRIP");
-/*?*/ return FALSE;
-/*?*/ }
-/*?*/ }
-/*?*/ CrsrStack *pTmp = pCrsrStack;
-/*?*/ pCrsrStack = pCrsrStack->pNext;
-/*?*/ delete pTmp;
-/*?*/ if( 0 == pCrsrStack )
-/*?*/ {
-/*?*/ ePageMove = MV_NO;
-/*?*/ bDestOnStack = FALSE;
-/*?*/ }
-/*?*/ return bValidPos;
-/*N*/ }
-
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/binfilter/bf_sw/source/ui/wrtsh/sw_wrtsh.src b/binfilter/bf_sw/source/ui/wrtsh/sw_wrtsh.src
deleted file mode 100644
index 38fdb85..0000000
--- a/binfilter/bf_sw/source/ui/wrtsh/sw_wrtsh.src
+++ /dev/null
@@ -1,2847 +0,0 @@
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-#define NO_LOCALIZE_EXPORT
-#include "wrtsh.hrc"
-
- // Undo
-String STR_CANT_UNDO
-{
- Text [ de ] = "unmöglich" ;
- Text [ en-US ] = "not possible" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "ImpossÃvel";
- Text[ ru ] = "невозможно";
- Text[ el ] = "αδÏναÏον";
- Text[ nl ] = "Onmogelijk";
- Text[ fr ] = "impossible";
- Text[ es ] = "imposible";
- Text[ fi ] = "ei mahdollinen";
- Text[ ca ] = "impossible";
- Text[ it ] = "Impossibile";
- Text[ sk ] = "nie je možné";
- Text[ da ] = "ikke mulig";
- Text[ sv ] = "inte möjlig";
- Text[ pl ] = "niemożliwe";
- Text[ pt-BR ] = "impossÃvel";
- Text[ th ] = "à¹à¸¡à¹à¸ªà¸²à¸¡à¸²à¸£à¸à¹à¸à¹à¸à¹à¸à¹à¸à¹";
- Text[ ja ] = "ä¸å¯è½";
- Text[ ko ] = "ë¶ê°ë¥";
- Text[ zh-CN ] = "ä¸å¯è½";
- Text[ zh-TW ] = "ä¸å¯è½";
- Text[ tr ] = "olanaksız";
- Text[ hi-IN ] = "सà¤à¤à¤µ नहà¥à¤";
- Text[ ar ] = "غÙر Ù
Ù
ÙÙ";
- Text[ he ] = "unmöglich";
-};
-String STR_DELETE_UNDO
-{
- Text [ de ] = "Löschen" ;
- Text [ en-US ] = "Delete" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Eliminar";
- Text[ ru ] = "УдалиÑÑ";
- Text[ el ] = "ÎιαγÏαÏή";
- Text[ nl ] = "Wissen";
- Text[ fr ] = "Supprimer";
- Text[ es ] = "Borrar";
- Text[ fi ] = "Poista";
- Text[ ca ] = "Suprimeix";
- Text[ it ] = "Elimina";
- Text[ sk ] = "Zmazať";
- Text[ da ] = "Slet";
- Text[ sv ] = "Radera";
- Text[ pl ] = "UsuÅ";
- Text[ pt-BR ] = "Excluir";
- Text[ th ] = "ลà¸";
- Text[ ja ] = "åé¤";
- Text[ ko ] = "ìì ";
- Text[ zh-CN ] = "å é¤";
- Text[ zh-TW ] = "åªé¤";
- Text[ tr ] = "Sil";
- Text[ hi-IN ] = "मिà¤à¤¾à¤";
- Text[ ar ] = "ØØ°Ù";
- Text[ he ] = "â®×××ק×â¬";
-};
-String STR_INSERT_UNDO
-{
- Text [ de ] = "Einfügen" ;
- Text [ en-US ] = "Insert" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir";
- Text[ ru ] = "ÐÑÑавиÑÑ";
- Text[ el ] = "ÎιÏαγÏγή";
- Text[ nl ] = "Invoegen";
- Text[ fr ] = "Insérer";
- Text[ es ] = "Insertar";
- Text[ fi ] = "Lisää";
- Text[ ca ] = "Insereix";
- Text[ it ] = "Inserisci";
- Text[ sk ] = "Vložiť";
- Text[ da ] = "Indsæt";
- Text[ sv ] = "Infoga";
- Text[ pl ] = "Wstaw";
- Text[ pt-BR ] = "Inserir";
- Text[ th ] = "à¹à¸à¸£à¸";
- Text[ ja ] = "æ¿å
¥";
- Text[ ko ] = "ì½ì
";
- Text[ zh-CN ] = "æå
¥";
- Text[ zh-TW ] = "æå
¥";
- Text[ tr ] = "Ekle";
- Text[ hi-IN ] = "à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج";
- Text[ he ] = "â®××ספ×â¬";
-};
-String STR_OVR_UNDO
-{
- Text [ de ] = "Ãberschreiben" ;
- Text [ en-US ] = "Overwrite" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Substituir";
- Text[ ru ] = "ÐамениÑÑ";
- Text[ el ] = "ÎνÏικαÏάÏÏαÏη";
- Text[ nl ] = "Overschrijven";
- Text[ fr ] = "Ãcraser";
- Text[ es ] = "Sobrescribir";
- Text[ fi ] = "Korvaa";
- Text[ ca ] = "Sobreescriu";
- Text[ it ] = "Sovrascrivi";
- Text[ sk ] = "PrepÃsaÅ¥";
- Text[ da ] = "Overskriv";
- Text[ sv ] = "Skriv över";
- Text[ pl ] = "ZastÄ
p";
- Text[ pt-BR ] = "Sobrescrever";
- Text[ th ] = "à¹à¸à¸µà¸¢à¸à¸à¸±à¸";
- Text[ ja ] = "ä¸æ¸ã";
- Text[ ko ] = "ê²¹ì³ì°ê¸°";
- Text[ zh-CN ] = "æ¹å";
- Text[ zh-TW ] = "è¦å¯«";
- Text[ tr ] = "Ãzerine yaz";
- Text[ hi-IN ] = "à¤à¤µà¤°à¤°à¤à¤à¥";
- Text[ ar ] = "اÙÙتابة ÙÙÙ";
- Text[ he ] = "Ãberschreiben";
-};
-String STR_SPLITNODE_UNDO
-{
- Text [ de ] = "neuer Absatz" ;
- Text [ en-US ] = "New Paragraph" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Novo parágrafo";
- Text[ ru ] = "Ñоздание абзаÑа";
- Text[ el ] = "ÎημιοÏ
Ïγία ÏαÏαγÏάÏοÏ
";
- Text[ nl ] = "Nieuwe alinea";
- Text[ fr ] = "Nouveau paragraphe";
- Text[ es ] = "Párrafo nuevo";
- Text[ fi ] = "Uusi kappale";
- Text[ ca ] = "Parà graf nou";
- Text[ it ] = "Nuovo paragrafo";
- Text[ sk ] = "Nový odstavec";
- Text[ da ] = "nyt afsnit";
- Text[ sv ] = "Nytt stycke";
- Text[ pl ] = "Nowy akapit";
- Text[ pt-BR ] = "Novo Parágrafo";
- Text[ th ] = "ยà¹à¸à¸«à¸à¹à¸²à¹à¸«à¸¡à¹";
- Text[ ja ] = "æ°ãã段è½";
- Text[ ko ] = "ì ë¨ë½";
- Text[ zh-CN ] = "æ°å»ºæ®µè½";
- Text[ zh-TW ] = "æ°å»ºæ®µè½";
- Text[ tr ] = "Yeni paragraf";
- Text[ hi-IN ] = "नया परिà¤à¥à¤à¥à¤¦";
- Text[ ar ] = "ÙÙرة جدÙدة";
- Text[ he ] = "neuer Absatz";
-};
-String STR_MOVE_UNDO
-{
- Text [ de ] = "Verschieben" ;
- Text [ en-US ] = "Move" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Mover";
- Text[ ru ] = "ÐеÑемеÑÑиÑÑ";
- Text[ el ] = "ÎεÏακίνηÏη";
- Text[ nl ] = "Verplaatsen";
- Text[ fr ] = "Déplacer";
- Text[ es ] = "Desplazar";
- Text[ fi ] = "Siirrä";
- Text[ ca ] = "Mou";
- Text[ it ] = "Sposta";
- Text[ sk ] = "Presunúť";
- Text[ da ] = "Flyt";
- Text[ sv ] = "Flytta";
- Text[ pl ] = "PrzesuÅ";
- Text[ pt-BR ] = "Mover";
- Text[ th ] = "ยà¹à¸²à¸¢";
- Text[ ja ] = "移å";
- Text[ ko ] = "ì´ë";
- Text[ zh-CN ] = "移å¨";
- Text[ zh-TW ] = "移å";
- Text[ tr ] = "TaÅı";
- Text[ hi-IN ] = "सà¥à¤¥à¤¾à¤¨ परिवरà¥à¤¤à¤¨ à¤à¤°à¥";
- Text[ ar ] = "إزاØØ©";
- Text[ he ] = "Verschieben";
-};
-String STR_INSATTR_UNDO
-{
- Text [ de ] = "Attribute anwenden" ;
- Text [ en-US ] = "Apply attributes" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Aplicar atributos";
- Text[ ru ] = "ÐÑимениÑÑ Ð°ÑÑибÑÑÑ";
- Text[ el ] = "ÎÏαÏμογή ιδιοÏήÏÏν";
- Text[ nl ] = "Attributen toepassen";
- Text[ fr ] = "Appliquer les attributs";
- Text[ es ] = "Aplicar atributos";
- Text[ fi ] = "Käytä määritteitä";
- Text[ ca ] = "Aplica els atributs";
- Text[ it ] = "Applica attributi";
- Text[ sk ] = "Použiť atribúty";
- Text[ da ] = "Anvend attributter";
- Text[ sv ] = "Använd attribut";
- Text[ pl ] = "Zastosuj atrybuty";
- Text[ pt-BR ] = "Aplicar atributos";
- Text[ th ] = "à¹à¸à¹à¸à¸¸à¸à¸¥à¸±à¸à¸©à¸à¸°";
- Text[ ja ] = "å±æ§ã®é©ç¨";
- Text[ ko ] = "ìì± ì ì©";
- Text[ zh-CN ] = "使ç¨å±æ§";
- Text[ zh-TW ] = "使ç¨å±¬æ§";
- Text[ tr ] = "Ãznitelikleri deÄiÅtir";
- Text[ hi-IN ] = "à¤à¤à¥à¤°à¤¿à¤¬à¥à¤¯à¥à¤à¥à¤¸ लाà¤à¥ à¤à¤°à¥";
- Text[ ar ] = "استخداÙ
اÙسÙ
ات";
- Text[ he ] = "Attribute anwenden";
-};
-String STR_SETFMTCOLL_UNDO
-{
- Text [ de ] = "Vorlagen anwenden" ;
- Text [ en-US ] = "Apply Styles" ;
- Text [ x-comment ] = "; All ; All \"Vorlage\"/Styles are always written with capital S. 10.5.00EM";
- Text[ pt ] = "Aplicar estilos";
- Text[ ru ] = "ÐÑимениÑÑ ÑÑили";
- Text[ el ] = "ÎÏαÏμογή ÏÏοÏÏÏÏν";
- Text[ nl ] = "Opmaakprofielen toepassen";
- Text[ fr ] = "Appliquer les styles";
- Text[ es ] = "Aplicar estilos";
- Text[ fi ] = "Käytä tyylejä";
- Text[ ca ] = "Aplica els estils";
- Text[ it ] = "Applica stili";
- Text[ sk ] = "Použiť štýly";
- Text[ da ] = "Anvend typografi";
- Text[ sv ] = "Använd mallar";
- Text[ pl ] = "Zastosuj style";
- Text[ pt-BR ] = "Aplicar Estilos";
- Text[ th ] = "à¹à¸à¹à¸¥à¸±à¸à¸©à¸à¸°";
- Text[ ja ] = "ã¹ã¿ã¤ã«ã®é©ç¨";
- Text[ ko ] = "ì¤íì¼ ì ì©";
- Text[ zh-CN ] = "使ç¨æ ·å¼";
- Text[ zh-TW ] = "使ç¨æ¨£å¼";
- Text[ tr ] = "Biçim uygula";
- Text[ hi-IN ] = "शà¥à¤²à¤¿à¤¯à¤¾à¤ लाà¤à¥ à¤à¤°à¥";
- Text[ ar ] = "استخداÙ
اÙÙÙ
اذج";
- Text[ he ] = "Vorlagen anwenden";
-};
-String STR_RESET_ATTR_UNDO
-{
- Text [ de ] = "Attribute zurücksetzen" ;
- Text [ en-US ] = "Reset attributes" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Restaurar atributos";
- Text[ ru ] = "ÐоÑÑÑановиÑÑ Ð°ÑÑибÑÑÑ";
- Text[ el ] = "ÎÏαναÏοÏά ιδιοÏήÏÏν";
- Text[ nl ] = "Attributen herstellen";
- Text[ fr ] = "Restaurer les attributs";
- Text[ es ] = "Restablecer atributos";
- Text[ fi ] = "Palauta määritteet";
- Text[ ca ] = "Reinicia els atributs";
- Text[ it ] = "Reimposta attributi";
- Text[ sk ] = "Obnoviť atribúty";
- Text[ da ] = "Nulstil attributter";
- Text[ sv ] = "Ã
terställ attribut";
- Text[ pl ] = "Resetuj atrybuty";
- Text[ pt-BR ] = "Redefinir atributos";
- Text[ th ] = "à¸à¸³à¸«à¸à¸à¸à¸¸à¸à¸¥à¸±à¸à¸©à¸à¸°à¹à¸«à¸¡à¹";
- Text[ ja ] = "å±æ§ã®ãªã»ãã";
- Text[ ko ] = "ìì± ìëëë¡";
- Text[ zh-CN ] = "é设å±æ§";
- Text[ zh-TW ] = "éè¨å±¬æ§";
- Text[ tr ] = "Ãznitelikleri ilk deÄerler al";
- Text[ hi-IN ] = "à¤à¤à¥à¤°à¤¿à¤¬à¥à¤¯à¥à¤à¥à¤¸ रिसà¥à¤à¥à¤ à¤à¤°à¥";
- Text[ ar ] = "إعادة تعÙÙ٠اÙسÙ
ات";
- Text[ he ] = "Attribute zurücksetzen";
-};
-String STR_APPLY_ATTR_UNDO
-{
- Text [ de ] = "Attribute anwenden" ;
- Text [ en-US ] = "Apply attributes" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Aplicar atributos";
- Text[ ru ] = "ÐÑимениÑÑ Ð°ÑÑибÑÑÑ";
- Text[ el ] = "ÎÏαÏμογή ιδιοÏήÏÏν";
- Text[ nl ] = "Attributen toepassen";
- Text[ fr ] = "Appliquer les attributs";
- Text[ es ] = "Aplicar atributos";
- Text[ fi ] = "Käytä määritteitä";
- Text[ ca ] = "Aplica els atributs";
- Text[ it ] = "Applica attributi";
- Text[ sk ] = "Použiť atribúty";
- Text[ da ] = "Anvend attributter";
- Text[ sv ] = "Använd attribut";
- Text[ pl ] = "Zastosuj atrybuty";
- Text[ pt-BR ] = "Aplicar atributos";
- Text[ th ] = "à¹à¸à¹à¸à¸¸à¸à¸¥à¸±à¸à¸©à¸à¸°";
- Text[ ja ] = "å±æ§ã®é©ç¨";
- Text[ ko ] = "ìì± ì ì©";
- Text[ zh-CN ] = "使ç¨å±æ§";
- Text[ zh-TW ] = "使ç¨å±¬æ§";
- Text[ tr ] = "Ãznitelikleri uygula";
- Text[ hi-IN ] = "à¤à¤à¥à¤°à¤¿à¤¬à¥à¤¯à¥à¤à¥à¤¸ लà¤à¤¾à¤";
- Text[ ar ] = "استخداÙ
اÙسÙ
ات";
- Text[ he ] = "Attribute anwenden";
-};
-String STR_INSERT_DOC_UNDO
-{
- Text [ de ] = "Dokument einfügen" ;
- Text [ en-US ] = "Insert Document" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir documento";
- Text[ ru ] = "ÐÑÑавиÑÑ Ð´Ð¾ÐºÑменÑ";
- Text[ el ] = "ÎιÏαγÏγή εγγÏάÏοÏ
";
- Text[ nl ] = "Document invoegen";
- Text[ fr ] = "Insérer un document";
- Text[ es ] = "Insertar documento";
- Text[ fi ] = "Lisää asiakirja";
- Text[ ca ] = "Insereix el document";
- Text[ it ] = "Inserisci documento";
- Text[ sk ] = "Vložiť dokument";
- Text[ da ] = "Indsæt dokument";
- Text[ sv ] = "Infoga dokument";
- Text[ pl ] = "Wstaw dokument";
- Text[ pt-BR ] = "Inserir Documento";
- Text[ th ] = "à¹à¸à¸£à¸à¹à¸à¸à¸ªà¸²à¸£";
- Text[ ja ] = "ããã¥ã¡ã³ãã®æ¿å
¥";
- Text[ ko ] = "문ì ì½ì
";
- Text[ zh-CN ] = "æå
¥ææ¡£";
- Text[ zh-TW ] = "æå
¥æ件";
- Text[ tr ] = "Belge ekle";
- Text[ hi-IN ] = "लà¥à¤à¤ªà¤¤à¥à¤° à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج Ù
ستÙد";
- Text[ he ] = "â®××ספת ×ס××â¬";
-};
-String STR_INSERT_GLOSSARY
-{
- Text [ de ] = "AutoText einfügen" ;
- Text [ en-US ] = "Insert AutoText" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir AutoTexto";
- Text[ ru ] = "ÐÑÑавиÑÑ Ð°Ð²ÑоÑекÑÑ";
- Text[ el ] = "ÎιÏαγÏγή αÏ
ÏÏμαÏοÏ
κειμÎνοÏ
";
- Text[ nl ] = "AutoTekst invoegen";
- Text[ fr ] = "Insérer un AutoTexte";
- Text[ es ] = "Insertar Texto automático";
- Text[ fi ] = "Lisää automaattinen teksti";
- Text[ ca ] = "Insereix el text automà tic";
- Text[ it ] = "Inserisci testo automatico";
- Text[ sk ] = "Vložiť automatický text";
- Text[ da ] = "Indsæt AutoTekst";
- Text[ sv ] = "Infoga AutoText";
- Text[ pl ] = "Wstaw Autotekst";
- Text[ pt-BR ] = "Inserir AutoTexto";
- Text[ th ] = "à¹à¸à¸£à¸à¸à¹à¸à¸à¸§à¸²à¸¡à¸à¸±à¸à¹à¸à¸¡à¸±à¸à¸´";
- Text[ ja ] = "å
¥åæ¯æ´ã®æ¿å
¥";
- Text[ ko ] = "ìë í
ì¤í¸ ì½ì
";
- Text[ zh-CN ] = "æå
¥èªå¨å¾æé";
- Text[ zh-TW ] = "æå
¥èªååæé";
- Text[ tr ] = "Otomatik metin ekle";
- Text[ hi-IN ] = "सà¥à¤µà¤à¤¾à¤²à¤¿à¤¤ à¤à¥à¤à¥à¤¸à¥à¤à¥ à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج Ùص تÙÙائÙ";
- Text[ he ] = "AutoText einfügen";
-};
-String STR_DELBOOKMARK
-{
- Text [ de ] = "Textmarke löschen" ;
- Text [ en-US ] = "Delete bookmark" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Eliminar marcador de texto";
- Text[ ru ] = "УдалиÑÑ Ð·Ð°ÐºÐ»Ð°Ð´ÐºÑ";
- Text[ el ] = "ÎιαγÏαÏή ÏÎ·Î¼Î±Î´Î¹Î¿Ï ÎºÎµÎ¹Î¼ÎνοÏ
";
- Text[ nl ] = "Tekstmarkering verwijderen";
- Text[ fr ] = "Supprimer le repère de texte";
- Text[ es ] = "Borrar marca de texto";
- Text[ fi ] = "Poista kirjanmerkki";
- Text[ ca ] = "Suprimeix l'adreça d'interès";
- Text[ it ] = "Elimina segnalibro";
- Text[ sk ] = "Zmazať záložku";
- Text[ da ] = "Slet tekstmarkering";
- Text[ sv ] = "Radera bokmärke";
- Text[ pl ] = "UsuÅ zakÅadkÄ";
- Text[ pt-BR ] = "Excluir marcador";
- Text[ th ] = "ลà¸à¸à¸±à¸§à¸à¸±à¹à¸";
- Text[ ja ] = "ããã¹ããã¼ã¯ã®åé¤";
- Text[ ko ] = "ì±
ê°í¼ ìì ";
- Text[ zh-CN ] = "å é¤ä¹¦ç¾";
- Text[ zh-TW ] = "åªé¤å
§ææ¨ç±¤";
- Text[ tr ] = "Metin iÅaretini sil";
- Text[ hi-IN ] = "पà¥à¤·à¥à¤ सà¤à¤à¥à¤¤ मिà¤à¤¾à¤ ";
- Text[ ar ] = "Øذ٠إشارة Ù
رجعÙØ©";
- Text[ he ] = "Textmarke löschen";
-};
-String STR_INSBOOKMARK
-{
- Text [ de ] = "Textmarke einfügen" ;
- Text [ en-US ] = "Insert bookmark" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir marcador de texto";
- Text[ ru ] = "ÐÑÑавиÑÑ Ð·Ð°ÐºÐ»Ð°Ð´ÐºÑ";
- Text[ el ] = "ÎιÏαγÏγή ÏÎ·Î¼Î±Î´Î¹Î¿Ï ÎºÎµÎ¹Î¼ÎνοÏ
";
- Text[ nl ] = "Tekstmarkering invoegen";
- Text[ fr ] = "Insérer un repère de texte";
- Text[ es ] = "Insertar marca";
- Text[ fi ] = "Lisää kirjanmerkki";
- Text[ ca ] = "Insereix una adreça d'interès";
- Text[ it ] = "Inserisci segnalibro";
- Text[ sk ] = "Vložiť záložku";
- Text[ da ] = "Indsæt tekstmarkering";
- Text[ sv ] = "Infoga bokmärke";
- Text[ pl ] = "Wstaw zakÅadkÄ";
- Text[ pt-BR ] = "Inserir marcador";
- Text[ th ] = "à¹à¸à¸£à¸à¸à¸±à¸§à¸à¸±à¹à¸";
- Text[ ja ] = "ããã¹ããã¼ã¯ã®æ¿å
¥";
- Text[ ko ] = "ì±
ê°í¼ ì½ì
";
- Text[ zh-CN ] = "æå
¥ä¹¦ç¾";
- Text[ zh-TW ] = "æå
¥å
§ææ¨ç±¤";
- Text[ tr ] = "Metin iÅareti ekle";
- Text[ hi-IN ] = "पà¥à¤·à¥à¤ सà¤à¤à¥à¤¤ à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج إشارة Ù
رجعÙØ©";
- Text[ he ] = "Textmarke einfügen";
-};
-String STR_SORT_TBL
-{
- Text [ de ] = "Tabelle sortieren" ;
- Text [ en-US ] = "Sort table" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Ordenar tabela";
- Text[ ru ] = "СоÑÑиÑовка ÑаблиÑÑ";
- Text[ el ] = "ΤαξινÏμηÏη Ïίνακα";
- Text[ nl ] = "Tabel sorteren";
- Text[ fr ] = "Trier le tableau";
- Text[ es ] = "Ordenar tabla";
- Text[ fi ] = "Lajittele taulukko";
- Text[ ca ] = "Ordena la taula";
- Text[ it ] = "Ordina tabella";
- Text[ sk ] = "Zoradiť tabuľku";
- Text[ da ] = "Sorter tabel";
- Text[ sv ] = "Sortera tabell";
- Text[ pl ] = "Sortuj tabelÄ";
- Text[ pt-BR ] = "Ordenar tabela";
- Text[ th ] = "à¹à¸£à¸µà¸¢à¸à¸à¸²à¸£à¸²à¸";
- Text[ ja ] = "表ã®ä¸¦ã¹æ¿ã";
- Text[ ko ] = "í ì ë ¬";
- Text[ zh-CN ] = "æåºè¡¨æ ¼";
- Text[ zh-TW ] = "æåºè¡¨æ ¼";
- Text[ tr ] = "Tabloyu sırala";
- Text[ hi-IN ] = "सारणॠसà¥à¤°à¥à¤ à¤à¤°à¥";
- Text[ ar ] = "Ùرز اÙجدÙÙ";
- Text[ he ] = "Tabelle sortieren";
-};
-String STR_SORT_TXT
-{
- Text [ de ] = "Text sortieren" ;
- Text [ en-US ] = "Sort text" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Ordenar texto";
- Text[ ru ] = "СоÑÑиÑовка ÑекÑÑа";
- Text[ el ] = "ΤαξινÏμηÏη κειμÎνοÏ
";
- Text[ nl ] = "Tekst sorteren";
- Text[ fr ] = "Trier le texte";
- Text[ es ] = "Ordenar texto";
- Text[ fi ] = "Lajittele teksti";
- Text[ ca ] = "Ordena el text";
- Text[ it ] = "Ordina testo";
- Text[ sk ] = "Radiť text";
- Text[ da ] = "Sorter tekst";
- Text[ sv ] = "Sortera text";
- Text[ pl ] = "Sortuj tekst";
- Text[ pt-BR ] = "Ordenar texto";
- Text[ th ] = "à¹à¸£à¸µà¸¢à¸à¸à¹à¸à¸à¸§à¸²à¸¡";
- Text[ ja ] = "ããã¹ãã®ä¸¦ã¹æ¿ã";
- Text[ ko ] = "í
ì¤í¸ ì ë ¬";
- Text[ zh-CN ] = "æåºæå";
- Text[ zh-TW ] = "æåºæå";
- Text[ tr ] = "Metni sırala";
- Text[ hi-IN ] = "à¤à¥à¤à¥à¤¸à¥à¤à¥ सà¥à¤°à¥à¤ à¤à¤°à¥";
- Text[ ar ] = "Ùرز اÙÙص";
- Text[ he ] = "Text sortieren";
-};
-String STR_INSTABLE_UNDO
-{
- Text [ de ] = "Tabelle einfügen" ;
- Text [ en-US ] = "Insert Table" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir tabela";
- Text[ ru ] = "ÐÑÑавиÑÑ ÑаблиÑÑ";
- Text[ el ] = "ÎιÏαγÏγή Ïίνακα";
- Text[ nl ] = "Tabel invoegen";
- Text[ fr ] = "Insérer un tableau";
- Text[ es ] = "Insertar tabla";
- Text[ fi ] = "Lisää taulukko";
- Text[ ca ] = "Insereix una taula";
- Text[ it ] = "Inserisci tabella";
- Text[ sk ] = "Vložiť tabuľku";
- Text[ da ] = "Indsæt tabel";
- Text[ sv ] = "Infoga tabell";
- Text[ pl ] = "Wstaw tabelÄ";
- Text[ pt-BR ] = "Inserir Tabela";
- Text[ th ] = "à¹à¸à¸£à¸à¸à¸²à¸£à¸²à¸";
- Text[ ja ] = "表ã®æ¿å
¥";
- Text[ ko ] = "í ì½ì
";
- Text[ zh-CN ] = "æå
¥è¡¨æ ¼";
- Text[ zh-TW ] = "æå
¥è¡¨æ ¼";
- Text[ tr ] = "Tablo ekle";
- Text[ hi-IN ] = "सारणॠà¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج جدÙÙ";
- Text[ he ] = "â®××ספת ××××â¬";
-};
-String STR_TEXTTOTABLE_UNDO
-{
- Text [ de ] = "Konvertierung Text -> Tabelle" ;
- Text [ en-US ] = "Convert text -> table" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Converter texto -> tabela";
- Text[ ru ] = "ÐÑеобÑазоваÑÑ ÑекÑÑ Ð² ÑаблиÑÑ";
- Text[ el ] = "ÎεÏαÏÏοÏή Îείμενο -> ΠίνακαÏ";
- Text[ nl ] = "Tekst naar tabel converteren";
- Text[ fr ] = "Conversion de texte en tableau";
- Text[ es ] = "Convertir texto en tabla";
- Text[ fi ] = "Muunna teksti -> taulukko";
- Text[ ca ] = "Converteix text -> taula";
- Text[ it ] = "Converti testo in tabella.";
- Text[ sk ] = "Previesť text na tabuľku";
- Text[ da ] = "Konverter tekst til tabel";
- Text[ sv ] = "Konvertera text till tabell";
- Text[ pl ] = "Konwertuj tekst na tabelÄ";
- Text[ pt-BR ] = "Converter texto -> tabela";
- Text[ th ] = "à¹à¸à¸¥à¸à¸à¹à¸à¸à¸§à¸²à¸¡ -> à¸à¸²à¸£à¸²à¸";
- Text[ ja ] = "ææ¸ã表ã«å¤æ";
- Text[ ko ] = "í
ì¤í¸ë¥¼ íë¡ ë³í";
- Text[ zh-CN ] = "æå转æ¢æè¡¨æ ¼";
- Text[ zh-TW ] = "æåè½ææè¡¨æ ¼";
- Text[ tr ] = "Metni tabloya dönüÅtür";
- Text[ hi-IN ] = "à¤à¥à¤à¥à¤¸à¥à¤à¥ बदलॠ-> सारणà¥";
- Text[ ar ] = "تØÙÙÙ Ùص -> جدÙÙ";
- Text[ he ] = "Konvertierung Text -> Tabelle";
-};
-String STR_TABLETOTEXT_UNDO
-{
- Text [ de ] = "Konvertierung Tabelle -> Text" ;
- Text [ en-US ] = "Convert table to text" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Converter tabela -> texto";
- Text[ ru ] = "ÐÑеобÑазоваÑÑ ÑаблиÑÑ Ð² ÑекÑÑ";
- Text[ el ] = "ÎεÏαÏÏοÏή Î Î¯Î½Î±ÎºÎ±Ï -> Îείμενο";
- Text[ nl ] = "Tabel naar tekst converteren";
- Text[ fr ] = "Convertir le tableau en texte";
- Text[ es ] = "Convertir tabla en texto";
- Text[ fi ] = "Muunna taulukko tekstiksi";
- Text[ ca ] = "Converteix la taula en text";
- Text[ it ] = "Converti tabella in testo";
- Text[ sk ] = "Previesť tabuľku na text";
- Text[ da ] = "Konverter tabel til tekst";
- Text[ sv ] = "Konvertera tabell till text";
- Text[ pl ] = "Konwertuj tabelÄ na tekst";
- Text[ pt-BR ] = "Converter tabela em texto";
- Text[ th ] = "à¹à¸à¸¥à¸à¸à¸²à¸£à¸²à¸à¹à¸à¹à¸à¸à¹à¸à¸à¸§à¸²à¸¡";
- Text[ ja ] = "表ãææ¸ã«å¤æ";
- Text[ ko ] = "í를 í
ì¤í¸ë¡ ë³í";
- Text[ zh-CN ] = "è¡¨æ ¼è½¬æ¢ææå";
- Text[ zh-TW ] = "è¡¨æ ¼è½æææå";
- Text[ tr ] = "Tabloyu metne dönüÅtür";
- Text[ hi-IN ] = "सारणॠà¤à¥ à¤à¥à¤à¥à¤¸à¥à¤à¥ मà¥à¤ बदलà¥";
- Text[ ar ] = "تØÙÙ٠اÙجدÙ٠إÙÙ Ùص";
- Text[ he ] = "Konvertierung Tabelle -> Text";
-};
-String STR_COPY_UNDO
-{
- Text [ de ] = "Kopieren" ;
- Text [ en-US ] = "Copy" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Copiar";
- Text[ ru ] = "ÐопиÑоваÑÑ";
- Text[ el ] = "ÎνÏιγÏαÏή";
- Text[ nl ] = "Kopiëren";
- Text[ fr ] = "Copier";
- Text[ es ] = "Copiar";
- Text[ fi ] = "Kopioi";
- Text[ ca ] = "Copia";
- Text[ it ] = "Copia";
- Text[ sk ] = "Kópia";
- Text[ da ] = "Kopier";
- Text[ sv ] = "Kopiera";
- Text[ pl ] = "Kopiuj";
- Text[ pt-BR ] = "Copiar";
- Text[ th ] = "à¸à¸±à¸à¸¥à¸à¸";
- Text[ ja ] = "ã³ãã¼";
- Text[ ko ] = "ë³µì¬";
- Text[ zh-CN ] = "å¤å¶";
- Text[ zh-TW ] = "è¤è£½";
- Text[ tr ] = "Kopyala";
- Text[ hi-IN ] = "पà¥à¤°à¤¤à¤¿à¤²à¤¿à¤ªà¤¿";
- Text[ ar ] = "Ùسخ";
- Text[ he ] = "â®×עתק×â¬";
-};
-String STR_REPLACE_UNDO
-{
- Text [ de ] = "Ersetzen" ;
- Text [ en-US ] = "Replace" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Substituir";
- Text[ ru ] = "ÐамениÑÑ";
- Text[ el ] = "ÎνÏικαÏάÏÏαÏη";
- Text[ nl ] = "Vervangen";
- Text[ fr ] = "Remplacer";
- Text[ es ] = "Reemplazar";
- Text[ fi ] = "Korvaa";
- Text[ ca ] = "Reemplaça";
- Text[ it ] = "Sostituisci";
- Text[ sk ] = "Nahradiť";
- Text[ da ] = "Erstat";
- Text[ sv ] = "Ersätt";
- Text[ pl ] = "ZamieÅ";
- Text[ pt-BR ] = "Substituir";
- Text[ th ] = "à¹à¸à¸à¸à¸µà¹";
- Text[ ja ] = "ç½®æ";
- Text[ ko ] = "ë°ê¾¸ê¸°";
- Text[ zh-CN ] = "æ¿æ¢";
- Text[ zh-TW ] = "代æ¿";
- Text[ tr ] = "DeÄiÅtir";
- Text[ hi-IN ] = "पà¥à¤°à¤¤à¤¿à¤¸à¥à¤¥à¤¾à¤ªà¤¨";
- Text[ ar ] = "استبداÙ";
- Text[ he ] = "â®×××פ×â¬";
-};
-String STR_INSERT_PAGE_BREAK_UNDO
-{
- Text [ de ] = "Harter Seitenumbruch" ;
- Text [ en-US ] = "Direct page break" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Quebra de página fixa";
- Text[ ru ] = "ÐеÑÑкий ÑазÑÑв ÑÑÑаниÑ";
- Text[ el ] = "ÎνÏονη αλλαγή ÏελίδαÏ";
- Text[ nl ] = "Vast pagina-einde";
- Text[ fr ] = "Saut de page direct";
- Text[ es ] = "Salto fijo de página";
- Text[ fi ] = "Suora sivunvaihto";
- Text[ ca ] = "Salt de pà gina directe";
- Text[ it ] = "Interruzione di pagina fissa";
- Text[ sk ] = "Priame zalomenie strany";
- Text[ da ] = "HÃ¥rdt sideskift";
- Text[ sv ] = "HÃ¥rd sidbrytning";
- Text[ pl ] = "Twardy podziaÅ strony";
- Text[ pt-BR ] = "Quebra de página direta";
- Text[ th ] = "à¹à¸à¹à¸à¸«à¸à¹à¸²à¹à¸à¸¢à¸à¸£à¸";
- Text[ ja ] = "ä»»ææå®ã®æ¹ãã¼ã¸";
- Text[ ko ] = "ìë íì´ì§ ëë기";
- Text[ zh-CN ] = "æå·¥æ¢é¡µ";
- Text[ zh-TW ] = "æåæé ";
- Text[ tr ] = "Sabit sayfa sonu";
- Text[ hi-IN ] = "सà¥à¤§à¤¾ पà¥à¤·à¥à¤ à¤à¤£à¥à¤¡à¤¨";
- Text[ ar ] = "Ùاص٠صÙØات ÙدÙÙ";
- Text[ he ] = "Harter Seitenumbruch";
-};
-String STR_INSERT_COLUMN_BREAK_UNDO
-{
- Text [ de ] = "Harter Spaltenumbruch" ;
- Text [ en-US ] = "Direct column break" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Quebra de coluna fixa";
- Text[ ru ] = "ÐеÑÑкий ÑазÑÑв колонок";
- Text[ el ] = "ÎνÏονη αλλαγή ÏÏήληÏ";
- Text[ nl ] = "Vast kolomeinde";
- Text[ fr ] = "Saut de colonne direct";
- Text[ es ] = "Salto de columna directo";
- Text[ fi ] = "Suora sarakkeenvaihto";
- Text[ ca ] = "Salt de columna directe";
- Text[ it ] = "Interruzione di colonna fissa";
- Text[ sk ] = "Priame zalomenie stĺpca";
- Text[ da ] = "HÃ¥rdt spalteskift";
- Text[ sv ] = "HÃ¥rd kolumnbrytning";
- Text[ pl ] = "Twardy podziaÅ kolumny";
- Text[ pt-BR ] = "Quebra de coluna direta";
- Text[ th ] = "à¹à¸à¹à¸à¸à¸à¸¥à¸±à¸¡à¸à¹à¹à¸à¸¢à¸à¸£à¸";
- Text[ ja ] = "ä»»ææå®ã®æ¹å";
- Text[ ko ] = "ìë ì´ ëë기";
- Text[ zh-CN ] = "æå·¥æ¢å";
- Text[ zh-TW ] = "æåææ¬";
- Text[ tr ] = "Sabit sütun sonu";
- Text[ hi-IN ] = "सà¥à¤§à¤¾ सà¥à¤¤à¤à¤ à¤à¤£à¥à¤¡à¤¨";
- Text[ ar ] = "Ùاص٠أعÙ
دة ÙدÙÙ";
- Text[ he ] = "Harter Spaltenumbruch";
-};
-String STR_PLAY_MACRO_UNDO
-{
- Text [ de ] = "Makro abspielen" ;
- Text [ en-US ] = "Run macro" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Executar macro";
- Text[ ru ] = "ÐÑполниÑÑ Ð¼Ð°ÐºÑоÑ";
- Text[ el ] = "ÎκÏÎλεÏη μακÏοενÏολήÏ";
- Text[ nl ] = "Macro starten";
- Text[ fr ] = "Exécuter la macro";
- Text[ es ] = "Reproducir macro";
- Text[ fi ] = "Suorita makro";
- Text[ ca ] = "Executa la macro";
- Text[ it ] = "Esegui macro";
- Text[ sk ] = "Spustiť makro";
- Text[ da ] = "Spil makro";
- Text[ sv ] = "Spela upp makro";
- Text[ pl ] = "Uruchom makro";
- Text[ pt-BR ] = "Executar macro";
- Text[ th ] = "à¹à¸à¹à¸à¸²à¸à¸¡à¸²à¹à¸à¸£";
- Text[ ja ] = "ãã¯ãã®å®è¡";
- Text[ ko ] = "매í¬ë¡ ì¤í";
- Text[ zh-CN ] = "æ§è¡å®";
- Text[ zh-TW ] = "å·è¡å·¨é";
- Text[ tr ] = "Makroyu çalıÅtır";
- Text[ hi-IN ] = "मà¥à¤à¥à¤°à¥ à¤à¤²à¤¾à¤";
- Text[ ar ] = "تÙÙÙØ° اÙÙ
اÙرÙ";
- Text[ he ] = "Makro abspielen";
-};
-String STR_INSERT_ENV_UNDO
-{
- Text [ de ] = "Briefumschlag einfügen" ;
- Text [ en-US ] = "Insert Envelope" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir envelope";
- Text[ ru ] = "ÐÑÑавиÑÑ ÐºÐ¾Ð½Ð²ÐµÑÑ";
- Text[ el ] = "ÎιÏαγÏγή ÏακÎλοÏ
εÏιÏÏολήÏ";
- Text[ nl ] = "Envelop invoegen";
- Text[ fr ] = "Insérer une enveloppe";
- Text[ es ] = "Insertar sobre";
- Text[ fi ] = "Lisää kirjekuori";
- Text[ ca ] = "Insereix el sobre";
- Text[ it ] = "Inserisci busta";
- Text[ sk ] = "Vložiť obálku";
- Text[ da ] = "Indsæt konvolut";
- Text[ sv ] = "Infoga kuvert";
- Text[ pl ] = "Wstaw kopertÄ";
- Text[ pt-BR ] = "Inserir Envelope";
- Text[ th ] = "à¹à¸à¸£à¸à¸à¸à¸à¸à¸à¸«à¸¡à¸²à¸¢";
- Text[ ja ] = "å°çã®æ¿å
¥";
- Text[ ko ] = "í¸ì§ë´í¬ ì½ì
";
- Text[ zh-CN ] = "æå
¥ä¿¡å°";
- Text[ zh-TW ] = "æå
¥ä¿¡å°";
- Text[ tr ] = "Zarf ekle";
- Text[ hi-IN ] = "लिफाफा à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج ظرÙ";
- Text[ he ] = "â®××ספת ××¢×פ×â¬";
-};
-String STR_DRAG_AND_COPY
-{
- Text [ de ] = "Kopieren" ;
- Text [ en-US ] = "Copy" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Copiar";
- Text[ ru ] = "ÐопиÑоваÑÑ";
- Text[ el ] = "ÎνÏιγÏαÏή";
- Text[ nl ] = "Kopiëren";
- Text[ fr ] = "Copier";
- Text[ es ] = "Copiar";
- Text[ fi ] = "Kopioi";
- Text[ ca ] = "Copia";
- Text[ it ] = "Copia";
- Text[ sk ] = "Kópia";
- Text[ da ] = "Kopier";
- Text[ sv ] = "Kopiera";
- Text[ pl ] = "Kopiuj";
- Text[ pt-BR ] = "Copiar";
- Text[ th ] = "à¸à¸±à¸à¸¥à¸à¸";
- Text[ ja ] = "ã³ãã¼ãã";
- Text[ ko ] = "ë³µì¬";
- Text[ zh-CN ] = "å¤å¶";
- Text[ zh-TW ] = "è¤è£½";
- Text[ tr ] = "Kopyala";
- Text[ hi-IN ] = "पà¥à¤°à¤¤à¤¿à¤²à¤¿à¤ªà¤¿";
- Text[ ar ] = "Ùسخ";
- Text[ he ] = "â®×עתק×â¬";
-};
-String STR_DRAG_AND_MOVE
-{
- Text [ de ] = "Verschieben" ;
- Text [ en-US ] = "Move" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Mover";
- Text[ ru ] = "ÐеÑемеÑÑиÑÑ";
- Text[ el ] = "ÎεÏακίνηÏη";
- Text[ nl ] = "Verplaatsen";
- Text[ fr ] = "Déplacer";
- Text[ es ] = "Desplazar";
- Text[ fi ] = "Siirrä";
- Text[ ca ] = "Mou";
- Text[ it ] = "Spostare";
- Text[ sk ] = "Presunúť";
- Text[ da ] = "Flyt";
- Text[ sv ] = "Flytta";
- Text[ pl ] = "PrzesuÅ";
- Text[ pt-BR ] = "Mover";
- Text[ th ] = "ยà¹à¸²à¸¢";
- Text[ ja ] = "移åãã";
- Text[ ko ] = "ì´ë";
- Text[ zh-CN ] = "移å¨";
- Text[ zh-TW ] = "移å";
- Text[ tr ] = "TaÅı";
- Text[ hi-IN ] = "सà¥à¤¥à¤¾à¤¨ परिवरà¥à¤¤à¤¨ à¤à¤°à¥";
- Text[ ar ] = "إزاØØ©";
- Text[ he ] = "Verschieben";
-};
-String STR_INSERT_RULER
-{
- Text [ de ] = "Ruler einfügen" ;
- Text [ en-US ] = "Insert ruler" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir régua";
- Text[ ru ] = "ÐÑÑавиÑÑ Ð»Ð¸Ð½ÐµÐ¹ÐºÑ ÑазмеÑки";
- Text[ el ] = "ÎιÏαγÏγή ÏάÏακα";
- Text[ nl ] = "Liniaal invoegen";
- Text[ fr ] = "Insérer une règle";
- Text[ es ] = "Insertar regla";
- Text[ fi ] = "Lisää viivain";
- Text[ ca ] = "Insereix el regle";
- Text[ it ] = "Inserisci ruler";
- Text[ sk ] = "VložiÅ¥ pravÃtko";
- Text[ da ] = "Indsæt lineal";
- Text[ sv ] = "Infoga linjal";
- Text[ pl ] = "Wstaw linijkÄ";
- Text[ pt-BR ] = "Inserir régua";
- Text[ th ] = "à¹à¸à¸£à¸à¹à¸¡à¹à¸à¸£à¸£à¸à¸±à¸";
- Text[ ja ] = "ã«ã¼ã©ã®æ¿å
¥";
- Text[ ko ] = "ëê¸ì ì½ì
";
- Text[ zh-CN ] = "æå
¥æ å°º";
- Text[ zh-TW ] = "æå
¥æ¨å°º";
- Text[ tr ] = "Cetvel ekle";
- Text[ hi-IN ] = "रà¥à¤²à¤° à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج Ù
سطرة";
- Text[ he ] = "Ruler einfügen";
-};
-String STR_INSERT_CHART
-{
- Text [ de ] = "%PRODUCTNAME Chart einfügen" ;
- Text [ en-US ] = "Insert %PRODUCTNAME Chart" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir %PRODUCTNAME Chart";
- Text[ ru ] = "ÐÑÑавиÑÑ %PRODUCTNAME Chart";
- Text[ el ] = "ÎιÏαγÏγή διαγÏάμμαÏÎ¿Ï %PRODUCTNAME";
- Text[ nl ] = "%PRODUCTNAME Chart invoegen";
- Text[ fr ] = "Insérer un diagramme %PRODUCTNAME Chart";
- Text[ es ] = "Insertar un diagrama de %PRODUCTNAME Chart";
- Text[ fi ] = "Lisää %PRODUCTNAME-kaavio";
- Text[ ca ] = "Insereix el %PRODUCTNAME Chart";
- Text[ it ] = "Inserisci %PRODUCTNAME Chart";
- Text[ sk ] = "Vložiť graf %PRODUCTNAME";
- Text[ da ] = "Indsæt %PRODUCTNAME Chart";
- Text[ sv ] = "Infoga %PRODUCTNAME Chart";
- Text[ pl ] = "Wstaw wykres %PRODUCTNAME Chart";
- Text[ pt-BR ] = "Inserir gráfico do %PRODUCTNAME Chart";
- Text[ th ] = "à¹à¸à¸£à¸à¹à¸à¸à¸ ูมิ %PRODUCTNAME ";
- Text[ ja ] = "%PRODUCTNAME Chart ã®æ¿å
¥";
- Text[ ko ] = "%PRODUCTNAME Chart ì½ì
";
- Text[ zh-CN ] = "æå
¥ %PRODUCTNAME å¾è¡¨";
- Text[ zh-TW ] = "æå
¥ %PRODUCTNAME å表";
- Text[ tr ] = "%PRODUCTNAME GrafiÄi Ekle";
- Text[ hi-IN ] = "%PRODUCTNAME à¤à¤¾à¤°à¥à¤ à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج %PRODUCTNAME Chart";
- Text[ he ] = "%PRODUCTNAME Chart einfügen";
-};
-String STR_INSERTFLY
-{
- Text [ de ] = "Rahmen einfügen" ;
- Text [ en-US ] = "Insert frame" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir moldura";
- Text[ ru ] = "ÐÑÑавиÑÑ ÑамкÑ";
- Text[ el ] = "ÎιÏαγÏγή ÏλαιÏίοÏ
";
- Text[ nl ] = "Kader invoegen";
- Text[ fr ] = "Insérer un cadre";
- Text[ es ] = "Insertar marco";
- Text[ fi ] = "Lisää kehys";
- Text[ ca ] = "Insereix un marc";
- Text[ it ] = "Inserisci cornice";
- Text[ sk ] = "Vložiť rámec";
- Text[ da ] = "Indsæt ramme";
- Text[ sv ] = "Infoga ram";
- Text[ pl ] = "Wstaw ramkÄ";
- Text[ pt-BR ] = "Inserir moldura";
- Text[ th ] = "à¹à¸à¸£à¸à¸à¸£à¸à¸";
- Text[ ja ] = "æ ã®æ¿å
¥";
- Text[ ko ] = "íë ì ì½ì
";
- Text[ zh-CN ] = "æå
¥æ¡å¯¹è±¡";
- Text[ zh-TW ] = "æå
¥æ¡ç©ä»¶";
- Text[ tr ] = "Ãerçeve ekle";
- Text[ hi-IN ] = "फà¥à¤°à¥à¤® à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج Ùادر";
- Text[ he ] = "Rahmen einfügen";
-};
-String STR_DELETEFLY
-{
- Text [ de ] = "Rahmen löschen" ;
- Text [ en-US ] = "Delete frame" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Eliminar moldura";
- Text[ ru ] = "УдалиÑÑ ÑамкÑ";
- Text[ el ] = "ÎιαγÏαÏή ÏλαιÏίοÏ
";
- Text[ nl ] = "Kader wissen";
- Text[ fr ] = "Supprimer le cadre";
- Text[ es ] = "Borrar el marco";
- Text[ fi ] = "Poista kehys";
- Text[ ca ] = "Suprimeix el marc";
- Text[ it ] = "Elimina cornice";
- Text[ sk ] = "OdstrániÅ¥ ohraniÄenie";
- Text[ da ] = "Slet ramme";
- Text[ sv ] = "Radera ram";
- Text[ pl ] = "UsuÅ ramkÄ";
- Text[ pt-BR ] = "Excluir moldura";
- Text[ th ] = "ลà¸à¸à¸£à¸à¸";
- Text[ ja ] = "æ ã®åé¤";
- Text[ ko ] = "íë ì ìì ";
- Text[ zh-CN ] = "å é¤æ¡å¯¹è±¡";
- Text[ zh-TW ] = "åªé¤æ¡ç©ä»¶";
- Text[ tr ] = "Ãerçeveyi sil";
- Text[ hi-IN ] = "फà¥à¤°à¥à¤® मिà¤à¤¾à¤";
- Text[ ar ] = "ØØ°Ù Ùادر";
- Text[ he ] = "Rahmen löschen";
-};
-String STR_AUTOFORMAT
-{
- Text [ de ] = "AutoFormat" ;
- Text [ en-US ] = "AutoFormat" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "AutoFormato";
- Text[ ru ] = "ÐвÑоÑоÑмаÑ";
- Text[ el ] = "ÎÏ
ÏÏμαÏη μοÏÏοÏοίηÏη";
- Text[ nl ] = "AutoOpmaak";
- Text[ fr ] = "AutoFormat";
- Text[ es ] = "Formateado automático";
- Text[ fi ] = "Automaattinen muotoilu";
- Text[ ca ] = "Formatatge automà tic";
- Text[ it ] = "Formattazione automatica";
- Text[ sk ] = "Automatický formát";
- Text[ da ] = "AutoFormat";
- Text[ sv ] = "Autoformat";
- Text[ pl ] = "Autoformatowanie";
- Text[ pt-BR ] = "AutoFormatação";
- Text[ th ] = "รูà¸à¹à¸à¸à¸à¸±à¸à¹à¸à¸¡à¸±à¸à¸´";
- Text[ ja ] = "ãªã¼ããã©ã¼ããã";
- Text[ ko ] = "ìë ìì";
- Text[ zh-CN ] = "èªå¨æ ¼å¼";
- Text[ zh-TW ] = "èªåæ ¼å¼";
- Text[ tr ] = "Otomatik formatlama";
- Text[ hi-IN ] = "सà¥à¤µà¤à¤¾à¤²à¤¿à¤¤ रà¤à¤¨à¤¾";
- Text[ ar ] = "تÙسÙ٠تÙÙائÙ";
- Text[ he ] = "â®×¢×צ×× ×××××××â¬";
-};
-String STR_TABLEHEADLINE
-{
- Text [ de ] = "Tabellenüberschrift" ;
- Text [ en-US ] = "Table heading" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "TÃtulo da tabela";
- Text[ ru ] = "Ðаголовок ÑаблиÑÑ";
- Text[ el ] = "ÎÏικεÏαλίδα Ïίνακα";
- Text[ nl ] = "Tabelkop";
- Text[ fr ] = "Titre de la table";
- Text[ es ] = "Encabezado de la tabla";
- Text[ fi ] = "Taulukon otsikko";
- Text[ ca ] = "Encapçalament de la taula";
- Text[ it ] = "Intestazione tabella";
- Text[ sk ] = "Nadpis tabuľky";
- Text[ da ] = "Tabeloverskrift";
- Text[ sv ] = "Tabellöverskrift";
- Text[ pl ] = "NagÅówek tabeli";
- Text[ pt-BR ] = "TÃtulo de tabela";
- Text[ th ] = "หัวà¸à¹à¸à¸à¸²à¸£à¸²à¸";
- Text[ ja ] = "表ã®è¦åºã";
- Text[ ko ] = "í ì 목";
- Text[ zh-CN ] = "è¡¨æ ¼æ é¢";
- Text[ zh-TW ] = "è¡¨æ ¼æ¨é¡";
- Text[ tr ] = "Tablo baÅlıÄı";
- Text[ hi-IN ] = "सारणॠशà¥à¤°à¥à¤·à¤";
- Text[ ar ] = "عÙÙا٠اÙجدÙÙ";
- Text[ he ] = "Tabellenüberschrift";
-};
-String STR_REPLACE
-{
- Text [ de ] = "Ersetzen" ;
- Text [ en-US ] = "Replace" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Substituir";
- Text[ ru ] = "ÐамениÑÑ";
- Text[ el ] = "ÎνÏικαÏάÏÏαÏη";
- Text[ nl ] = "Vervangen";
- Text[ fr ] = "Remplacer";
- Text[ es ] = "Reemplazar";
- Text[ fi ] = "Korvaa";
- Text[ ca ] = "Reemplaça";
- Text[ it ] = "Sostituisci";
- Text[ sk ] = "Nahradiť";
- Text[ da ] = "Erstat";
- Text[ sv ] = "Ersätt";
- Text[ pl ] = "ZamieÅ";
- Text[ pt-BR ] = "Substituir";
- Text[ th ] = "à¹à¸à¸à¸à¸µà¹";
- Text[ ja ] = "ç½®æ";
- Text[ ko ] = "ë°ê¾¸ê¸°";
- Text[ zh-CN ] = "æ¿æ¢";
- Text[ zh-TW ] = "代æ¿";
- Text[ tr ] = "DeÄiÅtir";
- Text[ hi-IN ] = "पà¥à¤°à¤¤à¤¿à¤¸à¥à¤¥à¤¾à¤ªà¤¨";
- Text[ ar ] = "استبداÙ";
- Text[ he ] = "â®×××פ×â¬";
-};
-String STR_INSERTSECTION
-{
- Text [ de ] = "Bereich einfügen" ;
- Text [ en-US ] = "Insert section" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir secção";
- Text[ ru ] = "ÐÑÑавиÑÑ Ñаздел";
- Text[ el ] = "ÎιÏαγÏγή ενÏÏηÏαÏ";
- Text[ nl ] = "Bereik invoegen";
- Text[ fr ] = "Insérer une section";
- Text[ es ] = "Insertar una sección";
- Text[ fi ] = "Lisää osa";
- Text[ ca ] = "Insereix una secció";
- Text[ it ] = "Inserisci area";
- Text[ sk ] = "Vložiť oblasť";
- Text[ da ] = "Indsæt område";
- Text[ sv ] = "Infoga område";
- Text[ pl ] = "Wstaw sekcjÄ";
- Text[ pt-BR ] = "Inserir seção";
- Text[ th ] = "à¹à¸à¸£à¸à¸ªà¹à¸§à¸";
- Text[ ja ] = "ç¯å²ã®æ¿å
¥";
- Text[ ko ] = "구ì ì½ì
";
- Text[ zh-CN ] = "æå
¥åºå";
- Text[ zh-TW ] = "æå
¥åå";
- Text[ tr ] = "Bölüm ekle";
- Text[ hi-IN ] = "विà¤à¤¾à¤ à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج ÙطاÙ";
- Text[ he ] = "Bereich einfügen";
-};
-String STR_DELETESECTION
-{
- Text [ de ] = "Bereich löschen" ;
- Text [ en-US ] = "Delete section" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Eliminar categoria";
- Text[ ru ] = "УдалиÑÑ Ñаздел";
- Text[ el ] = "ÎιαγÏαÏή ενÏÏηÏαÏ";
- Text[ nl ] = "Bereik wissen";
- Text[ fr ] = "Supprimer la section";
- Text[ es ] = "Borrar sección";
- Text[ fi ] = "Poista osa";
- Text[ ca ] = "Suprimeix una secció";
- Text[ it ] = "Elimina area";
- Text[ sk ] = "Odstrániť sekciu";
- Text[ da ] = "Slet område";
- Text[ sv ] = "Radera kategori";
- Text[ pl ] = "UsuÅ sekcjÄ";
- Text[ pt-BR ] = "Excluir seção";
- Text[ th ] = "ลà¸à¸ªà¹à¸§à¸";
- Text[ ja ] = "ç¯å²ã®åé¤";
- Text[ ko ] = "구ì ìì ";
- Text[ zh-CN ] = "å é¤åºå";
- Text[ zh-TW ] = "åªé¤åå";
- Text[ tr ] = "Bölümü sil";
- Text[ hi-IN ] = "विà¤à¤¾à¤ मिà¤à¤¾à¤";
- Text[ ar ] = "Øذ٠اÙÙئة";
- Text[ he ] = "Bereich löschen";
-};
-String STR_CHANGESECTION
-{
- Text [ de ] = "Bereich ändern" ;
- Text [ en-US ] = "Modify section" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Alterar secção";
- Text[ ru ] = "ÐзмениÑÑ Ñаздел";
- Text[ el ] = "ΤÏοÏοÏοίηÏη ενÏÏηÏαÏ";
- Text[ nl ] = "Bereik wijzigen";
- Text[ fr ] = "Ãditer la section";
- Text[ es ] = "Modificar la sección";
- Text[ fi ] = "Muokkaa osaa";
- Text[ ca ] = "Modifica la secció";
- Text[ it ] = "Cambia area";
- Text[ sk ] = "Upraviť sekciu";
- Text[ da ] = "Modificer område";
- Text[ sv ] = "Ãndra omrÃ¥de";
- Text[ pl ] = "Modyfikuj sekcjÄ";
- Text[ pt-BR ] = "Modificar seção";
- Text[ th ] = "à¸à¸±à¸à¹à¸à¸¥à¸à¸ªà¹à¸§à¸";
- Text[ ja ] = "ç¯å²ã®å¤æ´";
- Text[ ko ] = "구ì ìì ";
- Text[ zh-CN ] = "æ´æ¹åºå";
- Text[ zh-TW ] = "è®æ´åå";
- Text[ tr ] = "Bölümü deÄiÅtir";
- Text[ hi-IN ] = "विà¤à¤¾à¤ सà¥à¤§à¤¾à¤°à¥";
- Text[ ar ] = "تعدÙ٠اÙÙطاÙ";
- Text[ he ] = "Bereich ändern";
-};
-String STR_CHANGESECTPASSWD
-{
- Text [ de ] = "Passwortschutz ändern" ;
- Text [ en-US ] = "Change password protection" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Alterar protecção da senha";
- Text[ ru ] = "ÐзмениÑÑ Ð·Ð°ÑиÑÑ Ð¿Ð°Ñолем";
- Text[ el ] = "Îλλαγή ÏÏοÏÏαÏÎ¯Î±Ï ÎºÏÎ´Î¹ÎºÎ¿Ï ÏÏÏÏβαÏηÏ";
- Text[ nl ] = "Wachtwoordbeveiliging wijzigen";
- Text[ fr ] = "Modification du mot de passe";
- Text[ es ] = "Cambiar contraseña";
- Text[ fi ] = "Muuta salasanasuojausta";
- Text[ ca ] = "Canvia la contrasenya";
- Text[ it ] = "Cambia protezione password";
- Text[ sk ] = "Upraviť ochranu heslom";
- Text[ da ] = "Modificer adgangskodebeskyttelse";
- Text[ sv ] = "Ãndra lösenordsskydd";
- Text[ pl ] = "ZmieÅ ochronÄ hasÅem";
- Text[ pt-BR ] = "Alterar a proteção por senha";
- Text[ th ] = "à¹à¸à¸¥à¸µà¹à¸¢à¸à¸à¸²à¸£à¸à¹à¸à¸à¸à¸±à¸à¸£à¸«à¸±à¸ªà¸à¹à¸²à¸";
- Text[ ja ] = "ãã¹ã¯ã¼ãä¿è·ã®å¤æ´";
- Text[ ko ] = "ìí¸ ë³´ì ë³ê²½";
- Text[ zh-CN ] = "æ´æ¹ä¿æ¤å¯ç ";
- Text[ zh-TW ] = "è®æ´ä¿è·å¯ç¢¼";
- Text[ tr ] = "Åifre korumasını deÄiÅtir";
- Text[ hi-IN ] = "à¤à¥à¤à¤¶à¤¬à¥à¤¦ रà¤à¥à¤·à¤¾ बदलà¥";
- Text[ ar ] = "تغÙÙر ØÙ
اÙØ© ÙÙÙ
Ø© اÙسر";
- Text[ he ] = "Passwortschutz ändern";
-};
-String STR_CHANGEDEFATTR
-{
- Text [ de ] = "Standardwerte ändern" ;
- Text [ en-US ] = "Modify default values" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Alterar valores padrão";
- Text[ ru ] = "ÐзмениÑÑ ÑÑандаÑÑнÑе знаÑениÑ";
- Text[ el ] = "ΤÏοÏοÏοίηÏη ÏÏοεÏιλεγμÎνÏν ÏιμÏν";
- Text[ nl ] = "Standaardwaarden wijzigen";
- Text[ fr ] = "Changement des valeurs standard";
- Text[ es ] = "Modificar valores predeterminados";
- Text[ fi ] = "Muokkaa oletusarvoja";
- Text[ ca ] = "Modifica els valors per defecte";
- Text[ it ] = "Cambia valori predefiniti";
- Text[ sk ] = "Upraviť východzie hodnoty";
- Text[ da ] = "Modificer standardværdier";
- Text[ sv ] = "Ãndra standardvärden";
- Text[ pl ] = "Modyfikuj wartoÅci domyÅlne";
- Text[ pt-BR ] = "Modificar valores padrão";
- Text[ th ] = "à¸à¸±à¸à¹à¸à¸¥à¸à¸à¹à¸²à¹à¸£à¸´à¹à¸¡à¸à¹à¸";
- Text[ ja ] = "æ¨æºå¤ã®å¤æ´";
- Text[ ko ] = "ê¸°ë³¸ê° ìì ";
- Text[ zh-CN ] = "æ´æ¹æ åå¼";
- Text[ zh-TW ] = "è®æ´æ¨æºå¼";
- Text[ tr ] = "ÃndeÄerleri deÄiÅtir";
- Text[ hi-IN ] = "à¤
नà¥à¤ªà¤¸à¥à¤¥à¤¿à¤¤à¤¿ मà¥à¤²à¥à¤¯à¥à¤ à¤à¥ सà¥à¤§à¤¾à¤°à¥";
- Text[ ar ] = "تعدÙ٠اÙÙÙÙ
اÙاÙتراضÙØ©";
- Text[ he ] = "Standardwerte ändern";
-};
-String STR_OUTLINE_LR
-{
- Text [ de ] = "Gliederung stufen" ;
- Text [ en-US ] = "Promote Outline" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Escalonar esquema";
- Text[ ru ] = "УÑовни ÑÑÑÑкÑÑÑÑ";
- Text[ el ] = "ÎιάÏθÏÏÏη με εÏοÏÎÏ";
- Text[ nl ] = "Overzichtsniveaus bepalen";
- Text[ fr ] = "Ãchelonner la structure";
- Text[ es ] = "Escalonar el esquema";
- Text[ fi ] = "Korota jäsennystasoa";
- Text[ ca ] = "Promou el contorn";
- Text[ it ] = "Graduare struttura";
- Text[ sk ] = "O úroveŠvyššie";
- Text[ da ] = "Inddel disposition";
- Text[ sv ] = "Dela in disposition";
- Text[ pl ] = "Konspekt wyżej";
- Text[ pt-BR ] = "Promover Tópico";
- Text[ th ] = "à¹à¸¥à¸·à¹à¸à¸à¹à¸à¹à¸²à¸£à¹à¸²à¸";
- Text[ ja ] = "ã¢ã¦ãã©ã¤ã³ã®ã¬ãã«";
- Text[ ko ] = "ê°ì ìì¤ ì¬ë¦¬ê¸°";
- Text[ zh-CN ] = "å级大纲";
- Text[ zh-TW ] = "åç´å¤§ç¶±";
- Text[ tr ] = "Anahatı deÄiÅtir";
- Text[ hi-IN ] = "बाहरॠरà¥à¤ªà¤°à¥à¤à¤¾ à¤à¥ à¤à¤¤à¥à¤¤à¥à¤à¤¿à¤¤ à¤à¤°à¥";
- Text[ ar ] = "تدرÙج اÙتÙسÙÙ
";
- Text[ he ] = "Gliederung stufen";
-};
-String STR_OUTLINE_UD
-{
- Text [ de ] = "Gliederung verschieben" ;
- Text [ en-US ] = "Move outline" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Mover esquema";
- Text[ ru ] = "ÐеÑемеÑÑиÑÑ ÑÑÑÑкÑÑÑÑ";
- Text[ el ] = "ÎεÏακίνηÏη διάÏθÏÏÏηÏ";
- Text[ nl ] = "Overzicht verplaatsen";
- Text[ fr ] = "Déplacer le plan";
- Text[ es ] = "Desplazar esquema";
- Text[ fi ] = "Siirrä ääriviivaa";
- Text[ ca ] = "Mou el contorn";
- Text[ it ] = "Sposta struttura";
- Text[ sk ] = "Presunúť úroveÅ";
- Text[ da ] = "Flyt disposition";
- Text[ sv ] = "Flytta disposition";
- Text[ pl ] = "PrzenieÅ konspekt";
- Text[ pt-BR ] = "Mover tópicos";
- Text[ th ] = "ยà¹à¸²à¸¢à¹à¸à¹à¸²à¸£à¹à¸²à¸";
- Text[ ja ] = "ã¢ã¦ãã©ã¤ã³ã®ç§»å";
- Text[ ko ] = "ê°ì ì´ë";
- Text[ zh-CN ] = "移å¨å¤§çº²";
- Text[ zh-TW ] = "移å大綱";
- Text[ tr ] = "Anahatı taÅı";
- Text[ hi-IN ] = "बाहरॠरà¥à¤ªà¤°à¥à¤à¤¾ à¤à¤¾ सà¥à¤¥à¤¾à¤¨ परिवरà¥à¤¤à¤¨ à¤à¤°à¥";
- Text[ ar ] = "ÙÙ٠اÙتÙسÙÙ
";
- Text[ he ] = "Gliederung verschieben";
-};
-String STR_INSNUM
-{
- Text [ de ] = "Nummerierung einfügen" ;
- Text [ en-US ] = "Insert numbering" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir numeração";
- Text[ ru ] = "ÐÑÑавиÑÑ Ð½ÑмеÑаÑиÑ";
- Text[ el ] = "ÎιÏαγÏγή αÏίθμηÏηÏ";
- Text[ nl ] = "Nummering invoegen";
- Text[ fr ] = "Insérer une numérotation";
- Text[ es ] = "Insertar numeración";
- Text[ fi ] = "Lisää numerointi";
- Text[ ca ] = "Insereix la numeració";
- Text[ it ] = "Inserisci numerazione";
- Text[ sk ] = "VložiÅ¥ ÄÃslovanie";
- Text[ da ] = "Indsæt nummerering";
- Text[ sv ] = "Infoga numrering";
- Text[ pl ] = "Wstaw numeracjÄ";
- Text[ pt-BR ] = "Inserir numeração";
- Text[ th ] = "à¹à¸à¸£à¸à¸¥à¸³à¸à¸±à¸à¸à¸±à¸§à¹à¸¥à¸";
- Text[ ja ] = "çªå·ä»ãã®æ¿å
¥";
- Text[ ko ] = "ë²í¸ 매기기 ì½ì
";
- Text[ zh-CN ] = "æå
¥ç¼å·";
- Text[ zh-TW ] = "æå
¥ç·¨è";
- Text[ tr ] = "Numaralama ekle";
- Text[ hi-IN ] = "सà¤à¤à¥à¤¯à¤¾ दà¥à¤¨à¤¾ à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج ترÙÙÙ
";
- Text[ he ] = "Nummerierung einfügen";
-};
-String STR_NUMUPDOWN
-{
- Text [ de ] = "Nummerierung stufen" ;
- Text [ en-US ] = "Shift numbering" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Escalonar numeração";
- Text[ ru ] = "УÑовни нÑмеÑаÑии";
- Text[ el ] = "ÎÏίθμηÏη με εÏοÏÎÏ";
- Text[ nl ] = "Nummering indelen";
- Text[ fr ] = "Ãchelonner la numérotation";
- Text[ es ] = "Graduar numeración";
- Text[ fi ] = "Siirrä numerointi";
- Text[ ca ] = "Desplaça la numeració";
- Text[ it ] = "Sposta numerazione";
- Text[ sk ] = "Posunúť ÄÃslovanie";
- Text[ da ] = "Inddel nummerering";
- Text[ sv ] = "Flernivånumrering";
- Text[ pl ] = "PrzesuÅ numeracjÄ";
- Text[ pt-BR ] = "Deslocar numeração";
- Text[ th ] = "à¹à¸¥à¸·à¹à¸à¸à¸¥à¸³à¸à¸±à¸à¸à¸±à¸§à¹à¸¥à¸";
- Text[ ja ] = "çªå·ä»ãã®æ®µéä»ã";
- Text[ ko ] = "ë²í¸ 매기기 ë¨ê³";
- Text[ zh-CN ] = "å级ç¼å·";
- Text[ zh-TW ] = "åç´ç·¨è";
- Text[ tr ] = "Numaralamayı kaydır";
- Text[ hi-IN ] = "सà¤à¤à¥à¤¯à¤¾ दà¥à¤¨à¤¾ सà¥à¤¥à¤¾à¤¨à¤¾à¤¨à¥à¤¤à¤° à¤à¤°à¥";
- Text[ ar ] = "تدرÙج اÙترÙÙÙ
";
- Text[ he ] = "Nummerierung stufen";
-};
-String STR_MOVENUM
-{
- Text [ de ] = "Absätze verschieben" ;
- Text [ en-US ] = "Move paragraphs" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Mover parágrafos";
- Text[ ru ] = "ÐеÑемеÑÑиÑÑ Ð°Ð±Ð·Ð°ÑÑ";
- Text[ el ] = "ÎεÏαÏοÏά ÏαÏαγÏάÏÏν";
- Text[ nl ] = "Alinea's verplaatsen";
- Text[ fr ] = "Déplacer paragraphes";
- Text[ es ] = "Desplazar párrafos";
- Text[ fi ] = "Siirrä kappaleita";
- Text[ ca ] = "Mou els parà grafs";
- Text[ it ] = "Sposta paragrafi";
- Text[ sk ] = "Presunúť odstavce";
- Text[ da ] = "Flyt afsnit";
- Text[ sv ] = "Flytta stycken";
- Text[ pl ] = "PrzenieÅ akapity";
- Text[ pt-BR ] = "Mover parágrafos";
- Text[ th ] = "ยà¹à¸²à¸¢à¸¢à¹à¸à¸«à¸à¹à¸²";
- Text[ ja ] = "段è½ã®ç§»å";
- Text[ ko ] = "ë¨ë½ ì´ë";
- Text[ zh-CN ] = "移å¨æ®µè½";
- Text[ zh-TW ] = "移å段è½";
- Text[ tr ] = "Paragrafları taÅı";
- Text[ hi-IN ] = "परिà¤à¥à¤à¥à¤¦à¥à¤ à¤à¤¾ सà¥à¤¥à¤¾à¤¨ परिवरà¥à¤¤à¤¨ à¤à¤°à¥";
- Text[ ar ] = "إزاØØ© اÙÙÙرات";
- Text[ he ] = "Absätze verschieben";
-};
-String STR_INSERTDRAW
-{
- Text [ de ] = "Zeichenobjekt einfügen" ;
- Text [ en-US ] = "Insert Draw Object" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir objecto de desenho";
- Text[ ru ] = "ÐÑÑавиÑÑ Ð³ÑаÑиÑеÑкий обÑекÑ";
- Text[ el ] = "ÎιÏαγÏγή ανÏικειμÎνοÏ
ÏÏεδίαÏηÏ";
- Text[ nl ] = "Tekenobject invoegen";
- Text[ fr ] = "Insérer un objet de dessin";
- Text[ es ] = "Insertar objeto de dibujo";
- Text[ fi ] = "Lisää piirrosobjekti";
- Text[ ca ] = "Insereix l'objecte de dibuix";
- Text[ it ] = "Inserisci oggetti di disegno";
- Text[ sk ] = "Vložiť kresby";
- Text[ da ] = "Indsæt tegneobjekt";
- Text[ sv ] = "Infoga ritobjekt";
- Text[ pl ] = "Wstaw obiekt rysunkowy";
- Text[ pt-BR ] = "Inserir Objeto de Desenho";
- Text[ th ] = "à¹à¸à¸£à¸à¸§à¸±à¸à¸à¸¸à¸§à¸²à¸à¸£à¸¹à¸";
- Text[ ja ] = "æç»ãªãã¸ã§ã¯ãã®æ¿å
¥";
- Text[ ko ] = "그리기 ê°ì²´ ì½ì
";
- Text[ zh-CN ] = "æå
¥ç»å¾å¯¹è±¡";
- Text[ zh-TW ] = "æå
¥ç¹ªåç©ä»¶";
- Text[ tr ] = "Ãizim nesnesi ekle";
- Text[ hi-IN ] = "रà¥à¤à¤¾à¤à¤¿à¤¤à¥à¤° वसà¥à¤¤à¥ à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج Ùائ٠رسÙÙ
Ù";
- Text[ he ] = "Zeichenobjekt einfügen";
-};
-String STR_NUMORNONUM
-{
- Text [ de ] = "Nummer an/aus" ;
- Text [ en-US ] = "Number On/Off" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Número activado/des.";
- Text[ ru ] = "ÐомеÑ";
- Text[ el ] = "ÎÏιθμÏÏ Îαι/ÎÏι";
- Text[ nl ] = "Nummer aan/uit";
- Text[ fr ] = "(Dés)activer le numéro";
- Text[ es ] = "Número activado/desactivado";
- Text[ fi ] = "Numerot Käytössä/poissa käytöstä";
- Text[ ca ] = "Número activat/desactivat";
- Text[ it ] = "Mostra/nascondi numero";
- Text[ sk ] = "ÄÃsla zap/vyp";
- Text[ da ] = "Aktiver/deaktiver nummer";
- Text[ sv ] = "Nummer på/av";
- Text[ pl ] = "WÅÄ
cz/wyÅÄ
cz numeracjÄ";
- Text[ pt-BR ] = "Ativar/Desativar Número";
- Text[ th ] = "à¸à¸±à¸§à¹à¸¥à¸ มี/à¹à¸¡à¹à¸¡à¸µ";
- Text[ ja ] = "çªå· ãªã³/ãªã";
- Text[ ko ] = "ë²í¸ ì ì©/í´ì ";
- Text[ zh-CN ] = "æ¾ç¤º/éå
¥ç¼å·";
- Text[ zh-TW ] = "顯示/é±å
¥ç·¨è";
- Text[ tr ] = "Numara açık/kapalı";
- Text[ hi-IN ] = "सà¤à¤à¥à¤¯à¤¾ शà¥à¤°à¥/बà¤à¤¦";
- Text[ ar ] = "إظÙار/إخÙاء اÙرÙÙ
";
- Text[ he ] = "Nummer an/aus";
-};
-String STR_INC_LEFTMARGIN
-{
- Text [ de ] = "Einzug vergröÃern" ;
- Text [ en-US ] = "Increase Indent" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Aumentar avanço";
- Text[ ru ] = "УвелиÑиÑÑ Ð¾ÑÑÑÑп";
- Text[ el ] = "ÎÏξηÏη εÏοÏήÏ";
- Text[ nl ] = "Inspringing vergroten";
- Text[ fr ] = "Augmenter le retrait";
- Text[ es ] = "Aumentar sangrÃa";
- Text[ fi ] = "Lisää sisennystä";
- Text[ ca ] = "Augmenta el sagnat";
- Text[ it ] = "Aumenta rientro";
- Text[ sk ] = "ZväÄÅ¡iÅ¥ odsadenie";
- Text[ da ] = "Forstør indrykning";
- Text[ sv ] = "Ãka indrag";
- Text[ pl ] = "ZwiÄksz wciÄcie";
- Text[ pt-BR ] = "Aumentar Recuo";
- Text[ th ] = "à¹à¸à¸´à¹à¸¡à¸£à¸°à¸¢à¸°à¹à¸¢à¸·à¹à¸à¸";
- Text[ ja ] = "ã¤ã³ãã³ãã®ééã®æ¡å¤§";
- Text[ ko ] = "ë¤ì¬ì°ê¸°";
- Text[ zh-CN ] = "å¢å¤§ç¼©è¿";
- Text[ zh-TW ] = "å¢å¤§ç¸®æ";
- Text[ tr ] = "Girintiyi büyüt";
- Text[ hi-IN ] = "à¤à¤¨à¥à¤¡à¥à¤¨à¥à¤ बढ़ाठ";
- Text[ ar ] = "زÙادة اÙإزاØØ©";
- Text[ he ] = "â®××ספת ש×××××â¬";
-};
-String STR_DEC_LEFTMARGIN
-{
- Text [ de ] = "Einzug verringern" ;
- Text [ en-US ] = "Decrease indent" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Reduzir avanço de parágrafo";
- Text[ ru ] = "УменÑÑиÑÑ Ð¾ÑÑÑÑп";
- Text[ el ] = "ÎείÏÏη εÏοÏήÏ";
- Text[ nl ] = "Inspringing verkleinen";
- Text[ fr ] = "Réduire le retrait";
- Text[ es ] = "Reducir la sangrÃa";
- Text[ fi ] = "Vähennä sisennystä";
- Text[ ca ] = "Redueix el sagnat";
- Text[ it ] = "Riduci rientro";
- Text[ sk ] = "Zmenšiť odsadenie";
- Text[ da ] = "Formindsk indrykning";
- Text[ sv ] = "Minska indrag";
- Text[ pl ] = "Zmniejsz wciÄcie";
- Text[ pt-BR ] = "Reduzir recuo";
- Text[ th ] = "ลà¸à¸£à¸°à¸¢à¸°à¹à¸¢à¸·à¹à¸à¸";
- Text[ ja ] = "ã¤ã³ãã³ãééã®ç¸®å°";
- Text[ ko ] = "ë´ì´ì°ê¸°";
- Text[ zh-CN ] = "åå°ç¼©è¿";
- Text[ zh-TW ] = "æ¸å°ç¸®æ";
- Text[ tr ] = "Girintiyi küçült";
- Text[ hi-IN ] = "à¤à¤¨à¥à¤¡à¥à¤¨à¥à¤ à¤à¤à¤¾à¤";
- Text[ ar ] = "Ø¥ÙÙاص اÙإزاØØ©";
- Text[ he ] = "â®×פ×תת ש×××××â¬";
-};
-String STR_INSERTLABEL
-{
- Text [ de ] = "Beschriftung einfügen" ;
- Text [ en-US ] = "Insert caption" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir legenda";
- Text[ ru ] = "ÐÑÑавиÑÑ Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ðµ";
- Text[ el ] = "ÎιÏαγÏγή λεζάνÏαÏ";
- Text[ nl ] = "Bijschrift invoegen";
- Text[ fr ] = "Insérer une légende";
- Text[ es ] = "Insertar etiqueta";
- Text[ fi ] = "Lisää otsikko";
- Text[ ca ] = "Insereix una llegenda";
- Text[ it ] = "Inserisci dicitura";
- Text[ sk ] = "Vložiť popis";
- Text[ da ] = "Indsæt billedtekst";
- Text[ sv ] = "Infoga bildtext";
- Text[ pl ] = "Wstaw podpis";
- Text[ pt-BR ] = "Inserir legenda";
- Text[ th ] = "à¹à¸à¸£à¸à¸à¸³à¸à¸£à¸£à¸¢à¸²à¸¢à¸ าà¸";
- Text[ ja ] = "å³è¡¨çªå·ã®æ¿å
¥";
- Text[ ko ] = "캡ì
ì½ì
";
- Text[ zh-CN ] = "æå
¥æ ç¾";
- Text[ zh-TW ] = "æå
¥æ¨ç±¤";
- Text[ tr ] = "Resim yazısı ekle";
- Text[ hi-IN ] = "à¤à¥à¤ªà¥à¤¶à¤¨à¥ à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج تسÙ
ÙØ© تÙضÙØÙØ©";
- Text[ he ] = "Beschriftung einfügen";
-};
-String STR_SETNUMRULESTART
-{
- Text [ de ] = "Nummerierung neu starten" ;
- Text [ en-US ] = "Restart numbering" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Reiniciar numeração";
- Text[ ru ] = "ÐаÑаÑÑ Ð½ÑмеÑаÑÐ¸Ñ Ð·Ð°Ð½Ð¾Ð²Ð¾";
- Text[ el ] = "ÎÏανεκκίνηÏη αÏίθμηÏηÏ";
- Text[ nl ] = "Nieuwe nummering";
- Text[ fr ] = "Reprendre la numérotation";
- Text[ es ] = "Reiniciar numeración";
- Text[ fi ] = "Aloita numerointi uudestaan";
- Text[ ca ] = "Reinicia la numeració";
- Text[ it ] = "Riavvia la numerazione";
- Text[ sk ] = "ReÅ¡tartovaÅ¥ ÄÃslovanie";
- Text[ da ] = "Genstart nummerering";
- Text[ sv ] = "Starta numrering på nytt";
- Text[ pl ] = "Zacznij numeracjÄ od nowa";
- Text[ pt-BR ] = "Reiniciar numeração";
- Text[ th ] = "à¹à¸£à¸´à¹à¸¡à¸¥à¸³à¸à¸±à¸à¸à¸±à¸§à¹à¸¥à¸à¹à¸«à¸¡à¹";
- Text[ ja ] = "çªå·ä»ããæ°ããéå§";
- Text[ ko ] = "ë²í¸ ë¤ì 매기기";
- Text[ zh-CN ] = "éæ°å¼å§ç¼å·";
- Text[ zh-TW ] = "éæ°ç·¨è";
- Text[ tr ] = "Numaralamayı yeniden baÅlat";
- Text[ hi-IN ] = "सà¤à¤à¥à¤¯à¤¾ दà¥à¤¨à¤¾ पà¥à¤¨à¤ पà¥à¤°à¤¾à¤°à¤à¤ à¤à¤°à¥";
- Text[ ar ] = "إعادة بدء اÙترÙÙÙ
";
- Text[ he ] = "â®××ספ×ר-ספ××¨× ××ש×â¬";
-};
-String STR_CHANGEFTN
-{
- Text [ de ] = "FuÃnote ändern" ;
- Text [ en-US ] = "Modify footnote" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Modificar nota de rodapé";
- Text[ ru ] = "ÐзмениÑÑ ÑноÑкÑ";
- Text[ el ] = "ΤÏοÏοÏοίηÏη Ï
ÏοÏημείÏÏηÏ";
- Text[ nl ] = "Voetnoot wijzigen";
- Text[ fr ] = "Modifier la note de bas de page";
- Text[ es ] = "Modificar nota al pie";
- Text[ fi ] = "Muokkaa alaviitettä";
- Text[ ca ] = "Modifica la nota al peu";
- Text[ it ] = "Modifica nota a piè pagina";
- Text[ sk ] = "UpraviÅ¥ poznámku pod Äiarou";
- Text[ da ] = "Modificer fodnote";
- Text[ sv ] = "Ãndra fotnot";
- Text[ pl ] = "Modyfikuj przypis dolny";
- Text[ pt-BR ] = "Modificar nota de rodapé";
- Text[ th ] = "à¸à¸±à¸à¹à¸à¸¥à¸à¹à¸à¹à¹à¸à¹à¸à¸´à¸à¸à¸£à¸£à¸";
- Text[ ja ] = "è注ã®å¤æ´";
- Text[ ko ] = "ê°ì£¼ ìì ";
- Text[ zh-CN ] = "æ´æ¹æ³¨è";
- Text[ zh-TW ] = "è®æ´è¨»è
³";
- Text[ tr ] = "Dipnotu deÄiÅtir";
- Text[ hi-IN ] = "पà¥à¤·à¥à¤ à¤à¥ नà¥à¤à¥ à¤à¥ à¤à¥à¤à¤¾ सà¥à¤§à¤¾à¤°à¥";
- Text[ ar ] = "تعدÙ٠اÙØاشÙØ© اÙسÙÙÙØ©";
- Text[ he ] = "FuÃnote ändern";
-};
-String STR_REDLINE
-{
- /* !! sollte NIE gebraucht/uebersetzt werden !! */
- Text = "Redline" ;
-};
-String STR_ACCEPT_REDLINE
-{
- Text [ de ] = "Ãnderung akzeptieren" ;
- Text [ en-US ] = "Accept changes" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Aceitar modificações";
- Text[ ru ] = "ÐÑинÑÑÑ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ";
- Text[ el ] = "ÎÏοδοÏή αλλαγÏν";
- Text[ nl ] = "Wijziging accepteren";
- Text[ fr ] = "Accepter la modification";
- Text[ es ] = "Aceptar modificaciones";
- Text[ fi ] = "Hyväksy muutokset";
- Text[ ca ] = "Accepta els canvis";
- Text[ it ] = "Accetta le modifiche";
- Text[ sk ] = "Prijať zmeny";
- Text[ da ] = "Accepter ændring";
- Text[ sv ] = "Acceptera ändring";
- Text[ pl ] = "Akceptuj zmiany";
- Text[ pt-BR ] = "Aceitar modificações";
- Text[ th ] = "ยà¸à¸¡à¸£à¸±à¸à¸à¸²à¸£à¹à¸à¸¥à¸µà¹à¸¢à¸à¹à¸à¸¥à¸";
- Text[ ja ] = "å¤æ´ãåãå
¥ãã";
- Text[ ko ] = "ë³ê²½ ëì";
- Text[ zh-CN ] = "æ¥åæ´æ¹";
- Text[ zh-TW ] = "æ¥åè®æ´";
- Text[ tr ] = "DeÄiÅiklikleri kabul et";
- Text[ hi-IN ] = "परिवरà¥à¤¤à¤¨à¥à¤ à¤à¥ सà¥à¤µà¥à¤à¥à¤¤ à¤à¤°à¥";
- Text[ ar ] = "ÙبÙ٠اÙتغÙÙرات";
- Text[ he ] = "Ãnderung akzeptieren";
-};
-String STR_REJECT_REDLINE
-{
- Text [ de ] = "Ãnderung ablehnen" ;
- Text [ en-US ] = "Reject change" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Rejeitar alteração";
- Text[ ru ] = "ÐÑклониÑÑ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ";
- Text[ el ] = "ÎÏÏÏÏιÏη αλλαγÏν";
- Text[ nl ] = "Wijziging verwerpen";
- Text[ fr ] = "Rejeter la modification";
- Text[ es ] = "Rechazar modificación";
- Text[ fi ] = "Hylkää muutos";
- Text[ ca ] = "Rebutja el canvi";
- Text[ it ] = "Rifiuta modifica";
- Text[ sk ] = "Odmietnuť zmenu";
- Text[ da ] = "Forkast ændring";
- Text[ sv ] = "Ignorera ändring";
- Text[ pl ] = "OdrzuÄ zmiany";
- Text[ pt-BR ] = "Rejeitar modificações";
- Text[ th ] = "à¸à¸à¸´à¹à¸ªà¸à¸à¸²à¸£à¹à¸à¸¥à¸µà¹à¸¢à¸à¹à¸à¸¥à¸";
- Text[ ja ] = "å¤æ´ãåãå
¥ããªã";
- Text[ ko ] = "ë³ê²½ ê±°ë¶";
- Text[ zh-CN ] = "æç»æ´æ¹";
- Text[ zh-TW ] = "æçµè®æ´";
- Text[ tr ] = "DeÄiÅikliÄi reddet";
- Text[ hi-IN ] = "परिवरà¥à¤¤à¤¨ à¤
सà¥à¤µà¥à¤à¤¾à¤° à¤à¤°à¥";
- Text[ ar ] = "رÙض اÙتغÙÙر";
- Text[ he ] = "Ãnderung ablehnen";
-};
-String STR_SPLIT_TABLE
-{
- Text [ de ] = "Tabelle auftrennen" ;
- Text [ en-US ] = "Split Table" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Dividir tabela";
- Text[ ru ] = "РазбиÑÑ ÑаблиÑÑ";
- Text[ el ] = "ÎιαίÏεÏη Ïίνακα";
- Text[ nl ] = "Tabel opsplitsen";
- Text[ fr ] = "Scinder le tableau";
- Text[ es ] = "Dividir tabla";
- Text[ fi ] = "Jaa taulukko";
- Text[ ca ] = "Divideix la taula";
- Text[ it ] = "Dividi tabella";
- Text[ sk ] = "Rozdeliť tabuľku";
- Text[ da ] = "Opdel tabel";
- Text[ sv ] = "Dela tabell";
- Text[ pl ] = "Podziel tabelÄ";
- Text[ pt-BR ] = "Dividir a Tabela";
- Text[ th ] = "à¹à¸¢à¸à¸à¸²à¸£à¸²à¸";
- Text[ ja ] = "表ã®åå²";
- Text[ ko ] = "í ëë기";
- Text[ zh-CN ] = "åéè¡¨æ ¼";
- Text[ zh-TW ] = "åéè¡¨æ ¼";
- Text[ tr ] = "Tabloyu böl";
- Text[ hi-IN ] = "सारणॠà¤
लà¤à¤¾ à¤à¤°à¥";
- Text[ ar ] = "Ùص٠اÙجدÙÙ";
- Text[ he ] = "â®×¤×צ×× ××××â¬";
-};
-String STR_DONTEXPAND
-{
- Text [ de ] = "Attribut stoppen" ;
- Text [ en-US ] = "Stop attribute" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Parar atributo";
- Text[ ru ] = "ÐÑÑановиÑÑ Ð°ÑÑибÑÑ";
- Text[ el ] = "ÎιακοÏή ιδιÏÏηÏαÏ";
- Text[ nl ] = "Attribuut stoppen";
- Text[ fr ] = "Arrêter";
- Text[ es ] = "Detener atributo";
- Text[ fi ] = "Pysäytä ominaisuus";
- Text[ ca ] = "Atura l'atribut";
- Text[ it ] = "Interrompi attributo";
- Text[ sk ] = "Atribút zastavenia";
- Text[ da ] = "Stop attribut";
- Text[ sv ] = "Stoppa attribut";
- Text[ pl ] = "Zatrzymaj atrybuty";
- Text[ pt-BR ] = "Atributos de parada";
- Text[ th ] = "หยุà¸à¸à¸¸à¸à¸¥à¸±à¸à¸©à¸à¸°";
- Text[ ja ] = "å±æ§ã®ä¸æ¢";
- Text[ ko ] = "ìì± ì¤ì§";
- Text[ zh-CN ] = "åæ¢æ¾ç¤ºå±æ§";
- Text[ zh-TW ] = "åæ¢é¡¯ç¤ºå±¬æ§";
- Text[ tr ] = "ÃzniteliÄi durdur";
- Text[ hi-IN ] = "à¤à¤à¥à¤°à¤¿à¤¬à¥à¤¯à¥à¤ रà¥à¤à¥";
- Text[ ar ] = "ÙÙ٠اÙسÙ
ات";
- Text[ he ] = "Attribut stoppen";
-};
-String STR_AUTOCORRECT
-{
- Text [ de ] = "AutoKorrektur" ;
- Text [ en-US ] = "AutoCorrect" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "AutoCorrecção";
- Text[ ru ] = "ÐвÑозамена";
- Text[ el ] = "ÎÏ
ÏÏμαÏη ÎιÏÏθÏÏη";
- Text[ nl ] = "AutoCorrectie";
- Text[ fr ] = "AutoCorrection";
- Text[ es ] = "Corrección automática";
- Text[ fi ] = "Autom. korjaus";
- Text[ ca ] = "Correcció automà tica";
- Text[ it ] = "Correzione automatica";
- Text[ sk ] = "Automatické opravy";
- Text[ da ] = "AutoKorrektur";
- Text[ sv ] = "AutoKorrigering";
- Text[ pl ] = "Autokorekta";
- Text[ pt-BR ] = "AutoCorreção";
- Text[ th ] = "à¹à¸à¹à¹à¸à¹à¸«à¹à¸à¸¹à¸à¸à¹à¸à¸à¸à¸±à¸à¹à¸à¸¡à¸±à¸à¸´";
- Text[ ja ] = "ãªã¼ãã³ã¬ã¯ã";
- Text[ ko ] = "ìë ìì /ìë ìì";
- Text[ zh-CN ] = "èªå¨æ´æ£";
- Text[ zh-TW ] = "èªåæ ¡æ£";
- Text[ tr ] = "Otomatik düzeltme";
- Text[ hi-IN ] = "सà¥à¤µà¤à¤¾à¤²à¤¿à¤¤ ढà¤à¤ सॠठà¥à¤ à¤à¤°à¥";
- Text[ ar ] = "تصØÙØ ØªÙÙائÙ";
- Text[ he ] = "â®×ª×ק×× ×××××××â¬";
-};
-String STR_MERGE_TABLE
-{
- Text [ de ] = "Tabelle verbinden" ;
- Text [ en-US ] = "Merge table";
- Text [ x-comment ] = " ";
- Text[ pt ] = "Unir tabela";
- Text[ ru ] = "ÐбÑединиÑÑ ÑаблиÑÑ";
- Text[ el ] = "ΣÏ
γÏÏνεÏ
Ïη ÏινάκÏν";
- Text[ nl ] = "Tabel verbinden";
- Text[ fr ] = "Fusionner les tableaux";
- Text[ es ] = "unir tablas";
- Text[ fi ] = "Yhdistä taulukko";
- Text[ ca ] = "Fusiona la taula";
- Text[ it ] = "Collega tabella";
- Text[ sk ] = "ZlúÄiÅ¥ tabuľku";
- Text[ da ] = "Flet tabeller";
- Text[ sv ] = "Sammanfoga tabeller";
- Text[ pl ] = "Scal tabele";
- Text[ pt-BR ] = "Mesclar tabela";
- Text[ th ] = "à¸à¸ªà¸²à¸à¸à¸²à¸£à¸²à¸";
- Text[ ja ] = "表ã®çµå";
- Text[ ko ] = "í í©ì¹ê¸°";
- Text[ zh-CN ] = "åå¹¶è¡¨æ ¼";
- Text[ zh-TW ] = "åä½µè¡¨æ ¼";
- Text[ tr ] = "Tabloyu birleÅtir";
- Text[ hi-IN ] = "सारणॠà¤à¥ मिलाà¤";
- Text[ ar ] = "Ùص٠اÙجدÙÙ";
- Text[ he ] = "Tabelle verbinden";
-};
-
-String STR_TRANSLITERATE
-{
- Text [ de ] = "GroÃ-/Kleinschreibung" ;
- Text [ en-US ] = "~Change Case";
- Text[ pt ] = "Caixa/Caracteres";
- Text[ ru ] = "ÑегиÑÑÑ";
- Text[ el ] = "ÎεÏαλαία/Πεζά";
- Text[ nl ] = "Hoofdletters/kleine letters";
- Text[ fr ] = "Casse/Caractères";
- Text[ es ] = "Mayúsculas/minúsculas";
- Text[ fi ] = "Muuta kirjainkoko";
- Text[ ca ] = "Majúscules/minúscules";
- Text[ it ] = "Maiuscole/minuscole";
- Text[ sk ] = "Veľkosť/znaky";
- Text[ da ] = "Store og små bogstaver";
- Text[ sv ] = "Bokstäver/tecken";
- Text[ pl ] = "Wielkie i maÅe litery";
- Text[ pt-BR ] = "Caixa/Caracteres";
- Text[ th ] = "à¸à¸±à¸§à¸à¸´à¸¡à¸à¹/à¸à¸±à¸§à¸à¸±à¸à¸à¸£à¸°";
- Text[ ja ] = "æå種ã®å¤æ";
- Text[ ko ] = "문ì ë°ê¾¸ê¸°";
- Text[ zh-CN ] = "åæ¯å¤§å°å";
- Text[ zh-TW ] = "åæ¯å¤§å°å¯«";
- Text[ tr ] = "Büyük/küçük harf";
- Text[ hi-IN ] = "à¤à¥à¤¸/à¤
à¤à¥à¤·à¤°à¥à¤";
- Text[ ar ] = "اÙÙتابة بأØر٠ÙبÙرة أ٠صغÙرة";
- Text[ he ] = "â®×¡×××× ××ת××תâ¬";
-};
-
-String STR_DELNUM
-{
- Text [ de ] = "Nummerierung löschen" ;
- Text [ en-US ] = "Delete numbering" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Eliminar numeração";
- Text[ ru ] = "УдалиÑÑ Ð½ÑмеÑаÑиÑ";
- Text[ el ] = "ÎιαγÏαÏή αÏίθμηÏηÏ";
- Text[ nl ] = "Nummering wissen";
- Text[ fr ] = "Supprimer la numérotation";
- Text[ es ] = "Borrar numeración";
- Text[ fi ] = "Poista numerointi";
- Text[ ca ] = "Suprimeix la numeració";
- Text[ it ] = "Elimina numerazione";
- Text[ sk ] = "OdstrániÅ¥ ÄÃslovanie";
- Text[ da ] = "Slet nummerering";
- Text[ sv ] = "Radera numrering";
- Text[ pl ] = "UsuÅ numeracjÄ";
- Text[ pt-BR ] = "Excluir numeração";
- Text[ th ] = "ลà¸à¸¥à¸³à¸à¸±à¸à¸à¸±à¸§à¹à¸¥à¸";
- Text[ ja ] = "çªå·ä»ãã®åé¤";
- Text[ ko ] = "ë²í¸ 매기기 ìì ";
- Text[ zh-CN ] = "å é¤ç¼å·";
- Text[ zh-TW ] = "åªé¤ç·¨è";
- Text[ tr ] = "Numaralamayı sil";
- Text[ hi-IN ] = "सà¤à¤à¥à¤¯à¤¾ दà¥à¤¨à¤¾ मिà¤à¤¾à¤";
- Text[ ar ] = "Øذ٠اÙترÙÙÙ
";
- Text[ he ] = "Nummerierung löschen";
-};
-String STR_DRAWUNDO
-{
- Text [ de ] = "Zeichenobjekte" ;
- Text [ en-US ] = "Draw objects" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Objectos de desenho";
- Text[ ru ] = "ÐÑаÑиÑеÑкий обÑекÑ";
- Text[ el ] = "ÎνÏικείμενα ÏÏεδίαÏηÏ";
- Text[ nl ] = "Tekenobjecten";
- Text[ fr ] = "Objets de dessin";
- Text[ es ] = "Objetos de dibujo";
- Text[ fi ] = "Piirrosobjektit";
- Text[ ca ] = "Objectes de dibuix";
- Text[ it ] = "Oggetti di disegno";
- Text[ sk ] = "Kresby";
- Text[ da ] = "Tegneobjekter";
- Text[ sv ] = "Ritobjekt";
- Text[ pl ] = "Obiekty rysunkowe";
- Text[ pt-BR ] = "Objetos de desenho";
- Text[ th ] = "วาà¸à¸§à¸±à¸à¸à¸¸";
- Text[ ja ] = "å³å½¢æç»ãªãã¸ã§ã¯ã";
- Text[ ko ] = "그리기 ê°ì²´";
- Text[ zh-CN ] = "ç»å¾å¯¹è±¡";
- Text[ zh-TW ] = "繪åç©ä»¶";
- Text[ tr ] = "Ãizim nesneleri";
- Text[ hi-IN ] = "रà¥à¤à¤¾à¤à¤¿à¤¤à¥à¤° वसà¥à¤¤à¥";
- Text[ ar ] = "ÙائÙات رسÙÙ
ÙØ©";
- Text[ he ] = "Zeichenobjekte";
-};
-String STR_DRAWGROUP
-{
- Text [ de ] = "Zeichenobjekte gruppieren" ;
- Text [ en-US ] = "Group draw objects" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Agrupar objectos de desenho";
- Text[ ru ] = "ÐÑÑппиÑоваÑÑ Ð³ÑаÑиÑеÑкие обÑекÑÑ";
- Text[ el ] = "ÎμαδοÏοίηÏη ανÏικειμÎνÏν ÏÏεδίαÏηÏ";
- Text[ nl ] = "Tekenobjecten groeperen";
- Text[ fr ] = "Grouper des objets de dessin";
- Text[ es ] = "Agrupar objetos de dibujo";
- Text[ fi ] = "Ryhmittele piirrosobjektit";
- Text[ ca ] = "Agrupa els objectes de dibuix";
- Text[ it ] = "Raggruppa oggetti di disegno";
- Text[ sk ] = "Zoskupiť kresby";
- Text[ da ] = "Grupper tegneobjekter";
- Text[ sv ] = "Gruppera ritobjekt";
- Text[ pl ] = "Grupuj obiekty rysunkowe";
- Text[ pt-BR ] = "Agrupar objetos de desenho";
- Text[ th ] = "à¸à¸±à¸à¸à¸¥à¸¸à¹à¸¡à¸§à¸±à¸à¸à¸¸à¸§à¸²à¸à¸£à¸¹à¸";
- Text[ ja ] = "å³å½¢æç»ãã°ã«ã¼ãåãã";
- Text[ ko ] = "그리기 ê°ì²´ 그룹";
- Text[ zh-CN ] = "åç»ç»å¾å¯¹è±¡";
- Text[ zh-TW ] = "繪åç©ä»¶ç¾¤çµ";
- Text[ tr ] = "Ãizim nesnelerini grupla";
- Text[ hi-IN ] = "रà¥à¤à¤¾à¤à¤¿à¤¤à¥à¤° वसà¥à¤¤à¥ समà¥à¤¹";
- Text[ ar ] = "تجÙ
Ùع ÙائÙات رسÙÙ
ÙØ©";
- Text[ he ] = "Zeichenobjekte gruppieren";
-};
-String STR_DRAWUNGROUP
-{
- Text [ de ] = "Gruppenobjekt auflösen" ;
- Text [ en-US ] = "Ungroup drawing objects" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Desagrupar objectos";
- Text[ ru ] = "РазгÑÑппиÑоваÑÑ Ð³ÑаÑиÑеÑкий обÑекÑ";
- Text[ el ] = "ÎαÏάÏγηÏη ομαδοÏοίηÏÎ·Ï Î±Î½ÏικειμÎνÏν";
- Text[ nl ] = "Groepsobject opheffen";
- Text[ fr ] = "Dissocier les objets";
- Text[ es ] = "Resolver objeto de grupo";
- Text[ fi ] = "Pura piirrosobjektien ryhmitys";
- Text[ ca ] = "Desagrupa els objectes de dibuix";
- Text[ it ] = "Sciogli gruppo oggetti";
- Text[ sk ] = "Zrušiť zoskupenie kresieb";
- Text[ da ] = "Ophæv gruppeobjekter";
- Text[ sv ] = "Lös upp gruppobjekt";
- Text[ pl ] = "Rozgrupuj obiekty rysunkowe";
- Text[ pt-BR ] = "Desagrupar objetos de desenho";
- Text[ th ] = "à¹à¸¡à¹à¸à¸±à¸à¸à¸¥à¸¸à¹à¸¡à¸§à¸±à¸à¸à¸¸à¸§à¸²à¸à¸£à¸¹à¸";
- Text[ ja ] = "ã°ã«ã¼ãåããããªãã¸ã¥ã¯ãã®è§£é¤";
- Text[ ko ] = "그리기 ê°ì²´ 그룹 í´ì ";
- Text[ zh-CN ] = "åæ¶åç»å¯¹è±¡";
- Text[ zh-TW ] = "åæ¶ç¾¤çµç©ä»¶";
- Text[ tr ] = "Nesne grubunu çöz";
- Text[ hi-IN ] = "रà¥à¤à¤¾à¤à¤¿à¤¤à¥à¤° वसà¥à¤¤à¥ à¤à¥ à¤
लà¤à¤¾à¤¨à¤¾";
- Text[ ar ] = "Ù٠تجÙ
Ùع اÙÙائÙات";
- Text[ he ] = "Gruppenobjekt auflösen";
-};
-String STR_DRAWDELETE
-{
- Text [ de ] = "Zeichenobjekte löschen" ;
- Text [ en-US ] = "Delete drawing objects" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Eliminar objectos de desenho";
- Text[ ru ] = "УдалиÑÑ Ð³ÑаÑиÑеÑкие обÑекÑÑ";
- Text[ el ] = "ÎιαγÏαÏή ανÏικειμÎνÏν ÏÏεδίαÏηÏ";
- Text[ nl ] = "Tekenobjecten wissen";
- Text[ fr ] = "Supprimer des objets de dessin";
- Text[ es ] = "Borrar objetos de dibujo";
- Text[ fi ] = "Poista piirrosobjektit";
- Text[ ca ] = "Suprimeix els objectes de dibuix";
- Text[ it ] = "Elimina oggetti di disegno";
- Text[ sk ] = "Zmazať kreslenie objektov";
- Text[ da ] = "Slet tegneobjekter";
- Text[ sv ] = "Radera ritobjekt";
- Text[ pl ] = "UsuÅ obiekty rysunkowe";
- Text[ pt-BR ] = "Excluir objetos de desenho";
- Text[ th ] = "ลà¸à¸§à¸±à¸à¸à¸¸à¸§à¸²à¸à¸£à¸¹à¸";
- Text[ ja ] = "å³å½¢æç»ãªãã¸ã§ã¯ãã解é¤";
- Text[ ko ] = "그리기 ê°ì²´ ìì ";
- Text[ zh-CN ] = "å é¤ç»å¾å¯¹è±¡";
- Text[ zh-TW ] = "åªé¤ç¹ªåç©ä»¶";
- Text[ tr ] = "Ãizim nesnelerini sil";
- Text[ hi-IN ] = "रà¥à¤à¤¾à¤à¤¿à¤¤à¥à¤° वसà¥à¤¤à¥à¤à¤ à¤à¥ मिà¤à¤¾à¤";
- Text[ ar ] = "ØØ°Ù ÙائÙات رسÙÙ
ÙØ©";
- Text[ he ] = "Zeichenobjekte löschen";
-};
-String STR_REREAD
-{
- Text [ de ] = "Grafik ersetzen" ;
- Text [ en-US ] = "Replace graphics" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Substituir imagem";
- Text[ ru ] = "ÐамениÑÑ Ð³ÑаÑикÑ";
- Text[ el ] = "ÎνÏικαÏάÏÏαÏη γÏαÏικÏν";
- Text[ nl ] = "Afbeelding vervangen";
- Text[ fr ] = "Remplacer l'image";
- Text[ es ] = "Reemplazar imagen";
- Text[ fi ] = "Korvaa grafiikka";
- Text[ ca ] = "Reemplaça la imatge";
- Text[ it ] = "Sostituisci l'immagine";
- Text[ sk ] = "Nahradiť obrázok";
- Text[ da ] = "Erstat grafik";
- Text[ sv ] = "Ersätt grafik";
- Text[ pl ] = "ZamieÅ grafikÄ";
- Text[ pt-BR ] = "Substituir figura";
- Text[ th ] = "à¹à¸à¸à¸à¸µà¹à¸à¸£à¸²à¸à¸´à¸";
- Text[ ja ] = "å³ã®ç½®æ";
- Text[ ko ] = "그림 ë°ê¾¸ê¸°";
- Text[ zh-CN ] = "æ¿æ¢å¾å½¢";
- Text[ zh-TW ] = "代æ¿åå½¢";
- Text[ tr ] = "GrafiÄi deÄiÅtirmek";
- Text[ hi-IN ] = "सà¥à¤à¤¿à¤¤à¥à¤° à¤à¥ पà¥à¤°à¤¤à¤¿à¤¸à¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤°à¥";
- Text[ ar ] = "استبدا٠اÙرسÙÙ
ات";
- Text[ he ] = "Grafik ersetzen";
-};
-String STR_DELGRF
-{
- Text [ de ] = "Grafik löschen" ;
- Text [ en-US ] = "Delete graphics" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Eliminar imagem";
- Text[ ru ] = "УдалиÑÑ Ð³ÑаÑикÑ";
- Text[ el ] = "ÎιαγÏαÏή γÏαÏικοÏ";
- Text[ nl ] = "Afbeelding wissen";
- Text[ fr ] = "Supprimer l'image";
- Text[ es ] = "Borrar imagen";
- Text[ fi ] = "Poista grafiikka";
- Text[ ca ] = "Suprimeix la imatge";
- Text[ it ] = "Elimina immagine";
- Text[ sk ] = "Odstrániť obrázok";
- Text[ da ] = "Slet grafik";
- Text[ sv ] = "Radera grafik";
- Text[ pl ] = "UsuÅ grafikÄ";
- Text[ pt-BR ] = "Excluir gráfico";
- Text[ th ] = "ลà¸à¸à¸£à¸²à¸à¸´à¸";
- Text[ ja ] = "å³ã®åé¤";
- Text[ ko ] = "그림 ìì ";
- Text[ zh-CN ] = "å é¤å¾å½¢";
- Text[ zh-TW ] = "åªé¤åå½¢";
- Text[ tr ] = "GrafiÄi silme";
- Text[ hi-IN ] = "सà¥à¤à¤¿à¤¤à¥à¤° मिà¤à¤¾à¤";
- Text[ ar ] = "Øذ٠صÙرة";
- Text[ he ] = "Grafik löschen";
-};
-String STR_DELOLE
-{
- Text [ de ] = "Objekt löschen" ;
- Text [ en-US ] = "Delete object" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Eliminar objecto";
- Text[ ru ] = "УдалиÑÑ Ð¾Ð±ÑекÑ";
- Text[ el ] = "ÎιαγÏαÏή ανÏικειμÎνοÏ
";
- Text[ nl ] = "Object wissen";
- Text[ fr ] = "Supprimer l'objet";
- Text[ es ] = "Borrar objeto";
- Text[ fi ] = "Poista objekti";
- Text[ ca ] = "Suprimeix l'objecte";
- Text[ it ] = "Elimina oggetto";
- Text[ sk ] = "Odstrániť objekt";
- Text[ da ] = "Slet objekt";
- Text[ sv ] = "Radera objekt";
- Text[ pl ] = "UsuÅ obiekt";
- Text[ pt-BR ] = "Excluir objeto";
- Text[ th ] = "ลà¸à¸§à¸±à¸à¸à¸¸";
- Text[ ja ] = "ãªãã¸ã§ã¯ãã®åé¤";
- Text[ ko ] = "ê°ì²´ ìì ";
- Text[ zh-CN ] = "å é¤å¯¹è±¡";
- Text[ zh-TW ] = "åªé¤ç©ä»¶";
- Text[ tr ] = "Nesneyi silme";
- Text[ hi-IN ] = "वसà¥à¤¤à¥ मिà¤à¤¾à¤";
- Text[ ar ] = "ØØ°Ù ÙائÙ";
- Text[ he ] = "Objekt löschen";
-};
-String STR_TABLE_ATTR
-{
- Text [ de ] = "Tabellenattribute anwenden" ;
- Text [ en-US ] = "Apply table attributes" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Aplicar atributos da tabela";
- Text[ ru ] = "ÐÑимениÑÑ Ð°ÑÑибÑÑÑ ÑаблиÑÑ";
- Text[ el ] = "ÎÏαÏμογή ιδιοÏήÏÏν Ïίνακα";
- Text[ nl ] = "Tabelattributen toepassen";
- Text[ fr ] = "Appliquer les attributs de tableau";
- Text[ es ] = "Aplicar atributos de la tabla";
- Text[ fi ] = "Käytä taulukkomääritteitä";
- Text[ ca ] = "Aplica els atributs de la taula";
- Text[ it ] = "Utilizza gli attributi della tabella";
- Text[ sk ] = "Použiť atribúty tabuľky";
- Text[ da ] = "Anvend tabelattributter";
- Text[ sv ] = "Använd tabellattribut";
- Text[ pl ] = "Zastosuj atrybuty tabeli";
- Text[ pt-BR ] = "Aplicar atributos da tabela";
- Text[ th ] = "à¹à¸à¹à¸à¸¸à¸à¸¥à¸±à¸à¸©à¸à¸°à¸à¸²à¸£à¸²à¸";
- Text[ ja ] = "表ã®å±æ§ã®é©ç¨";
- Text[ ko ] = "íì ìì± ì ì©";
- Text[ zh-CN ] = "使ç¨è¡¨æ ¼å±æ§";
- Text[ zh-TW ] = "使ç¨è¡¨æ ¼å±¬æ§";
- Text[ tr ] = "Tablo özniteliklerini kullan";
- Text[ hi-IN ] = "à¤à¥à¤¬à¤² à¤à¤à¥à¤°à¤¿à¤¬à¥à¤¯à¥à¤à¥à¤¸ लà¤à¤¾à¤";
- Text[ ar ] = "استخداÙ
سÙ
ات اÙجدÙÙ";
- Text[ he ] = "Tabellenattribute anwenden";
-};
-String STR_TABLE_AUTOFMT
-{
- Text [ de ] = "Autoformat Tabelle" ;
- Text [ en-US ] = "AutoFormat Table" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "AutoFormato tabela";
- Text[ ru ] = "ÐвÑоÑоÑÐ¼Ð°Ñ ÑаблиÑÑ";
- Text[ el ] = "ÎÏ
ÏÏμαÏη μοÏÏοÏοίηÏη Ïίνακα";
- Text[ nl ] = "AutoOpmaak tabel";
- Text[ fr ] = "AutoFormat de tableau";
- Text[ es ] = "Formateado automático tabla";
- Text[ fi ] = "Automaattinen taulukon muotoilu";
- Text[ ca ] = "Taula de formatatge automà tic";
- Text[ it ] = "Formattazione automatica tabella";
- Text[ sk ] = "Automatický formát tabuľky";
- Text[ da ] = "AutoFormat tabel";
- Text[ sv ] = "Autoformat Tabell";
- Text[ pl ] = "Autoformatowanie tabeli";
- Text[ pt-BR ] = "AutoFormatar Tabela";
- Text[ th ] = "à¸à¸²à¸£à¸²à¸à¸£à¸¹à¸à¹à¸à¸à¸à¸±à¸à¹à¸à¸¡à¸±à¸à¸´";
- Text[ ja ] = "ãªã¼ããã©ã¼ããã 表";
- Text[ ko ] = "í ìë ìì";
- Text[ zh-CN ] = "èªå¨æ ¼å¼ è¡¨æ ¼";
- Text[ zh-TW ] = "èªåæ ¼å¼ è¡¨æ ¼";
- Text[ tr ] = "Otomatik formatlama Tablo";
- Text[ hi-IN ] = "सारणॠà¤à¤¾ सà¥à¤µà¤à¤¾à¤²à¤¿à¤¤ रà¤à¤¨à¤¾";
- Text[ ar ] = "تÙسÙ٠تÙÙائ٠ÙÙجدÙÙ";
- Text[ he ] = "Autoformat Tabelle";
-};
-String STR_TABLE_INSCOL
-{
- Text [ de ] = "Spalte einfügen" ;
- Text [ en-US ] = "Insert Column" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir coluna";
- Text[ ru ] = "ÐÑÑавиÑÑ ÑÑолбеÑ";
- Text[ el ] = "ÎιÏαγÏγή ÏÏήληÏ";
- Text[ nl ] = "Kolom invoegen";
- Text[ fr ] = "Insérer une colonne";
- Text[ es ] = "Insertar columna";
- Text[ fi ] = "Lisää sarake";
- Text[ ca ] = "Insereix una columna";
- Text[ it ] = "Inserisci colonna";
- Text[ sk ] = "Vložiť stĺpec";
- Text[ da ] = "Indsæt kolonne";
- Text[ sv ] = "Infoga kolumn";
- Text[ pl ] = "Wstaw kolumnÄ";
- Text[ pt-BR ] = "Inserir Coluna";
- Text[ th ] = "à¹à¸à¸£à¸à¸à¸à¸¥à¸±à¸¡à¸à¹";
- Text[ ja ] = "åã®æ¿å
¥";
- Text[ ko ] = "ì´ ì½ì
";
- Text[ zh-CN ] = "æå
¥å";
- Text[ zh-TW ] = "æå
¥æ¬";
- Text[ tr ] = "Sütunu ekle";
- Text[ hi-IN ] = "सà¥à¤¤à¤à¤ à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج عÙ
Ùد";
- Text[ he ] = "â®××× ×¡×ª ××רâ¬";
-};
-String STR_TABLE_INSROW
-{
- Text [ de ] = "Zeile einfügen" ;
- Text [ en-US ] = "Insert Row" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Inserir linha";
- Text[ ru ] = "ÐÑÑавиÑÑ ÑÑÑокÑ";
- Text[ el ] = "ÎιÏαγÏγή γÏαμμήÏ";
- Text[ nl ] = "Rij invoegen";
- Text[ fr ] = "Insérer une ligne";
- Text[ es ] = "Insertar fila";
- Text[ fi ] = "Lisää rivi";
- Text[ ca ] = "Insereix una fila";
- Text[ it ] = "Inserisci riga";
- Text[ sk ] = "Vložiť riadok";
- Text[ da ] = "Indsæt række";
- Text[ sv ] = "Infoga rad";
- Text[ pl ] = "Wstaw wiersz";
- Text[ pt-BR ] = "Inserir Linha";
- Text[ th ] = "à¹à¸à¸£à¸à¹à¸à¸§";
- Text[ ja ] = "è¡ã®æ¿å
¥";
- Text[ ko ] = "í ì½ì
";
- Text[ zh-CN ] = "æå
¥è¡";
- Text[ zh-TW ] = "æå
¥è¡";
- Text[ tr ] = "Satır ekle";
- Text[ hi-IN ] = "पà¤à¤à¥à¤¤à¤¿ à¤à¥à¤¡à¤¼à¥";
- Text[ ar ] = "إدراج صÙ";
- Text[ he ] = "â®××× ×¡×ª ש×ר×â¬";
-};
-String STR_TABLE_DELBOX
-{
- Text [ de ] = "Zeile/Spalte löschen" ;
- Text [ en-US ] = "Delete row/column" ;
- Text [ x-comment ] = " ";
- Text[ pt ] = "Eliminar linha/coluna";
- Text[ ru ] = "УдалиÑÑ ÑÑÑокÑ/ÑÑолбеÑ";
- Text[ el ] = "ÎιαγÏαÏή γÏαμμήÏ/ÏÏήληÏ";
- Text[ nl ] = "Rij/Kolom wissen";
- Text[ fr ] = "Supprimer la ligne/colonne";
- Text[ es ] = "Borrar fila/columna";
- Text[ fi ] = "Poista rivi/sarake";
- Text[ ca ] = "Suprimeix la fila/columna";
- Text[ it ] = "Elimina riga/colonna";
- Text[ sk ] = "Odstrániť riadok/stĺpec";
... etc. - the rest is truncated
More information about the Libreoffice-commits
mailing list