2004-05-18 13:07:40 +00:00
|
|
|
|
/*************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* $RCSfile: undo.src,v $
|
|
|
|
|
*
|
2004-06-26 02:18:24 +00:00
|
|
|
|
* $Revision: 1.3 $
|
2004-05-18 13:07:40 +00:00
|
|
|
|
*
|
2004-06-26 02:18:24 +00:00
|
|
|
|
* last change: $Author: hjs $ $Date: 2004-06-26 03:18:24 $
|
2004-05-18 13:07:40 +00:00
|
|
|
|
*
|
|
|
|
|
* The Contents of this file are made available subject to the terms of
|
|
|
|
|
* either of the following licenses
|
|
|
|
|
*
|
|
|
|
|
* - GNU Lesser General Public License Version 2.1
|
|
|
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
|
|
|
*
|
|
|
|
|
* Sun Microsystems Inc., October, 2000
|
|
|
|
|
*
|
|
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
|
* =============================================
|
|
|
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* This library 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 for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Sun Industry Standards Source License Version 1.1
|
|
|
|
|
* =================================================
|
|
|
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
|
|
|
* Source License Version 1.1 (the "License"); You may not use this file
|
|
|
|
|
* except in compliance with the License. You may obtain a copy of the
|
|
|
|
|
* License at http://www.openoffice.org/license.html.
|
|
|
|
|
*
|
|
|
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
|
|
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
|
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
|
|
|
* See the License for the specific provisions governing your rights and
|
|
|
|
|
* obligations concerning the Software.
|
|
|
|
|
*
|
|
|
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
|
|
|
*
|
|
|
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
|
|
|
*
|
|
|
|
|
* All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Contributor(s): _______________________________________
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include <comcore.hrc>
|
|
|
|
|
#include <undo.hrc>
|
|
|
|
|
|
|
|
|
|
// Undo
|
|
|
|
|
String STR_CANT_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "unm<6E><6D>glich" ;
|
|
|
|
|
Text [ en-US ] = "not possible" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DELETE_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "L<><4C>schen: $1" ;
|
|
|
|
|
Text [ en-US ] = "Delete $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERT_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Einf<6E><66>gen: $1" ;
|
|
|
|
|
Text [ en-US ] = "Insert $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_OVR_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "<22><>berschreiben: $1" ;
|
|
|
|
|
Text [ en-US ] = "Overwrite: $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_SPLITNODE_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "neuer Absatz" ;
|
|
|
|
|
Text [ en-US ] = "New Paragraph" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_MOVE_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Verschieben: $1" ;
|
|
|
|
|
Text [ en-US ] = "Move: $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSATTR_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Attribute anwenden" ;
|
|
|
|
|
Text [ en-US ] = "Apply attributes" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_SETFMTCOLL_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Formatvorlagen anwenden: $1" ;
|
|
|
|
|
Text [ en-US ] = "Apply Styles: $1" ;
|
|
|
|
|
Text [ x-comment ] = "; All ; All \"Vorlage\"/Styles are always written with capital S. 10.5.00EM";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_RESET_ATTR_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Attribute zur<75><72>cksetzen" ;
|
|
|
|
|
Text [ en-US ] = "Reset attributes" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_APPLY_ATTR_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Attribute anwenden" ;
|
|
|
|
|
Text [ en-US ] = "Apply attributes" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERT_DOC_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Dokument einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert Document" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERT_GLOSSARY
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "AutoText einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert AutoText" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DELBOOKMARK
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Textmarke l<><6C>schen: $1" ;
|
|
|
|
|
Text [ en-US ] = "Delete bookmark: $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSBOOKMARK
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Textmarke einf<6E><66>gen: $1" ;
|
|
|
|
|
Text [ en-US ] = "Insert bookmark: $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_SORT_TBL
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Tabelle sortieren" ;
|
|
|
|
|
Text [ en-US ] = "Sort table" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_SORT_TXT
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Text sortieren" ;
|
|
|
|
|
Text [ en-US ] = "Sort text" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSTABLE_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Tabelle einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert Table" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TEXTTOTABLE_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Konvertierung Text -> Tabelle" ;
|
|
|
|
|
Text [ en-US ] = "Convert text -> table" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TABLETOTEXT_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Konvertierung Tabelle -> Text" ;
|
|
|
|
|
Text [ en-US ] = "Convert table to text" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_COPY_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Kopieren: $1" ;
|
|
|
|
|
Text [ en-US ] = "Copy: $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_REPLACE_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Ersetzen: $1 $2 $3" ;
|
|
|
|
|
Text [ en-US ] = "Replace $1 $2 $3" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERT_PAGE_BREAK_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Harter Seitenumbruch" ;
|
|
|
|
|
Text [ en-US ] = "Direct page break" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERT_COLUMN_BREAK_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Harter Spaltenumbruch" ;
|
|
|
|
|
Text [ en-US ] = "Direct column break" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_PLAY_MACRO_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Makro abspielen" ;
|
|
|
|
|
Text [ en-US ] = "Run macro" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERT_ENV_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Briefumschlag einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert Envelope" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DRAG_AND_COPY
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Kopieren: $1" ;
|
|
|
|
|
Text [ en-US ] = "Copy: $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DRAG_AND_MOVE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Verschieben: $1" ;
|
|
|
|
|
Text [ en-US ] = "Move: $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERT_RULER
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Ruler einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert ruler" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERT_CHART
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "%PRODUCTNAME Chart einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert %PRODUCTNAME Chart" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERTFLY
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Rahmen einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert frame" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DELETEFLY
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Rahmen l<><6C>schen" ;
|
|
|
|
|
Text [ en-US ] = "Delete frame" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_AUTOFORMAT
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "AutoFormat" ;
|
|
|
|
|
Text [ en-US ] = "AutoFormat" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TABLEHEADLINE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Tabellen<65><6E>berschrift" ;
|
|
|
|
|
Text [ en-US ] = "Table heading" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_REPLACE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Ersetzen: $1 $2 $3" ;
|
|
|
|
|
Text [ en-US ] = "Replace: $1 $2 $3" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERTSECTION
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Bereich einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert section" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DELETESECTION
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Bereich l<><6C>schen" ;
|
|
|
|
|
Text [ en-US ] = "Delete section" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_CHANGESECTION
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Bereich <20><>ndern" ;
|
|
|
|
|
Text [ en-US ] = "Modify section" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_CHANGESECTPASSWD
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Passwortschutz <20><>ndern" ;
|
|
|
|
|
Text [ en-US ] = "Change password protection" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_CHANGEDEFATTR
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Standardwerte <20><>ndern" ;
|
|
|
|
|
Text [ en-US ] = "Modify default values" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_OUTLINE_LR
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Gliederung stufen" ;
|
|
|
|
|
Text [ en-US ] = "Promote Outline" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_OUTLINE_UD
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Gliederung verschieben" ;
|
|
|
|
|
Text [ en-US ] = "Move outline" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSNUM
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Nummerierung einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert numbering" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_NUMUPDOWN
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Nummerierung stufen" ;
|
|
|
|
|
Text [ en-US ] = "Shift numbering" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_MOVENUM
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Abs<62><73>tze verschieben" ;
|
|
|
|
|
Text [ en-US ] = "Move paragraphs" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERTDRAW
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Zeichenobjekt einf<6E><66>gen: $1" ;
|
|
|
|
|
Text [ en-US ] = "Insert drawing object: $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_NUMORNONUM
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Nummer an/aus" ;
|
|
|
|
|
Text [ en-US ] = "Number On/Off" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INC_LEFTMARGIN
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Einzug vergr<67><72><EFBFBD><EFBFBD>ern" ;
|
|
|
|
|
Text [ en-US ] = "Increase Indent" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DEC_LEFTMARGIN
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Einzug verringern" ;
|
|
|
|
|
Text [ en-US ] = "Decrease indent" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERTLABEL
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Beschriftung einf<6E><66>gen: $1" ;
|
|
|
|
|
Text [ en-US ] = "Insert caption: $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_SETNUMRULESTART
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Nummerierung neu starten" ;
|
|
|
|
|
Text [ en-US ] = "Restart numbering" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_CHANGEFTN
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Fu<46><75>note <20><>ndern" ;
|
|
|
|
|
Text [ en-US ] = "Modify footnote" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_REDLINE
|
|
|
|
|
{
|
|
|
|
|
/* !! sollte NIE gebraucht/uebersetzt werden !! */
|
|
|
|
|
Text = "Redline" ;
|
|
|
|
|
};
|
|
|
|
|
String STR_ACCEPT_REDLINE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "<22><>nderung akzeptieren: $1" ;
|
|
|
|
|
Text [ en-US ] = "Accept change: $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_REJECT_REDLINE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "<22><>nderung ablehnen: $1" ;
|
|
|
|
|
Text [ en-US ] = "Reject change: $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_SPLIT_TABLE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Tabelle auftrennen" ;
|
|
|
|
|
Text [ en-US ] = "Split Table" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DONTEXPAND
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Attribut stoppen" ;
|
|
|
|
|
Text [ en-US ] = "Stop attribute" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_AUTOCORRECT
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "AutoKorrektur" ;
|
|
|
|
|
Text [ en-US ] = "AutoCorrect" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_MERGE_TABLE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Tabelle verbinden" ;
|
|
|
|
|
Text [ en-US ] = "Merge table";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
String STR_TRANSLITERATE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Gro<72><6F>-/Kleinschreibung" ;
|
|
|
|
|
Text [ en-US ] = "Case/Characters";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
String STR_DELNUM
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Nummerierung l<><6C>schen" ;
|
|
|
|
|
Text [ en-US ] = "Delete numbering" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DRAWUNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Zeichenobjekte: $1" ;
|
|
|
|
|
Text [ en-US ] = "Drawing objects: $1" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DRAWGROUP
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Zeichenobjekte gruppieren" ;
|
|
|
|
|
Text [ en-US ] = "Group draw objects" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DRAWUNGROUP
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Gruppenobjekt aufl<66><6C>sen" ;
|
|
|
|
|
Text [ en-US ] = "Ungroup drawing objects" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DRAWDELETE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Zeichenobjekte l<><6C>schen" ;
|
|
|
|
|
Text [ en-US ] = "Delete drawing objects" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_REREAD
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Grafik ersetzen" ;
|
|
|
|
|
Text [ en-US ] = "Replace graphics" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DELGRF
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Grafik l<><6C>schen" ;
|
|
|
|
|
Text [ en-US ] = "Delete graphics" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DELOLE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Objekt l<><6C>schen" ;
|
|
|
|
|
Text [ en-US ] = "Delete object" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TABLE_ATTR
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Tabellenattribute anwenden" ;
|
|
|
|
|
Text [ en-US ] = "Apply table attributes" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TABLE_AUTOFMT
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Autoformat Tabelle" ;
|
|
|
|
|
Text [ en-US ] = "AutoFormat Table" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TABLE_INSCOL
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Spalte einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert Column" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TABLE_INSROW
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Zeile einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert Row" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TABLE_DELBOX
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Zeile/Spalte l<><6C>schen" ;
|
|
|
|
|
Text [ en-US ] = "Delete row/column" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TABLE_SPLIT
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Zellen teilen" ;
|
|
|
|
|
Text [ en-US ] = "Split Cells" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TABLE_MERGE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Zelle verbinden" ;
|
|
|
|
|
Text [ en-US ] = "Merge Cells" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TABLE_NUMFORMAT
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Zelle formatieren" ;
|
|
|
|
|
Text [ en-US ] = "Format cell" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERT_TOX
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Einf<6E><66>gen Verzeichnis" ;
|
|
|
|
|
Text [ en-US ] = "Insert index" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_CLEAR_TOX_RANGE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Verzeichnis aufheben" ;
|
|
|
|
|
Text [ en-US ] = "Remove index" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TABLE_TBLCPYTBL
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Tabelle kopieren" ;
|
|
|
|
|
Text [ en-US ] = "Copy table" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TABLE_CPYTBL
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Tabelle kopieren" ;
|
|
|
|
|
Text [ en-US ] = "Copy table" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INS_FROM_SHADOWCRSR
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Cursor setzen" ;
|
|
|
|
|
Text [ en-US ] = "Set cursor" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_UNDO_CHAIN
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Textrahmen verbinden" ;
|
|
|
|
|
Text [ en-US ] = "Link text frames" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_UNDO_UNCHAIN
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Textrahmenverbindung l<><6C>sen" ;
|
|
|
|
|
Text [ en-US ] = "Unlink text frames" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_UNDO_FTNINFO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Fu<46><75>noteneinstellungen <20><>ndern" ;
|
|
|
|
|
Text [ en-US ] = "Modify footnote options" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_UNDO_ENDNOTEINFO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Endnoteneinstellungen <20><>ndern" ;
|
|
|
|
|
Text [ en-US ] = "Modify endnote settings" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_UNDO_COMPAREDOC
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Dokument vergleich" ;
|
|
|
|
|
Text [ en-US ] = "Compare Document" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_UNDO_SETFLYFRMFMT
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Rahmenvorlage anwenden" ;
|
|
|
|
|
Text [ en-US ] = "Apply frame style" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_UNDO_SETRUBYATTR
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Phonetische Symbole setzen" ;
|
|
|
|
|
Text [ en-US ] = "Ruby Setting";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
#102505#
|
|
|
|
|
String STR_UNDO_TMPAUTOCORR
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "AutoKorrektur" ;
|
|
|
|
|
Text [ en-US ] = "AutoCorrect" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERT_FOOTNOTE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Fu<46><75>note einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert footnote" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERT_URLBTN
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "URL Button einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "insert URL button";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_INSERT_URLTXT
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Hyperlink einf<6E><66>gen" ;
|
|
|
|
|
Text [ en-US ] = "Insert Hyperlink";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_DELETE_INVISIBLECNTNT
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "unischtbaren Inhalt enfernen" ;
|
|
|
|
|
Text [ en-US ] = "remove invisible content";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TOXCHANGE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Verzeichnis ge<67>ndert";
|
|
|
|
|
Text [ en-US ] = "Table/index changed";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_START_QUOTE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "'";
|
|
|
|
|
Text [ en-US ] = "'";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_END_QUOTE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "'";
|
|
|
|
|
Text [ en-US ] = "'";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_LDOTS
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "...";
|
|
|
|
|
Text [ en-US ] = "...";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_CLIPBOARD
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Zwischenablage";
|
|
|
|
|
Text [ en-US ] = "Clipboard";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_MULTISEL
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Mehrfachauswahl";
|
|
|
|
|
Text [ en-US ] = "multiple selection";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_TYPING_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] ="Eingabe: $1";
|
|
|
|
|
Text [ en-US ] = "Typing: $1";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_PASTE_CLIPBOARD_UNDO
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] ="Zwischenablage einf<6E>gen";
|
|
|
|
|
Text [ en-US ] = "Paste clipboard";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_YIELDS
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "->";
|
|
|
|
|
Text [ en-US ] = "->";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_OCCURRENCES_OF
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Vorkommen von";
|
|
|
|
|
Text [ en-US ] = "occurrences of";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_REDLINE_INSERT
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "$1 einf<6E>gen";
|
|
|
|
|
Text [ en-US ] = "Insert $1";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_REDLINE_DELETE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "$1 entfernen";
|
|
|
|
|
Text [ en-US ] = "Delete $1";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_REDLINE_FORMAT
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Attribute ge<67>ndert";
|
|
|
|
|
Text [ en-US ] = "Attributes changed";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_REDLINE_TABLE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Tabelle ge<67>ndert: ";
|
|
|
|
|
Text [ en-US ] = "Table changed";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_REDLINE_FMTCOLL
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Formatvorlage ge<67>ndert";
|
|
|
|
|
Text [ en-US ] = "Style changed";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_REDLINE_MULTIPLE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Mehrere <20>nderungen";
|
|
|
|
|
Text [ en-US ] = "multiple changes";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_N_REDLINES
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "$1 <20>nderungen";
|
|
|
|
|
Text [ en-US ] = "$1 changes";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_UNDO_PAGEDESC
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Seitenvorlage <20>ndern: $1";
|
|
|
|
|
Text [ en-US ] = "Change page style: $1";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_UNDO_PAGEDESC_CREATE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Neue Seitenvorlage: $1";
|
|
|
|
|
Text [ en-US ] = "Create page style: $1";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_UNDO_PAGEDESC_DELETE
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Seitenvorlage l<>schen: $1";
|
|
|
|
|
Text [ en-US ] = "Delete page style: $1";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_UNDO_HEADER_FOOTER
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Kopf-/Fu<46>zeile ge<67>ndert";
|
|
|
|
|
Text [ en-US ] = "Header/footer changed";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_UNDO_FIELD
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Feld ge<67>ndert";
|
|
|
|
|
Text [ en-US ] = "Field changed";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_FIELD
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Feld";
|
|
|
|
|
Text [ en-US ] = "Field";
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|
|
|
|
|
String STR_PARAGRAPHS
|
|
|
|
|
{
|
2004-06-26 02:18:24 +00:00
|
|
|
|
Text [ de ] = "Abs<62>tze" ;
|
|
|
|
|
Text [ en-US ] = "Paragraphs" ;
|
2004-05-18 13:07:40 +00:00
|
|
|
|
};
|