/************************************************************************* * * $RCSfile: align.src,v $ * * $Revision: 1.14 $ * * last change: $Author: dr $ $Date: 2001-05-16 11:52:02 $ * * 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 --------------------------------------------------------------- #include "dialogs.hrc" #include "helpid.hrc" #include "align.hrc" // pragma ---------------------------------------------------------------- #define MASKCOLOR \ MaskColor = Color { Red = 0xC000 ; Green = 0xC000 ; Blue = 0xC000 ; } // define --------------------------------------------------------------- #define IL_LOCK_MCOL Color { Red=0xFFFF; Green=0xFFFF; Blue=0xFFFF; } // RID_SVXPAGE_ALIGNMENT ------------------------------------------------- TabPage RID_SVXPAGE_ALIGNMENT { HelpId = HID_ALIGNMENT ; Hide = TRUE ; Text = "Ausrichtung" ; Text [ English ] = "Alignment" ; Text [ norwegian ] = "Alignment" ; Text [ italian ] = "Allineamento" ; Text [ portuguese_brazilian ] = "Alinhamento" ; Text [ portuguese ] = "Alinhamento" ; Text [ finnish ] = "Tasaus" ; Text [ danish ] = "Justering" ; Text [ french ] = "Alignement" ; Text [ swedish ] = "Justering" ; Text [ dutch ] = "Uitlijning" ; Text [ spanish ] = "Alineacin" ; Text [ english_us ] = "Alignment" ; Size = MAP_APPFONT ( 260 , 185 ) ; SVLook = TRUE ; FixedLine FL_ALIGNMENT { Pos = MAP_APPFONT ( 6 , 3 ) ; Size = MAP_APPFONT ( 248 , 8 ) ; Text = "Textausrichtung" ; Text [ ENGLISH ] = "Text alignment" ; }; FixedText FT_HORALIGN { Pos = MAP_APPFONT ( 12 ,14 ) ; Size = MAP_APPFONT ( 100 , 8 ) ; Text = "~Horizontal" ; Text [ ENGLISH ] = "~Horizontal" ; }; ListBox LB_HORALIGN { Border = TRUE; Pos = MAP_APPFONT ( 12 , 25 ); Size = MAP_APPFONT ( 100 , 48 ); TabStop = TRUE; DropDown = TRUE; StringList = { < "Standard" ; ALIGNDLG_HORALIGN_STD ; > ; < "Links" ; ALIGNDLG_HORALIGN_LEFT ; > ; < "Zentriert" ; ALIGNDLG_HORALIGN_CENTER ; > ; < "Rechts" ; ALIGNDLG_HORALIGN_RIGHT ; > ; < "Block" ; ALIGNDLG_HORALIGN_BLOCK ; > ; }; StringList [ ENGLISH ] = { < "Deafult" ; ALIGNDLG_HORALIGN_STD ; > ; < "Flush Left" ; ALIGNDLG_HORALIGN_LEFT ; > ; < "Centered" ; ALIGNDLG_HORALIGN_CENTER ; > ; < "Flush Right" ; ALIGNDLG_HORALIGN_RIGHT ; > ; < "Block" ; ALIGNDLG_HORALIGN_BLOCK ; > ; }; }; FixedText FT_INDENT { Pos = MAP_APPFONT ( 118 , 14 ) ; Size = MAP_APPFONT ( 32 , 8 ) ; Text = "Einzu~g" ; Text [ English ] = "~Indent" ; Text [ english_us ] = "I~ndent" ; Text [ swedish ] = "Indra~g" ; Text [ danish ] = "Indrykning" ; Text [ italian ] = "~Rientro" ; Text [ spanish ] = "Sangra" ; Text [ french ] = "~Retrait" ; Text [ dutch ] = "~Inspringing" ; Text [ portuguese_brazilian ] = "Einzu~g" ; Text [ portuguese ] = "A~vano" ; Text[ chinese_simplified ] = "(~N)"; Text[ russian ] = ""; Text[ polish ] = "Wcicie"; Text[ japanese ] = "(~N)"; Text[ chinese_traditional ] = "Y(~N)"; Text[ arabic ] = ""; Text[ dutch ] = "~Inspringing"; Text[ chinese_simplified ] = "(~N)"; Text[ greek ] = ""; Text[ korean ] = "鿩(~N)"; Text[ turkish ] = "Girinti"; Text[ language_user1 ] = " "; Text[ catalan ] = "Sangra"; Text[ finnish ] = "Indent"; }; MetricField ED_INDENT { Border = TRUE ; Pos = MAP_APPFONT ( 118 , 25 ) ; Size = MAP_APPFONT ( 30 , 12 ) ; Repeat = TRUE ; Spin = TRUE ; Minimum = 0 ; Maximum = 990 ; SpinSize = 10 ; Unit = FUNIT_POINT ; }; FixedText FT_VERALIGN { Pos = MAP_APPFONT ( 154 , 14 ) ; Size = MAP_APPFONT ( 100 , 8 ) ; Text = "~Vertikal" ; Text [ ENGLISH ] = "~Vertical" ; }; ListBox LB_VERALIGN { Border = TRUE; Pos = MAP_APPFONT ( 154 , 25 ); Size = MAP_APPFONT ( 100 , 48 ); TabStop = TRUE; DropDown = TRUE; StringList = { < "Standard" ; ALIGNDLG_VERALIGN_STD ; > ; < "Oben" ; ALIGNDLG_VERALIGN_TOP ; > ; < "Mitte" ; ALIGNDLG_VERALIGN_MID ; > ; < "Unten" ; ALIGNDLG_VERALIGN_BOTTOM ; > ; }; StringList [ ENGLISH ] = { < "Default" ; ALIGNDLG_VERALIGN_STD ; > ; < "Top" ; ALIGNDLG_VERALIGN_TOP ; > ; < "Middle" ; ALIGNDLG_VERALIGN_MID ; > ; < "Bottom" ; ALIGNDLG_VERALIGN_BOTTOM ; > ; }; }; FixedLine FL_ORIENTATION { Pos = MAP_APPFONT ( 6 , 43 ) ; Size = MAP_APPFONT ( 248 , 8 ) ; Text = "Schreibrichtung" ; Text [ ENGLISH ] = "Orientation" ; Text [ norwegian ] = "Orientation" ; Text [ italian ] = "Orientamento" ; Text [ portuguese_brazilian ] = "Orientao" ; Text [ portuguese ] = "Orientao" ; Text [ finnish ] = "Tekstin suunta" ; Text [ danish ] = "Skriveretning" ; Text [ french ] = "Sens d'criture" ; Text [ swedish ] = "Skrivriktning" ; Text [ dutch ] = "Schrijfrichting" ; Text [ spanish ] = "Direccin de escritura" ; Text [ english_us ] = "Text direction" ; Text[ chinese_simplified ] = ""; Text[ russian ] = " "; Text[ polish ] = "Kierunek pisania"; Text[ japanese ] = "̕"; Text[ chinese_traditional ] = "V"; Text[ arabic ] = " "; Text[ dutch ] = "Schrijfrichting"; Text[ chinese_simplified ] = ""; Text[ greek ] = " "; Text[ korean ] = "ؽƮ "; Text[ turkish ] = "Metin yn"; Text[ language_user1 ] = " "; Text[ catalan ] = "Direccin de escritura"; }; ImageButton BTN_TXTSTACKED { Pos = MAP_APPFONT ( 12 , 54 ) ; Size = MAP_APPFONT ( 12 , 43 ) ; TabStop = TRUE ; ButtonImage = Image { ImageBitmap = Bitmap { File = "txtstk.bmp" ; }; MASKCOLOR ; }; }; Control CTR_DIAL { HelpId = HID_ALIGNMENT_CTR_DIAL ; Pos = MAP_APPFONT ( 30 , 54 ) ; Size = MAP_APPFONT ( 42 , 43 ) ; Text = "ABCD" ; }; FixedText FT_DEGREES { Pos = MAP_APPFONT ( 78 , 59 ) ; Size = MAP_APPFONT ( 34 , 8 ) ; Text = "~Winkel" ; Text [ ENGLISH ] = "Angle" ; }; NumericField NF_DEGREES { Border = TRUE ; Pos = MAP_APPFONT ( 78 , 70 ) ; Size = MAP_APPFONT ( 34 , 12 ) ; TabStop = TRUE ; Repeat = TRUE ; Spin = TRUE ; StrictFormat = TRUE ; }; FixedText FT_BORDER_LOCK { Pos = MAP_APPFONT ( 118 , 59 ) ; Size = MAP_APPFONT ( 70 , 8 ) ; Text = "Bezugs~kante" ; Text [ ENGLISH ] = "Reference edge" ; Text [ english_us ] = "Re~ference edge" ; Text [ portuguese_brazilian ] = "Bezugs~kante" ; Text [ swedish ] = "Referens~kant" ; Text [ danish ] = "Referencekant" ; Text [ italian ] = "Bordo di ~riferimento" ; Text [ spanish ] = "~Aristas de referencia" ; Text [ french ] = "~Bord de rfrence" ; Text [ dutch ] = "~Invalshoek" ; Text [ portuguese ] = "Borda de ~referncia" ; Text[ chinese_simplified ] = "ñ(~F)"; Text[ russian ] = " "; Text[ polish ] = "Krawd odniesienia"; Text[ japanese ] = "ɂȂ鉏(~F)"; Text[ chinese_traditional ] = "ѷ(~F)"; Text[ arabic ] = " "; Text[ dutch ] = "~Invalshoek"; Text[ chinese_simplified ] = "ñ(~F)"; Text[ greek ] = " "; Text[ korean ] = " 𼭸(~F)"; Text[ turkish ] = "Referans ~kenar"; Text[ language_user1 ] = " "; Text[ catalan ] = "~Aristas de referencia"; Text[ finnish ] = "~Viitteen reuna"; }; Control CTR_BORDER_LOCK { HelpId = HID_ALIGNMENT_CTR_BORDER_LOCK ; Hide = TRUE ; Pos = MAP_APPFONT ( 118 , 70 ) ; Size = MAP_APPFONT ( 50 , 15 ) ; TabStop = TRUE ; }; FixedLine FL_SPACE { Pos = MAP_APPFONT ( 6 , 103 ) ; Size = MAP_APPFONT ( 248 , 8 ) ; Text = "Abstand zu Gitterlinien" ; Text [ ENGLISH ] = "Margins" ; Text [ norwegian ] = "Margins" ; Text [ italian ] = "Distanza dalle linee della griglia" ; Text [ portuguese_brazilian ] = "Margens" ; Text [ portuguese ] = "Margens da quadrcula" ; Text [ finnish ] = "Vlit ruudukon viivoihin" ; Text [ danish ] = "Afstand til gitterlinjer" ; Text [ french ] = "cart des lignes de la grille" ; Text [ swedish ] = "Avstnd till gitterlinjer" ; Text [ dutch ] = "Afstand tot rasterlijnen" ; Text [ spanish ] = "Distancia a la cuadrcula" ; Text [ english_us ] = "Spacing to grid lines" ; Text[ chinese_simplified ] = "ߵľ"; Text[ russian ] = " "; Text[ polish ] = "Odstp do linii siatki"; Text[ japanese ] = "دސ܂ł̊Ԋu"; Text[ chinese_traditional ] = "ܺuZ"; Text[ arabic ] = " "; Text[ dutch ] = "Afstand tot rasterlijnen"; Text[ chinese_simplified ] = "ߵľ"; Text[ greek ] = " "; Text[ korean ] = " "; Text[ turkish ] = "Klavuz izgilere uzaklk"; Text[ language_user1 ] = " "; Text[ catalan ] = "Distancia a la cuadrcula"; }; FixedText FT_LEFTSPACE { Pos = MAP_APPFONT ( 12 , 116 ) ; Size = MAP_APPFONT ( 34 , 8 ) ; Text = "L~inks" ; Text [ ENGLISH ] = "L~eft" ; Text [ norwegian ] = "L~eft" ; Text [ italian ] = "A sinistra" ; Text [ portuguese_brazilian ] = "E~squerda" ; Text [ portuguese ] = "E~squerda" ; Text [ finnish ] = "Vasen" ; Text [ danish ] = "Venstre" ; Text [ french ] = "~ gauche" ; Text [ swedish ] = "Vnster" ; Text [ dutch ] = "~Links" ; Text [ spanish ] = "I~zquierda" ; Text [ english_us ] = "Lef~t" ; Text[ chinese_simplified ] = "(~E)"; Text[ russian ] = ""; Text[ polish ] = "Z lewej"; Text[ japanese ] = "(~E)"; Text[ chinese_traditional ] = "V(~E)"; Text[ arabic ] = ""; Text[ dutch ] = "~Links"; Text[ chinese_simplified ] = "(~E)"; Text[ greek ] = ""; Text[ korean ] = "(~E)"; Text[ turkish ] = "~Sol"; Text[ language_user1 ] = " "; Text[ catalan ] = "I~zquierda"; }; MetricField ED_LEFTSPACE { Border = TRUE ; Pos = MAP_APPFONT ( 48 , 114 ) ; Size = MAP_APPFONT ( 40 , 12 ) ; TabStop = TRUE ; Repeat = TRUE ; Spin = TRUE ; SpinSize = 1 ; DecimalDigits = 1 ; Maximum = 100 ; Last = 100 ; Unit = FUNIT_MM ; }; FixedText FT_RIGHTSPACE { Pos = MAP_APPFONT ( 12 , 132 ) ; Size = MAP_APPFONT ( 34 , 8 ) ; Text = "Recht~s" ; Text [ ENGLISH ] = "Rig~ht" ; Text [ norwegian ] = "Rig~ht" ; Text [ italian ] = "A destra" ; Text [ portuguese_brazilian ] = "Dir~eita" ; Text [ portuguese ] = "Dir~eita" ; Text [ finnish ] = "Oikea" ; Text [ danish ] = "Hjre" ; Text [ french ] = " droite" ; Text [ swedish ] = "~Hger" ; Text [ dutch ] = "~Rechts" ; Text [ spanish ] = "Derec~ha" ; Text [ english_us ] = "Right" ; Text[ chinese_simplified ] = "(~H)"; Text[ russian ] = ""; Text[ polish ] = "Z prawej"; Text[ japanese ] = "E"; Text[ chinese_traditional ] = "Vk(~H)"; Text[ arabic ] = ""; Text[ dutch ] = "~Rechts"; Text[ chinese_simplified ] = "(~H)"; Text[ greek ] = ""; Text[ korean ] = ""; Text[ turkish ] = "~Sa"; Text[ language_user1 ] = " "; Text[ catalan ] = "Derec~ha"; }; MetricField ED_RIGHTSPACE { Border = TRUE ; Pos = MAP_APPFONT ( 48 , 130 ) ; Size = MAP_APPFONT ( 40 , 12 ) ; TabStop = TRUE ; Repeat = TRUE ; Spin = TRUE ; SpinSize = 1 ; DecimalDigits = 1 ; Maximum = 100 ; Last = 100 ; Unit = FUNIT_MM ; }; FixedText FT_TOPSPACE { Pos = MAP_APPFONT ( 118 , 116 ) ; Size = MAP_APPFONT ( 34 , 8 ) ; Text = "Obe~n" ; Text [ ENGLISH ] = "To~p" ; Text [ norwegian ] = "To~p" ; Text [ italian ] = "In alto" ; Text [ portuguese_brazilian ] = "To~po" ; Text [ portuguese ] = "Em ~cima" ; Text [ finnish ] = "~Ylosa" ; Text [ danish ] = "verst" ; Text [ french ] = "~En haut" ; Text [ swedish ] = "~verst" ; Text [ dutch ] = "~Boven" ; Text [ spanish ] = "Arr~iba" ; Text [ english_us ] = "To~p" ; Text[ chinese_simplified ] = "(~P)"; Text[ russian ] = ""; Text[ polish ] = "W grze"; Text[ japanese ] = "(~P)"; Text[ chinese_traditional ] = "VW(~P)"; Text[ arabic ] = ""; Text[ dutch ] = "~Boven"; Text[ chinese_simplified ] = "(~P)"; Text[ greek ] = "~"; Text[ korean ] = "(~P)"; Text[ turkish ] = "~st"; Text[ language_user1 ] = " "; Text[ catalan ] = "Arr~iba"; }; MetricField ED_TOPSPACE { Border = TRUE ; Pos = MAP_APPFONT ( 154 , 114 ) ; Size = MAP_APPFONT ( 40 , 12 ) ; TabStop = TRUE ; Repeat = TRUE ; Spin = TRUE ; SpinSize = 1 ; DecimalDigits = 1 ; Maximum = 100 ; Last = 100 ; Unit = FUNIT_MM ; }; FixedText FT_BOTTOMSPACE { Pos = MAP_APPFONT ( 118 , 132 ) ; Size = MAP_APPFONT ( 34 , 8 ) ; Text = "Unt~en" ; Text [ ENGLISH ] = "Botto~m" ; Text [ norwegian ] = "Botto~m" ; Text [ italian ] = "In basso" ; Text [ portuguese_brazilian ] = "Bas~e" ; Text [ portuguese ] = "Em ~baixo" ; Text [ finnish ] = "~Alaosa" ; Text [ danish ] = "Nederst" ; Text [ french ] = "En ~bas" ; Text [ swedish ] = "Un~derst" ; Text [ dutch ] = "~Onder" ; Text [ spanish ] = "Abaj~o" ; Text [ english_us ] = "Botto~m" ; Text[ chinese_simplified ] = "(~M)"; Text[ russian ] = ""; Text[ polish ] = "W dole"; Text[ japanese ] = "(~M)"; Text[ chinese_traditional ] = "VU(~M)"; Text[ arabic ] = ""; Text[ dutch ] = "~Onder"; Text[ chinese_simplified ] = "(~M)"; Text[ greek ] = ""; Text[ korean ] = "Ʒ(~M)"; Text[ turkish ] = "Al~t"; Text[ language_user1 ] = " "; Text[ catalan ] = "Abaj~o"; }; MetricField ED_BOTTOMSPACE { Border = TRUE ; Pos = MAP_APPFONT ( 154 , 130 ) ; Size = MAP_APPFONT ( 40 , 12 ) ; TabStop = TRUE ; Repeat = TRUE ; Spin = TRUE ; SpinSize = 1 ; DecimalDigits = 1 ; Maximum = 100 ; Last = 100 ; Unit = FUNIT_MM ; }; FixedLine FL_WRAP { Pos = MAP_APPFONT ( 6 , 148 ) ; Size = MAP_APPFONT ( 248 , 8 ) ; Text = "Textfluss" ; Text [ English ] = "Text Flow" ; Text [ english_us ] = "Text flow" ; Text [ swedish ] = "Textflde" ; Text [ danish ] = "Tekstretning" ; Text [ italian ] = "Flusso di testo" ; Text [ spanish ] = "Flujo del texto" ; Text [ french ] = "Enchanements" ; Text [ dutch ] = "Tekstverloop" ; Text [ portuguese_brazilian ] = "Textflu" ; Text [ portuguese ] = "Fluxo de texto" ; Text[ chinese_simplified ] = "кͷҳ"; Text[ russian ] = " "; Text[ polish ] = "Tekst"; Text[ japanese ] = "̍"; Text[ chinese_traditional ] = "M"; Text[ arabic ] = " "; Text[ dutch ] = "Tekstverloop"; Text[ chinese_simplified ] = "кͷҳ"; Text[ greek ] = " "; Text[ korean ] = "ؽƮ 帧"; Text[ turkish ] = "Metin ak"; Text[ language_user1 ] = " "; Text[ catalan ] = "Flujo del texto"; Text[ finnish ] = "Tekstin rivitys"; Text[ language_user1 ] = " "; Text[ catalan ] = "Flujo del texto"; }; TriStateBox BTN_WRAP { Pos = MAP_APPFONT ( 12 , 159 ) ; Size = MAP_APPFONT ( 100 , 10 ) ; Text = "Zeilenumbru~ch" ; Text [ ENGLISH ] = "Linebrea~k" ; Text [ norwegian ] = "Linebrea~k" ; Text [ italian ] = "Testo a capo" ; Text [ portuguese_brazilian ] = "Interrup~ao de linha" ; Text [ portuguese ] = "Quebra de ~linha" ; Text [ finnish ] = "Rivinvaihto" ; Text [ danish ] = "Linjeskift" ; Text [ french ] = "R~envoi la ligne" ; Text [ swedish ] = "Rad~brytning" ; Text [ dutch ] = "~Regelafbreking" ; Text [ spanish ] = "Salto de ~lnea" ; Text [ english_us ] = "Line break" ; Text[ chinese_simplified ] = "(~L)"; Text[ russian ] = " "; Text[ polish ] = "Podzia wierszy"; Text[ japanese ] = "s"; Text[ chinese_traditional ] = "(~L)"; Text[ arabic ] = " "; Text[ dutch ] = "~Regelafbreking"; Text[ chinese_simplified ] = "(~L)"; Text[ greek ] = " "; Text[ korean ] = ""; Text[ turkish ] = "Satr son~u"; Text[ language_user1 ] = " "; Text[ catalan ] = "Salto de ~lnea"; }; ImageList IL_LOCK_BMPS { ImageBitmap = Bitmap { File = "lockmode.bmp" ; }; MaskColor = IL_LOCK_MCOL ; IdList = { IID_BOTTOMLOCK ; IID_TOPLOCK ; IID_CELLLOCK ; }; IdCount = { 3 ; }; }; String STR_BOTTOMLOCK { Text = "Textausdehnung von unterer Zellkante aus." ; Text [ English ] = "Text direction by lower cell-edge" ; Text [ english_us ] = "Text Extension From Lower Cell Border" ; Text [ portuguese_brazilian ] = "Textausdehnung von unterer Zellkante aus." ; Text [ swedish ] = "Textutstrckning frn nedre cellkanten." ; Text [ danish ] = "Tekstudstrkning ud fra nederste cellekant" ; Text [ italian ] = "Estensione del testo dal bordo inferiore della cella." ; Text [ spanish ] = "Expansin del texto a partir del borde inferior de la celda." ; Text [ french ] = "Extension de texte partir du bord infrieur de la cellule" ; Text [ dutch ] = "Inhoud uitbreiden vanaf onderkant cel." ; Text [ portuguese ] = "Expanso do texto a partir do canto inferior da clula." ; Text[ chinese_simplified ] = "ִӵԪ±Ե졣"; Text[ russian ] = " ."; Text[ polish ] = "Rozcignicie tekstu od dolnej krawdzi komrki."; Text[ japanese ] = "ق̉ɌX"; Text[ language_user1 ] = " "; Text[ chinese_traditional ] = "rqxsUtC"; Text[ arabic ] = " ."; Text[ dutch ] = "Inhoud uitbreiden vanaf onderkant cel."; Text[ chinese_simplified ] = "ִӵԪ±Ե졣"; Text[ greek ] = " ."; Text[ korean ] = " Ʒ ׵θ ؽƮ Ȯ"; Text[ turkish ] = "Hcre alt kenarndan metin genilemesi"; Text[ catalan ] = "Expansin del texto a partir del borde inferior de la celda."; Text[ finnish ] = "Tekstin laajennus solun alareunasta"; }; String STR_TOPLOCK { Text = "Textausdehnung von oberer Zellkante aus." ; Text [ English ] = "Text direction by upper cell-edge" ; Text [ english_us ] = "Text Extension From Upper Cell Border" ; Text [ portuguese_brazilian ] = "Textausdehnung von oberer Zellkante aus." ; Text [ swedish ] = "Textutstrckning frn vre cellkanten." ; Text [ danish ] = "Tekstudstrkning ud fra verste cellerand." ; Text [ italian ] = "Estensione del testo dal bordo superiore della cella." ; Text [ spanish ] = "Expansin del texto a partir del borde superior de la celda." ; Text [ french ] = "Extension de texte partir du bord suprieur de la cellule" ; Text [ dutch ] = "Inhoud uitbreiden vanaf bovenkant cel." ; Text [ portuguese ] = "Expanso do texto a partir do canto superior da clula." ; Text[ chinese_simplified ] = "ִӵԪϱԵչ"; Text[ russian ] = " ."; Text[ polish ] = "Rozcignicie tekstu od grnej krawdzi komrki."; Text[ japanese ] = "ق̏㉏ɌX"; Text[ language_user1 ] = " "; Text[ chinese_traditional ] = "rqxsWtC"; Text[ arabic ] = " ."; Text[ dutch ] = "Inhoud uitbreiden vanaf bovenkant cel."; Text[ chinese_simplified ] = "ִӵԪϱԵչ"; Text[ greek ] = " ."; Text[ korean ] = " ׵θ ؽƮ Ȯ"; Text[ turkish ] = "Hcre st kenarndan metin genilemesi."; Text[ catalan ] = "Expansin del texto a partir del borde superior de la celda."; Text[ finnish ] = "Tekstin laajennus solun ylreunasta"; }; String STR_CELLLOCK { Text = "Textausdehnung nur innerhalb der Zelle." ; Text [ English ] = "Text- expanding only inside cell" ; Text [ english_us ] = "Text Extension Inside Cell" ; Text [ portuguese_brazilian ] = "Textausdehnung nur innerhalb der Zelle." ; Text [ swedish ] = "Textutstrckning endast inom cellen." ; Text [ danish ] = "Tekstudstrkning kun indenfor cellen." ; Text [ italian ] = "Estensione del testo solo all'interno della cella." ; Text [ spanish ] = "Expansin del texto solo dentro de la celda." ; Text [ french ] = "Extension de texte uniquement l'intrieur de la cellule." ; Text [ dutch ] = "Inhoud uitbreiden alleen binnen cel." ; Text [ portuguese ] = "Expanso do texto apenas dentro da clula." ; Text[ chinese_simplified ] = "ֻڵԪչ"; Text[ russian ] = " ."; Text[ polish ] = "Rozcignicie tekstu tylko wewntrz komrki."; Text[ japanese ] = "÷Ă̂݌X"; Text[ language_user1 ] = " "; Text[ chinese_traditional ] = "rubxs椺C"; Text[ arabic ] = " ."; Text[ dutch ] = "Inhoud uitbreiden alleen binnen cel."; Text[ chinese_simplified ] = "ֻڵԪչ"; Text[ greek ] = " ."; Text[ korean ] = " ȿ ؽƮ Ȯ"; Text[ turkish ] = "Yalnzca hcre iinde metin genilemesi"; Text[ catalan ] = "Expansin del texto solo dentro de la celda."; Text[ finnish ] = "Tekstin laajennus solun sisll"; }; Text[ chinese_simplified ] = ""; Text[ russian ] = ""; Text[ polish ] = "Wyrwnanie"; Text[ japanese ] = "zu"; Text[ chinese_traditional ] = ""; Text[ arabic ] = ""; Text[ dutch ] = "Uitlijning"; Text[ chinese_simplified ] = ""; Text[ greek ] = ""; Text[ korean ] = ""; Text[ turkish ] = "Hizalama"; Text[ language_user1 ] = " "; Text[ catalan ] = "Alineacin"; }; // ********************************************************************** EOF