Kaydet (Commit) 633222e3 authored tarafından Oliver Specht's avatar Oliver Specht

#86941# Position added, default character style used, HeaderBar replaced

üst 4e8943e4
......@@ -2,9 +2,9 @@
*
* $RCSfile: rubydialog.hxx,v $
*
* $Revision: 1.3 $
* $Revision: 1.4 $
*
* last change: $Author: os $ $Date: 2001-02-16 14:46:51 $
* last change: $Author: os $ $Date: 2001-06-01 10:10:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -71,9 +71,6 @@
#include <sfx2/basedlgs.hxx>
#endif
#ifndef _HEADBAR_HXX
#include <svtools/headbar.hxx>
#endif
#ifndef _SV_LSTBOX_HXX
#include <vcl/lstbox.hxx>
#endif
......@@ -125,8 +122,9 @@ class SvxRubyDialog : public SfxModelessDialog
{
friend class RubyPreview;
HeaderBar aHeaderHB;
FixedText aLeftFT;
RubyEdit aLeft1ED;
FixedText aRightFT;
RubyEdit aRight1ED;
RubyEdit aLeft2ED;
RubyEdit aRight2ED;
......@@ -143,6 +141,9 @@ class SvxRubyDialog : public SfxModelessDialog
FixedText aAdjustFT;
ListBox aAdjustLB;
FixedText aPositionFT;
ListBox aPositionLB;
FixedText aCharStyleFT;
ListBox aCharStyleLB;
PushButton aStylistPB;
......@@ -154,9 +155,6 @@ class SvxRubyDialog : public SfxModelessDialog
PushButton aClosePB;
HelpButton aHelpPB;
String sBaseText;
String sRubyText;
long nLastPos;
long nCurrentEdit;
BOOL bModified;
......@@ -167,9 +165,9 @@ class SvxRubyDialog : public SfxModelessDialog
DECL_LINK(ApplyHdl_Impl, PushButton*);
DECL_LINK(CloseHdl_Impl, PushButton*);
DECL_LINK(StylistHdl_Impl, PushButton*);
DECL_LINK(DragHdl_Impl, HeaderBar*);
DECL_LINK(AutomaticHdl_Impl, CheckBox*);
DECL_LINK(ScrollHdl_Impl, ScrollBar*);
DECL_LINK(PositionHdl_Impl, ListBox*);
DECL_LINK(AdjustHdl_Impl, ListBox*);
DECL_LINK(CharStyleHdl_Impl, ListBox*);
DECL_LINK(EditModifyHdl_Impl, Edit*);
......@@ -189,7 +187,8 @@ class SvxRubyDialog : public SfxModelessDialog
void EnableControls(sal_Bool bEnable)
{
aHeaderHB.Enable(bEnable);
aLeftFT.Enable(bEnable);
aRightFT.Enable(bEnable);
aLeft1ED.Enable(bEnable);
aRight1ED.Enable(bEnable);
aLeft2ED.Enable(bEnable);
......
......@@ -2,9 +2,9 @@
*
* $RCSfile: rubydialog.cxx,v $
*
* $Revision: 1.6 $
* $Revision: 1.7 $
*
* last change: $Author: os $ $Date: 2001-04-17 13:35:37 $
* last change: $Author: os $ $Date: 2001-06-01 10:08:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -127,8 +127,10 @@ static const sal_Char cRubyBaseText[] = "RubyBaseText";
static const sal_Char cRubyText[] = "RubyText";
static const sal_Char cCharacterStyles[] = "CharacterStyles";
static const sal_Char cRubyAdjust[] = "RubyAdjust";
static const sal_Char cRubyIsAbove[] = "RubyIsAbove";
static const sal_Char cDisplayName[] = "DisplayName";
static const sal_Char cRubyCharStyleName[] = "RubyCharStyleName";
static const sal_Char cPhoneticSymbols[] = "Phonetic Symbols";
/* -----------------------------09.01.01 17:24--------------------------------
---------------------------------------------------------------------------*/
......@@ -164,7 +166,8 @@ struct SvxRubyData_Impl
SvxRubyDialog::SvxRubyDialog( SfxBindings *pBind, SfxChildWindow *pCW,
Window* pParent, const ResId& rResId ) :
SfxModelessDialog( pBind, pCW, pParent, rResId ),
aHeaderHB(this, ResId(HB_HEADER )),
aLeftFT(this, ResId(FT_LEFT )),
aRightFT(this, ResId(FT_RIGHT )),
aLeft1ED(this, ResId(ED_LEFT_1 )),
aRight1ED(this, ResId(ED_RIGHT_1 )),
aLeft2ED(this, ResId(ED_LEFT_2 )),
......@@ -177,6 +180,8 @@ SvxRubyDialog::SvxRubyDialog( SfxBindings *pBind, SfxChildWindow *pCW,
aAutoDetectionCB(this, ResId(CB_AUTO_DETECT )),
aAdjustFT(this, ResId(FT_ADJUST )),
aAdjustLB(this, ResId(LB_ADJUST )),
aPositionFT(this, ResId(FT_POSITION )),
aPositionLB(this, ResId(LB_POSITION )),
aCharStyleFT(this, ResId(FT_CHAR_STYLE )),
aCharStyleLB(this, ResId(LB_CHAR_STYLE )),
aStylistPB(this, ResId(PB_STYLIST )),
......@@ -185,8 +190,6 @@ SvxRubyDialog::SvxRubyDialog( SfxBindings *pBind, SfxChildWindow *pCW,
aApplyPB(this, ResId(PB_APPLY )),
aClosePB(this, ResId(PB_CLOSE )),
aHelpPB(this, ResId(PB_HELP )),
sBaseText(ResId(ST_BASE)),
sRubyText(ResId(ST_RUBY)),
pBindings(pBind),
nLastPos(0),
nCurrentEdit(0),
......@@ -203,10 +206,9 @@ SvxRubyDialog::SvxRubyDialog( SfxBindings *pBind, SfxChildWindow *pCW,
aApplyPB.SetClickHdl(LINK(this, SvxRubyDialog, ApplyHdl_Impl));
aClosePB.SetClickHdl(LINK(this, SvxRubyDialog, CloseHdl_Impl));
aStylistPB.SetClickHdl(LINK(this, SvxRubyDialog, StylistHdl_Impl));
aHeaderHB.SetDragHdl( LINK(this, SvxRubyDialog, DragHdl_Impl));
aHeaderHB.SetEndDragHdl( LINK(this, SvxRubyDialog, DragHdl_Impl));
aAutoDetectionCB.SetClickHdl(LINK(this, SvxRubyDialog, AutomaticHdl_Impl));
aAdjustLB.SetSelectHdl(LINK(this, SvxRubyDialog, AdjustHdl_Impl));
aPositionLB.SetSelectHdl(LINK(this, SvxRubyDialog, PositionHdl_Impl));
aCharStyleLB.SetSelectHdl(LINK(this, SvxRubyDialog, CharStyleHdl_Impl));
Link aScrLk(LINK(this, SvxRubyDialog, ScrollHdl_Impl));
......@@ -217,15 +219,6 @@ SvxRubyDialog::SvxRubyDialog( SfxBindings *pBind, SfxChildWindow *pCW,
Link aEditLk(LINK(this, SvxRubyDialog, EditModifyHdl_Impl));
for(USHORT i = 0; i < 8; i++)
aEditArr[i]->SetModifyHdl(aEditLk);
long nWidth = aHeaderHB.GetSizePixel().Width();
aHeaderHB.InsertItem( 1, sBaseText, nWidth/2 );
aHeaderHB.InsertItem( 2, sRubyText, nWidth/2 );
aHeaderHB.SetStyle(aHeaderHB.GetStyle()|WB_STDHEADERBAR|WB_TABSTOP|WB_BORDER);
Size aHBSize(aHeaderHB.GetSizePixel());
aHBSize.Height() = aHeaderHB.CalcWindowSizePixel().Height();
aHeaderHB.SetSizePixel(aHBSize);
aHeaderHB.Show();
}
/* -----------------------------09.01.01 17:17--------------------------------
......@@ -240,7 +233,7 @@ SvxRubyDialog::~SvxRubyDialog()
---------------------------------------------------------------------------*/
void SvxRubyDialog::ClearCharStyleList()
{
for(USHORT i = 1; i < aCharStyleLB.GetEntryCount(); i++)
for(USHORT i = 0; i < aCharStyleLB.GetEntryCount(); i++)
{
void* pData = aCharStyleLB.GetEntryData(i);
delete (OUString*)pData;
......@@ -407,6 +400,7 @@ void SvxRubyDialog::Update()
SetModified(FALSE);
sal_Int16 nAdjust = -1;
sal_Int16 nPosition = -1;
OUString sCharStyleName, sTmp;
sal_Bool bCharStyleEqual = sal_True;
for(sal_Int32 nRuby = 0; nRuby < nLen; nRuby++)
......@@ -425,6 +419,15 @@ void SvxRubyDialog::Update()
else if(nAdjust != nTmp)
nAdjust = -2;
}
if(nPosition > -2 &&
pProps[nProp].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(cRubyIsAbove)))
{
sal_Bool bTmp = *(sal_Bool*)pProps[nProp].Value.getValue();
if(!nRuby)
nPosition = bTmp ? 0 : 1;
else if(!nPosition && !bTmp || nPosition == 1 && bTmp )
nPosition = -2;
}
if(bCharStyleEqual &&
pProps[nProp].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(cRubyCharStyleName)))
{
......@@ -440,10 +443,22 @@ void SvxRubyDialog::Update()
aAdjustLB.SelectEntryPos(nAdjust);
else
aAdjustLB.SetNoSelection();
if(nPosition > -1)
aPositionLB.SelectEntryPos(nPosition ? 1 : 0);
if(bCharStyleEqual && !sCharStyleName.getLength())
sCharStyleName = C2U(cPhoneticSymbols);
if(sCharStyleName.getLength())
aCharStyleLB.SelectEntry(sCharStyleName);
else if(bCharStyleEqual)
aCharStyleLB.SelectEntryPos(0);
{
for(USHORT i = 0; i < aCharStyleLB.GetEntryCount(); i++)
{
const OUString* pCoreName = (const OUString*)aCharStyleLB.GetEntryData(i);
if(pCoreName && sCharStyleName == *pCoreName)
{
aCharStyleLB.SelectEntryPos(i);
break;
}
}
}
else
aCharStyleLB.SetNoSelection();
......@@ -541,6 +556,27 @@ IMPL_LINK(SvxRubyDialog, AdjustHdl_Impl, ListBox*, pBox)
aPreviewWin.Invalidate();
return 0;
}
/* -----------------------------01.06.01 10:24--------------------------------
---------------------------------------------------------------------------*/
IMPL_LINK(SvxRubyDialog, PositionHdl_Impl, ListBox*, pBox)
{
sal_Bool bAbove = !pBox->GetSelectEntryPos();
const Type& rType = ::getBooleanCppuType();
for(sal_Int32 nRuby = 0; nRuby < pImpl->aRubyValues.getLength(); nRuby++)
{
Sequence<PropertyValue> &rProps = pImpl->aRubyValues.getArray()[nRuby];
PropertyValue* pProps = rProps.getArray();
for(sal_Int32 nProp = 0; nProp < rProps.getLength(); nProp++)
{
if(pProps[nProp].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(cRubyIsAbove)))
pProps[nProp].Value.setValue(&bAbove, rType);
}
SetModified(TRUE);
}
aPreviewWin.Invalidate();
return 0;
}
/* -----------------------------01.02.01 10:06--------------------------------
---------------------------------------------------------------------------*/
......@@ -596,19 +632,6 @@ void lcl_MoveBox(long nOffset, Edit& rLeft, Edit& rRight)
rRight.SetPosSizePixel(aRightPos, aRightSz);
}
//-----------------------------------------------------------------------------
IMPL_LINK(SvxRubyDialog, DragHdl_Impl, HeaderBar*, pHead)
{
SetUpdateMode(FALSE);
Size aLeftSz(aLeft1ED.GetSizePixel());
long nOffset = pHead->GetItemSize( 1 ) - aLeftSz.Width();
lcl_MoveBox(nOffset, aLeft1ED, aRight1ED);
lcl_MoveBox(nOffset, aLeft2ED, aRight2ED);
lcl_MoveBox(nOffset, aLeft3ED, aRight3ED);
lcl_MoveBox(nOffset, aLeft4ED, aRight4ED);
SetUpdateMode(TRUE);
return 0;
}
/* -----------------------------16.02.01 08:09--------------------------------
---------------------------------------------------------------------------*/
......@@ -654,6 +677,15 @@ void RubyPreview::Paint( const Rectangle& rRect )
long nYRuby = aWinSize.Height() / 4 - nTextHeight / 2;
long nYBase = aWinSize.Height() * 3 / 4 - nTextHeight / 2;
//use above also if no selection is set
BOOL bAbove = rParentDlg.aPositionLB.GetSelectEntryPos() != 1;
if(!bAbove)
{
long nTmp = nYRuby;
nYRuby = nYBase;
nYBase = nTmp;
}
long nYOutput, nOutTextWidth;
String sOutputText;
......
......@@ -2,9 +2,9 @@
*
* $RCSfile: rubydialog.hrc,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: os $ $Date: 2001-02-02 11:41:31 $
* last change: $Author: os $ $Date: 2001-06-01 10:08:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -78,8 +78,10 @@
#define ED_RIGHT_4 17
#define HB_HEADER 18
#define SB_SCROLL 19
#define ST_BASE 20
#define ST_RUBY 21
#define FT_LEFT 20
#define FT_RIGHT 21
#define FT_ADJUST 22
#define LB_ADJUST 23
#define FT_POSITION 24
#define LB_POSITION 25
......@@ -2,9 +2,9 @@
*
* $RCSfile: rubydialog.src,v $
*
* $Revision: 1.17 $
* $Revision: 1.18 $
*
* last change: $Author: rt $ $Date: 2001-05-30 20:36:54 $
* last change: $Author: os $ $Date: 2001-06-01 10:08:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -70,7 +70,7 @@ ModelessDialog RID_SVXDLG_RUBY
SVLook = TRUE ;
HelpId = HID_RUBY_DIALOG;
Pos = MAP_APPFONT ( 0 , 0 ) ;
Size = MAP_APPFONT ( 207 , 195 ) ;
Size = MAP_APPFONT ( 227 , 195 ) ;
Text = "Phonetisches Leitzeichen" ;
Text [ ENGLISH ] = "Ruby" ;
Moveable = TRUE ;
......@@ -102,63 +102,112 @@ ModelessDialog RID_SVXDLG_RUBY
Text[ catalan ] = "Reconocimiento automtico";
Text[ finnish ] = "Automatische Erkennung";
};
Window HB_HEADER
FixedText FT_LEFT
{
Pos = MAP_APPFONT ( 6 , 17 ) ;
Size = MAP_APPFONT ( 195 , 20 ) ;
Size = MAP_APPFONT ( 80 , 8 ) ;
Text = "~Basistext";
Text [English] = "Basis text";
Text[ english_us ] = "Base text";
Text[ portuguese ] = "Texto-base";
Text[ russian ] = " ";
Text[ greek ] = " ";
Text[ dutch ] = "Basistekst";
Text[ french ] = "Texte de base";
Text[ spanish ] = "Texto base";
Text[ italian ] = "Testo base";
Text[ danish ] = "Basis text";
Text[ swedish ] = "Bastext";
Text[ polish ] = "Tekst podstawowy";
Text[ portuguese_brazilian ] = "Basis text";
Text[ japanese ] = "Ώە";
Text[ korean ] = "⺻ ؽƮ";
Text[ chinese_simplified ] = "";
Text[ chinese_traditional ] = "Dr";
Text[ turkish ] = "Basis text";
Text[ arabic ] = " ";
Text[ catalan ] = "Texto base";
Text[ finnish ] = "Basistext";
};
FixedText FT_RIGHT
{
Pos = MAP_APPFONT ( 109 , 17 ) ;
Size = MAP_APPFONT ( 80 , 8 ) ;
Text = "~Ruby-Text";
Text [English] = "Ruby text";
Text[ english_us ] = "Ruby text";
Text[ portuguese ] = "Texto Ruby";
Text[ russian ] = "";
Text[ greek ] = " Ruby";
Text[ dutch ] = "Ruby-tekst";
Text[ french ] = "Texte Ruby";
Text[ spanish ] = "Texto ruby";
Text[ italian ] = "Testo ruby";
Text[ danish ] = "Ruby text";
Text[ swedish ] = "Ruby-text";
Text[ polish ] = "Transliteracja";
Text[ portuguese_brazilian ] = "Ruby text";
Text[ japanese ] = "ޕ";
Text[ korean ] = " ؽƮ";
Text[ chinese_simplified ] = "ƴע";
Text[ chinese_traditional ] = "`Ÿ";
Text[ turkish ] = "Ruby text";
Text[ arabic ] = " \"\"";
Text[ catalan ] = "Texto ruby";
Text[ finnish ] = "Ruby-Text";
};
Edit ED_LEFT_1
{
Pos = MAP_APPFONT ( 6 , 30 ) ;
Size = MAP_APPFONT ( 92 , 12 ) ;
Size = MAP_APPFONT ( 102 , 12 ) ;
Hide = False;
Border = TRUE;
};
Edit ED_RIGHT_1
{
Pos = MAP_APPFONT ( 99 , 30 ) ;
Size = MAP_APPFONT ( 92 , 12 ) ;
Pos = MAP_APPFONT ( 109 , 30 ) ;
Size = MAP_APPFONT ( 102 , 12 ) ;
Border = TRUE;
};
Edit ED_LEFT_2
{
Pos = MAP_APPFONT ( 6 , 42) ;
Size = MAP_APPFONT ( 92 , 12 ) ;
Size = MAP_APPFONT ( 102 , 12 ) ;
Border = TRUE;
};
Edit ED_RIGHT_2
{
Pos = MAP_APPFONT ( 99 , 42 ) ;
Size = MAP_APPFONT ( 92 , 12 ) ;
Pos = MAP_APPFONT ( 109 , 42 ) ;
Size = MAP_APPFONT ( 102 , 12 ) ;
Border = TRUE;
};
Edit ED_LEFT_3
{
Pos = MAP_APPFONT ( 6 , 54 ) ;
Size = MAP_APPFONT ( 92 , 12 ) ;
Size = MAP_APPFONT ( 102 , 12 ) ;
Border = TRUE;
};
Edit ED_RIGHT_3
{
Pos = MAP_APPFONT ( 99 , 54 ) ;
Size = MAP_APPFONT ( 92 , 12 ) ;
Pos = MAP_APPFONT ( 109 , 54 ) ;
Size = MAP_APPFONT ( 102 , 12 ) ;
Border = TRUE;
};
Edit ED_LEFT_4
{
Pos = MAP_APPFONT ( 6 , 66 ) ;
Size = MAP_APPFONT ( 92 , 12 ) ;
Size = MAP_APPFONT ( 102 , 12 ) ;
Border = TRUE;
};
Edit ED_RIGHT_4
{
Pos = MAP_APPFONT ( 99 , 66 ) ;
Size = MAP_APPFONT ( 92 , 12 ) ;
Pos = MAP_APPFONT ( 109 , 66 ) ;
Size = MAP_APPFONT ( 102 , 12 ) ;
Border = TRUE;
};
ScrollBar SB_SCROLL
{
Pos = MAP_APPFONT ( 193 , 30 ) ;
Pos = MAP_APPFONT ( 213 , 30 ) ;
Size = MAP_APPFONT ( 8 , 48 ) ;
VScroll = TRUE ;
Drag = TRUE ;
......@@ -166,8 +215,8 @@ ModelessDialog RID_SVXDLG_RUBY
FixedText FT_ADJUST
{
Pos = MAP_APPFONT ( 6 , 82 ) ;
Size = MAP_APPFONT ( 40 , 8 ) ;
Text = "Ausrichtung" ;
Size = MAP_APPFONT ( 35 , 8 ) ;
Text = "~Ausrichtung" ;
Text [ ENGLISH ] = "Adjust" ;
Text[ english_us ] = "Alignment";
Text[ portuguese ] = "Alinhamento";
......@@ -193,7 +242,7 @@ ModelessDialog RID_SVXDLG_RUBY
ListBox LB_ADJUST
{
Pos = MAP_APPFONT ( 6 , 93) ;
Size = MAP_APPFONT ( 40 , 60 ) ;
Size = MAP_APPFONT ( 35 , 60 ) ;
DropDown = TRUE;
Border = TRUE;
StringList =
......@@ -381,11 +430,35 @@ ModelessDialog RID_SVXDLG_RUBY
"1 2 1" ;
};
};
FixedText FT_POSITION
{
Pos = MAP_APPFONT ( 43 , 82 ) ;
Size = MAP_APPFONT ( 35 , 8 ) ;
Text = "~Position" ;
Text [ ENGLISH ] = "Position" ;
};
ListBox LB_POSITION
{
Pos = MAP_APPFONT ( 43 , 93) ;
Size = MAP_APPFONT ( 35 , 60 ) ;
DropDown = TRUE;
Border = TRUE;
StringList =
{
"Oben" ;
"Unten" ;
};
StringList [English] =
{
"Top" ;
"Bottom" ;
};
};
FixedText FT_CHAR_STYLE
{
Pos = MAP_APPFONT ( 49 , 82 ) ;
Size = MAP_APPFONT ( 100 , 8 ) ;
Text = "Zeichenvorlage fr Ruby-Text" ;
Pos = MAP_APPFONT ( 80 , 82 ) ;
Size = MAP_APPFONT ( 89 , 8 ) ;
Text = "~Zeichenvorlage fr Ruby-Text" ;
Text [ ENGLISH ] = "Character style for ruby text" ;
Text[ english_us ] = "Character Style for ruby text";
Text[ portuguese ] = "Estilo de caracteres para texto Ruby";
......@@ -410,104 +483,17 @@ ModelessDialog RID_SVXDLG_RUBY
};
ListBox LB_CHAR_STYLE
{
Pos = MAP_APPFONT ( 49 , 93) ;
Size = MAP_APPFONT ( 99 , 60 ) ;
Pos = MAP_APPFONT ( 80 , 93) ;
Size = MAP_APPFONT ( 89 , 60 ) ;
DropDown = TRUE;
Border = TRUE;
StringList =
{
< "<Keine>" ; > ;
};
stringlist [ english_us ] =
{
< "<None>" ; > ;
};
StringList [ language_user1 ] =
{
< "<Keine>" ; > ;
};
StringList [ portuguese ] =
{
< "<Nenhum>" ; > ;
};
StringList [ russian ] =
{
< "<>" ; > ;
};
StringList [ greek ] =
{
< "<>" ; > ;
};
StringList [ dutch ] =
{
< "<geen>" ; > ;
};
StringList [ french ] =
{
< "<Aucun>" ; > ;
};
StringList [ spanish ] =
{
< "<ninguno>" ; > ;
};
StringList [ italian ] =
{
< "<nessuno>" ; > ;
};
StringList [ danish ] =
{
< "<ingen>" ; > ;
};
StringList [ swedish ] =
{
< "<Ingen>" ; > ;
};
StringList [ polish ] =
{
< "<Brak>" ; > ;
};
StringList [ portuguese_brazilian ] =
{
< "<Keine>" ; > ;
};
StringList [ japanese ] =
{
< "<Ȃ>" ; > ;
};
StringList [ korean ] =
{
< "<>" ; > ;
};
StringList [ chinese_simplified ] =
{
< "<>" ; > ;
};
StringList [ chinese_traditional ] =
{
< "<L>" ; > ;
};
StringList [ turkish ] =
{
< "<yok>" ; > ;
};
StringList [ arabic ] =
{
< "<>" ; > ;
};
StringList [ catalan ] =
{
< "<ninguno>" ; > ;
};
StringList [ finnish ] =
{
< "<Ei mitn>" ; > ;
};
Sort = TRUE;
};
PushButton PB_STYLIST
{
Pos = MAP_APPFONT ( 151 , 92 ) ;
Pos = MAP_APPFONT ( 171 , 92 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
Text = "Stylist" ;
Text = "~Stylist" ;
Text [ ENGLISH ] = "Stylist" ;
Text[ english_us ] = "Stylist";
Text[ portuguese ] = "Estilista";
......@@ -560,13 +546,13 @@ ModelessDialog RID_SVXDLG_RUBY
Window WIN_PREVIEW
{
Pos = MAP_APPFONT ( 6 , 121 ) ;
Size = MAP_APPFONT ( 195 , 50 ) ;
Size = MAP_APPFONT ( 215 , 50 ) ;
};
OKButton PB_APPLY
{
Pos = MAP_APPFONT ( 45 , 175 ) ;
Pos = MAP_APPFONT ( 65 , 175 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
Text = "bernehmen" ;
Text = "~bernehmen" ;
Text [ ENGLISH ] = "Apply" ;
Text[ english_us ] = "Apply";
Text[ portuguese ] = "Aplicar";
......@@ -591,9 +577,9 @@ ModelessDialog RID_SVXDLG_RUBY
};
PushButton PB_CLOSE
{
Pos = MAP_APPFONT ( 98, 175 ) ;
Pos = MAP_APPFONT ( 118, 175 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
Text = "Schlieen" ;
Text = "Sch~lieen" ;
Text [ ENGLISH ] = "Close" ;
Text[ english_us ] = "Close";
Text[ portuguese ] = "Fechar";
......@@ -618,59 +604,9 @@ ModelessDialog RID_SVXDLG_RUBY
};
HelpButton PB_HELP
{
Pos = MAP_APPFONT ( 151 , 175 ) ;
Pos = MAP_APPFONT ( 171 , 175 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
};
String ST_BASE
{
Text = "Basistext";
Text [English] = "Basis text";
Text[ english_us ] = "Base text";
Text[ portuguese ] = "Texto-base";
Text[ russian ] = " ";
Text[ greek ] = " ";
Text[ dutch ] = "Basistekst";
Text[ french ] = "Texte de base";
Text[ spanish ] = "Texto base";
Text[ italian ] = "Testo base";
Text[ danish ] = "Basis text";
Text[ swedish ] = "Bastext";
Text[ polish ] = "Tekst podstawowy";
Text[ portuguese_brazilian ] = "Basis text";
Text[ japanese ] = "Ώە";
Text[ korean ] = "⺻ ؽƮ";
Text[ chinese_simplified ] = "";
Text[ chinese_traditional ] = "Dr";
Text[ turkish ] = "Basis text";
Text[ arabic ] = " ";
Text[ catalan ] = "Texto base";
Text[ finnish ] = "Basistext";
};
String ST_RUBY
{
Text = "Ruby-Text";
Text [English] = "Ruby text";
Text[ english_us ] = "Ruby text";
Text[ portuguese ] = "Texto Ruby";
Text[ russian ] = "";
Text[ greek ] = " Ruby";
Text[ dutch ] = "Ruby-tekst";
Text[ french ] = "Texte Ruby";
Text[ spanish ] = "Texto ruby";
Text[ italian ] = "Testo ruby";
Text[ danish ] = "Ruby text";
Text[ swedish ] = "Ruby-text";
Text[ polish ] = "Transliteracja";
Text[ portuguese_brazilian ] = "Ruby text";
Text[ japanese ] = "ޕ";
Text[ korean ] = " ؽƮ";
Text[ chinese_simplified ] = "ƴע";
Text[ chinese_traditional ] = "`Ÿ";
Text[ turkish ] = "Ruby text";
Text[ arabic ] = " \"\"";
Text[ catalan ] = "Texto ruby";
Text[ finnish ] = "Ruby-Text";
};
Text[ english_us ] = "Ruby";
Text[ portuguese ] = "Ruby";
Text[ russian ] = "";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment