[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