MWS_SRX644: migrate branch mws_srx644 -> HEAD

This commit is contained in:
Jens-Heiner Rechtien
2003-03-18 15:17:10 +00:00
parent 7de730a1f2
commit 0744f579c5
16 changed files with 499 additions and 557 deletions

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: baside2.cxx,v $ * $RCSfile: baside2.cxx,v $
* *
* $Revision: 1.24 $ * $Revision: 1.25 $
* *
* last change: $Author: obo $ $Date: 2002-07-09 15:08:00 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:04 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -1410,19 +1410,19 @@ ModulWindowLayout::ModulWindowLayout( Window* pParent ) :
m_aSyntaxColors[TT_EOL] = aColor; m_aSyntaxColors[TT_EOL] = aColor;
StartListening(m_aColorConfig); StartListening(m_aColorConfig);
m_aSyntaxColors[TT_IDENTIFIER] m_aSyntaxColors[TT_IDENTIFIER]
= Color(m_aColorConfig.GetColorValue(svx::BASICIDENTIFIER).nColor); = Color(m_aColorConfig.GetColorValue(svtools::BASICIDENTIFIER).nColor);
m_aSyntaxColors[TT_NUMBER] m_aSyntaxColors[TT_NUMBER]
= Color(m_aColorConfig.GetColorValue(svx::BASICNUMBER).nColor); = Color(m_aColorConfig.GetColorValue(svtools::BASICNUMBER).nColor);
m_aSyntaxColors[TT_STRING] m_aSyntaxColors[TT_STRING]
= Color(m_aColorConfig.GetColorValue(svx::BASICSTRING).nColor); = Color(m_aColorConfig.GetColorValue(svtools::BASICSTRING).nColor);
m_aSyntaxColors[TT_COMMENT] m_aSyntaxColors[TT_COMMENT]
= Color(m_aColorConfig.GetColorValue(svx::BASICCOMMENT).nColor); = Color(m_aColorConfig.GetColorValue(svtools::BASICCOMMENT).nColor);
m_aSyntaxColors[TT_ERROR] m_aSyntaxColors[TT_ERROR]
= Color(m_aColorConfig.GetColorValue(svx::BASICERROR).nColor); = Color(m_aColorConfig.GetColorValue(svtools::BASICERROR).nColor);
m_aSyntaxColors[TT_OPERATOR] m_aSyntaxColors[TT_OPERATOR]
= Color(m_aColorConfig.GetColorValue(svx::BASICOPERATOR).nColor); = Color(m_aColorConfig.GetColorValue(svtools::BASICOPERATOR).nColor);
m_aSyntaxColors[TT_KEYWORD] m_aSyntaxColors[TT_KEYWORD]
= Color(m_aColorConfig.GetColorValue(svx::BASICKEYWORD).nColor); = Color(m_aColorConfig.GetColorValue(svtools::BASICKEYWORD).nColor);
Font aFont( GetFont() ); Font aFont( GetFont() );
Size aSz( aFont.GetSize() ); Size aSz( aFont.GetSize() );
@@ -1636,33 +1636,33 @@ void ModulWindowLayout::Notify(SfxBroadcaster & rBc, SfxHint const & rHint)
&& (static_cast< SfxSimpleHint const & >(rHint).GetId() && (static_cast< SfxSimpleHint const & >(rHint).GetId()
== SFX_HINT_COLORS_CHANGED)) == SFX_HINT_COLORS_CHANGED))
{ {
Color aColor(m_aColorConfig.GetColorValue(svx::BASICIDENTIFIER). Color aColor(m_aColorConfig.GetColorValue(svtools::BASICIDENTIFIER).
nColor); nColor);
bool bChanged = aColor != m_aSyntaxColors[TT_IDENTIFIER]; bool bChanged = aColor != m_aSyntaxColors[TT_IDENTIFIER];
m_aSyntaxColors[TT_IDENTIFIER] = aColor; m_aSyntaxColors[TT_IDENTIFIER] = aColor;
aColor = Color(m_aColorConfig.GetColorValue(svx::BASICNUMBER).nColor); aColor = Color(m_aColorConfig.GetColorValue(svtools::BASICNUMBER).nColor);
if (bChanged || aColor != m_aSyntaxColors[TT_NUMBER]) if (bChanged || aColor != m_aSyntaxColors[TT_NUMBER])
bChanged = true; bChanged = true;
m_aSyntaxColors[TT_NUMBER] = aColor; m_aSyntaxColors[TT_NUMBER] = aColor;
aColor = Color(m_aColorConfig.GetColorValue(svx::BASICSTRING).nColor); aColor = Color(m_aColorConfig.GetColorValue(svtools::BASICSTRING).nColor);
if (bChanged || aColor != m_aSyntaxColors[TT_STRING]) if (bChanged || aColor != m_aSyntaxColors[TT_STRING])
bChanged = true; bChanged = true;
m_aSyntaxColors[TT_STRING] = aColor; m_aSyntaxColors[TT_STRING] = aColor;
aColor = Color(m_aColorConfig.GetColorValue(svx::BASICCOMMENT). aColor = Color(m_aColorConfig.GetColorValue(svtools::BASICCOMMENT).
nColor); nColor);
if (bChanged || aColor != m_aSyntaxColors[TT_COMMENT]) if (bChanged || aColor != m_aSyntaxColors[TT_COMMENT])
bChanged = true; bChanged = true;
m_aSyntaxColors[TT_COMMENT] = aColor; m_aSyntaxColors[TT_COMMENT] = aColor;
aColor = Color(m_aColorConfig.GetColorValue(svx::BASICERROR).nColor); aColor = Color(m_aColorConfig.GetColorValue(svtools::BASICERROR).nColor);
if (bChanged || aColor != m_aSyntaxColors[TT_ERROR]) if (bChanged || aColor != m_aSyntaxColors[TT_ERROR])
bChanged = true; bChanged = true;
m_aSyntaxColors[TT_ERROR] = aColor; m_aSyntaxColors[TT_ERROR] = aColor;
aColor = Color(m_aColorConfig.GetColorValue(svx::BASICOPERATOR). aColor = Color(m_aColorConfig.GetColorValue(svtools::BASICOPERATOR).
nColor); nColor);
if (bChanged || aColor != m_aSyntaxColors[TT_OPERATOR]) if (bChanged || aColor != m_aSyntaxColors[TT_OPERATOR])
bChanged = true; bChanged = true;
m_aSyntaxColors[TT_OPERATOR] = aColor; m_aSyntaxColors[TT_OPERATOR] = aColor;
aColor = Color(m_aColorConfig.GetColorValue(svx::BASICKEYWORD). aColor = Color(m_aColorConfig.GetColorValue(svtools::BASICKEYWORD).
nColor); nColor);
if (bChanged || aColor != m_aSyntaxColors[TT_KEYWORD]) if (bChanged || aColor != m_aSyntaxColors[TT_KEYWORD])
bChanged = true; bChanged = true;

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: baside2.hxx,v $ * $RCSfile: baside2.hxx,v $
* *
* $Revision: 1.13 $ * $Revision: 1.14 $
* *
* last change: $Author: tbe $ $Date: 2002-09-09 15:16:03 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:05 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -100,8 +100,8 @@ class SvxSearchItem;
#include "svtools/lstner.hxx" #include "svtools/lstner.hxx"
#endif #endif
#ifndef _SVX_COLORCFG_HXX #ifndef INCLUDED_SVTOOLS_COLORCFG_HXX
#include "svx/colorcfg.hxx" #include <svtools/colorcfg.hxx>
#endif #endif
#include <sfx2/progress.hxx> #include <sfx2/progress.hxx>
@@ -498,7 +498,7 @@ private:
ModulWindow * m_pModulWindow; ModulWindow * m_pModulWindow;
Color m_aSyntaxColors[TT_KEYWORD + 1]; Color m_aSyntaxColors[TT_KEYWORD + 1];
svx::ColorConfig m_aColorConfig; svtools::ColorConfig m_aColorConfig;
ImageList m_aImagesNormal; ImageList m_aImagesNormal;
ImageList m_aImagesHighContrast; ImageList m_aImagesHighContrast;

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: basides1.cxx,v $ * $RCSfile: basides1.cxx,v $
* *
* $Revision: 1.23 $ * $Revision: 1.24 $
* *
* last change: $Author: tbe $ $Date: 2001-12-18 11:26:25 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:05 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -1090,11 +1090,13 @@ void BasicIDEShell::SetCurWindow( IDEBaseWindow* pNewWin, BOOL bUpdateTabBar, BO
if ( pCurWin ) if ( pCurWin )
{ {
SetWindow( pCurWin ); SetWindow( pCurWin );
SfxObjectShell::SetWorkingDocument( pCurWin->GetShell() );
} }
else else
{ {
SetWindow( pModulLayout ); SetWindow( pModulLayout );
GetViewFrame()->GetWindow().SetHelpId( HID_BASICIDE_MODULWINDOW ); GetViewFrame()->GetWindow().SetHelpId( HID_BASICIDE_MODULWINDOW );
SfxObjectShell::SetWorkingDocument( NULL );
} }
SetUndoManager( pCurWin ? pCurWin->GetUndoManager() : 0 ); SetUndoManager( pCurWin ? pCurWin->GetUndoManager() : 0 );
InvalidateBasicIDESlots(); InvalidateBasicIDESlots();

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: basidesh.src,v $ * $RCSfile: basidesh.src,v $
* *
* $Revision: 1.85 $ * $Revision: 1.86 $
* *
* last change: $Author: sb $ $Date: 2002-12-06 16:39:49 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:05 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -153,7 +153,7 @@ String RID_STR_WRONGPASSWORD
Text[ dutch ] = "Wachtwoord niet juist."; Text[ dutch ] = "Wachtwoord niet juist.";
Text[ chinese_simplified ] = "密码无效。"; Text[ chinese_simplified ] = "密码无效。";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>."; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.";
Text[ korean ] = "암호가 지 않습니다."; Text[ korean ] = "암호가 지 않습니다.";
Text[ turkish ] = "Yanl<6E><6C> <20>ifre"; Text[ turkish ] = "Yanl<6E><6C> <20>ifre";
Text[ catalan ] = "Contrasenya incorrecta."; Text[ catalan ] = "Contrasenya incorrecta.";
Text[ thai ] = "รหัสผ่านไม่ถูกต้อง"; Text[ thai ] = "รหัสผ่านไม่ถูกต้อง";
@@ -225,7 +225,7 @@ String RID_STR_SOURCETOBIG
Text [ swedish ] = "K<>lltexten <20>r f<>r stor och kan varken sparas eller kompileras.\nRadera n<>gra kommentarer eller <20>verf<72>r n<>gra metoder till en annan modul." ; Text [ swedish ] = "K<>lltexten <20>r f<>r stor och kan varken sparas eller kompileras.\nRadera n<>gra kommentarer eller <20>verf<72>r n<>gra metoder till en annan modul." ;
Text [ danish ] = "Kildeteksten er for stor og kan hverken gemmes eller kompileres.\nSlet nogle kommentarer, eller overf<72>r nogle metoder til et andet modul." ; Text [ danish ] = "Kildeteksten er for stor og kan hverken gemmes eller kompileres.\nSlet nogle kommentarer, eller overf<72>r nogle metoder til et andet modul." ;
Text [ italian ] = "Il testo sorgente <20> troppo grande e non pu<70> essere n<> compilato n<> salvato\nCancellate alcuni commenti o trasferite alcuni metodi in un altro modulo." ; Text [ italian ] = "Il testo sorgente <20> troppo grande e non pu<70> essere n<> compilato n<> salvato\nCancellate alcuni commenti o trasferite alcuni metodi in un altro modulo." ;
Text [ spanish ] = "El texto fuente es demasiado grande por lo que no se puede guardar o compilar.\nElimine algunos comentarios o transfiera algunos m<>todos a otro m<>dulo." ; Text [ spanish ] = "El texto fuente es demasiado grande por lo que no se puede guardar o compilar.\nBorre algunos comentarios o transfiera algunos m<>todos a otro m<>dulo." ;
Text [ french ] = "Le texte source est trop long : enregistrement et compilation impossibles.\nSupprimez des commentaires ou transf<73>rez des m<>thodes dans un autre module." ; Text [ french ] = "Le texte source est trop long : enregistrement et compilation impossibles.\nSupprimez des commentaires ou transf<73>rez des m<>thodes dans un autre module." ;
Text [ dutch ] = "De brontekst is te lang en kan niet worden opgeslagen of gecompileerd.\\Wis enkele opmerkingen of verplaats enkele methodes naar een andere module." ; Text [ dutch ] = "De brontekst is te lang en kan niet worden opgeslagen of gecompileerd.\\Wis enkele opmerkingen of verplaats enkele methodes naar een andere module." ;
Text [ portuguese_brazilian ] = "Der Quelltext ist zu gro? und kann weder gespeichert noch compiliert werden.\nL?chen Sie einige Kommentare oder ?ertragen Sie einige Methoden in ein anderes Modul." ; Text [ portuguese_brazilian ] = "Der Quelltext ist zu gro? und kann weder gespeichert noch compiliert werden.\nL?chen Sie einige Kommentare oder ?ertragen Sie einige Methoden in ein anderes Modul." ;
@@ -239,7 +239,7 @@ String RID_STR_SOURCETOBIG
Text[ dutch ] = "De brontekst is te lang en kan niet worden opgeslagen of gecompileerd.\\Wis enkele opmerkingen of verplaats enkele methodes naar een andere module."; Text[ dutch ] = "De brontekst is te lang en kan niet worden opgeslagen of gecompileerd.\\Wis enkele opmerkingen of verplaats enkele methodes naar een andere module.";
Text[ chinese_simplified ] = "源文本太大,无法存盘和编译。\n请删除一些注解或者将几个方法转移到一个其他的模块之中。"; Text[ chinese_simplified ] = "源文本太大,无法存盘和编译。\n请删除一些注解或者将几个方法转移到一个其他的模块之中。";
Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.\n<><6E><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>."; Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.\n<><6E><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.";
Text[ korean ] = "소스텍스트가 너무 커서 저장 또는 컴파일이 불가능합니다.\n일부 주석을 삭제하거나, 몇몇 메소드를 다른 모듈로 옮기십시오."; Text[ korean ] = "원본 텍스트가 너무 커서 저장 또는 컴파일이 불가능합니다.\n일부 설명을 삭제하거나 몇몇 메소드를 다른 모듈로 옮기십시오.";
Text[ turkish ] = "Kaynak metin uzunlu<6C>u nedeniyle kaydedilemiyor ve derlenemiyor.\nBaz<61> a<><61>klamalar<61> silin ya da baz<61> y<>ntemleri ba<62>ka bir mod<6F>le aktar<61>n."; Text[ turkish ] = "Kaynak metin uzunlu<6C>u nedeniyle kaydedilemiyor ve derlenemiyor.\nBaz<61> a<><61>klamalar<61> silin ya da baz<61> y<>ntemleri ba<62>ka bir mod<6F>le aktar<61>n.";
Text[ catalan ] = "El text font <20>s massa gran i no es pot compilar ni desar.\n Suprimiu alguns dels comentaris o transferiu alguns m<>todes a un altre m<>dul."; Text[ catalan ] = "El text font <20>s massa gran i no es pot compilar ni desar.\n Suprimiu alguns dels comentaris o transferiu alguns m<>todes a un altre m<>dul.";
Text[ finnish ] = "L<>hdeteksti on liian pitk<74> eik<69> sit<69> voida koota tai tallentaa.\nPoista huomautuksia tai siirr<72> joitakin menetelmi<6D> toiseen moduuliin."; Text[ finnish ] = "L<>hdeteksti on liian pitk<74> eik<69> sit<69> voida koota tai tallentaa.\nPoista huomautuksia tai siirr<72> joitakin menetelmi<6D> toiseen moduuliin.";
@@ -268,7 +268,7 @@ String RID_STR_ERROROPENSTORAGE
Text[ dutch ] = "Fout bij openen van bestand."; Text[ dutch ] = "Fout bij openen van bestand.";
Text[ chinese_simplified ] = "打开文件时发生错误。"; Text[ chinese_simplified ] = "打开文件时发生错误。";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "파일 열기시에 오류"; Text[ korean ] = "파일 여는 중 오류";
Text[ turkish ] = "Dosyay<61> a<>ma s<>ras<61>nda hata"; Text[ turkish ] = "Dosyay<61> a<>ma s<>ras<61>nda hata";
Text[ catalan ] = "S'ha produ<64>t un error en obrir el fitxer"; Text[ catalan ] = "S'ha produ<64>t un error en obrir el fitxer";
Text[ finnish ] = "Tiedoston avaamisessa on ilmennyt virhe."; Text[ finnish ] = "Tiedoston avaamisessa on ilmennyt virhe.";
@@ -296,7 +296,7 @@ String RID_STR_ERROROPENLIB
Text[ dutch ] = "Fout bij laden van bibliotheek"; Text[ dutch ] = "Fout bij laden van bibliotheek";
Text[ chinese_simplified ] = "在装入程序库时发生错误。"; Text[ chinese_simplified ] = "在装入程序库时发生错误。";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "라이브러리 로드 오류"; Text[ korean ] = "라이브러리 로드 오류";
Text[ turkish ] = "Kitapl<70><6C><EFBFBD> y<>kleme s<>ras<61>nda hata"; Text[ turkish ] = "Kitapl<70><6C><EFBFBD> y<>kleme s<>ras<61>nda hata";
Text[ catalan ] = "S'ha produ<64>t un error en carregar la biblioteca"; Text[ catalan ] = "S'ha produ<64>t un error en carregar la biblioteca";
Text[ finnish ] = "Kirjaston lataamisessa on ilmennyt virhe."; Text[ finnish ] = "Kirjaston lataamisessa on ilmennyt virhe.";
@@ -325,7 +325,7 @@ String RID_STR_NOLIBINSTORAGE
Text[ dutch ] = "Het bestand bevat geen BASIC-bibliotheken"; Text[ dutch ] = "Het bestand bevat geen BASIC-bibliotheken";
Text[ chinese_simplified ] = "这个文件没有 BASIC 程序库。"; Text[ chinese_simplified ] = "这个文件没有 BASIC 程序库。";
Text[ greek ] = "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> BASIC"; Text[ greek ] = "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> BASIC";
Text[ korean ] = "파일에는 어떤 BASIC 라이브러리도 포함되어 있지 않습니다"; Text[ korean ] = "파일에는 어떤 BASIC 라이브러리도 포함되어 있지 않습니다.";
Text[ turkish ] = "Dosya BASIC kitapl<70>klar<61> i<>ermiyor"; Text[ turkish ] = "Dosya BASIC kitapl<70>klar<61> i<>ermiyor";
Text[ catalan ] = "El fitxer no cont<6E> cap biblioteca del BASIC"; Text[ catalan ] = "El fitxer no cont<6E> cap biblioteca del BASIC";
Text[ finnish ] = "Tiedostossa ei ole BASIC-kirjastoja."; Text[ finnish ] = "Tiedostossa ei ole BASIC-kirjastoja.";
@@ -356,7 +356,7 @@ String RID_STR_BADSBXNAME
Text[ dutch ] = "Ongeldige aanduiding"; Text[ dutch ] = "Ongeldige aanduiding";
Text[ chinese_simplified ] = "无效的名称"; Text[ chinese_simplified ] = "无效的名称";
Text[ greek ] = "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "유효하지 않은 이름"; Text[ korean ] = "잘못된 이름";
Text[ turkish ] = "Ge<47>ersiz ad"; Text[ turkish ] = "Ge<47>ersiz ad";
Text[ catalan ] = "El nom no <20>s v<>lid"; Text[ catalan ] = "El nom no <20>s v<>lid";
Text[ thai ] = "ชื่อไม่ถูกต้อง"; Text[ thai ] = "ชื่อไม่ถูกต้อง";
@@ -378,7 +378,7 @@ String RID_STR_LIBNAMETOLONG
Text[ polish ] = "Nazwa biblioteki mo<6D>e si<73> sk<73>ada<64> z maksymalnie 30 znak<61>w."; Text[ polish ] = "Nazwa biblioteki mo<6D>e si<73> sk<73>ada<64> z maksymalnie 30 znak<61>w.";
Text[ portuguese_brazilian ] = "The name of a library can only be 30 characters long."; Text[ portuguese_brazilian ] = "The name of a library can only be 30 characters long.";
Text[ japanese ] = "ライブラリ名の文字数は最高30文字までです。"; Text[ japanese ] = "ライブラリ名の文字数は最高30文字までです。";
Text[ korean ] = "라이브러리 이름의 길이 30자를 초과해서는 안됩니다."; Text[ korean ] = "라이브러리 이름의 길이 30자를 초과해서는 안됩니다.";
Text[ chinese_simplified ] = "程序库名称最多只允许由30个字符组成。"; Text[ chinese_simplified ] = "程序库名称最多只允许由30个字符组成。";
Text[ chinese_traditional ] = "程式庫名稱最長不得超過30個字元。"; Text[ chinese_traditional ] = "程式庫名稱最長不得超過30個字元。";
Text[ arabic ] = "<22><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> 30 <20><><EFBFBD><EFBFBD><EFBFBD>."; Text[ arabic ] = "<22><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> 30 <20><><EFBFBD><EFBFBD><EFBFBD>.";
@@ -405,7 +405,7 @@ String RID_STR_ERRORCHOOSEMACRO
Text[ polish ] = "Brak dost<73>pu do makr innych dokument<6E>w."; Text[ polish ] = "Brak dost<73>pu do makr innych dokument<6E>w.";
Text[ portuguese_brazilian ] = "Macros from other documents are not accessible."; Text[ portuguese_brazilian ] = "Macros from other documents are not accessible.";
Text[ japanese ] = "ほかのドキュメントのマクロへはアクセスできません。"; Text[ japanese ] = "ほかのドキュメントのマクロへはアクセスできません。";
Text[ korean ] = "다른 문서의 매크로 액세스할 수 없습니다."; Text[ korean ] = "다른 문서의 매크로에는 액세스할 수 없습니다.";
Text[ chinese_simplified ] = "无法读取其它文档的宏。"; Text[ chinese_simplified ] = "无法读取其它文档的宏。";
Text[ chinese_traditional ] = "無法存取其他文件的巨集。"; Text[ chinese_traditional ] = "無法存取其他文件的巨集。";
Text[ turkish ] = "Macros from other documents are not accessible."; Text[ turkish ] = "Macros from other documents are not accessible.";
@@ -457,7 +457,7 @@ String RID_STR_REPLACELIB
Text[ polish ] = "'XX' can't be replaced."; Text[ polish ] = "'XX' can't be replaced.";
Text[ portuguese_brazilian ] = "'XX' can't be replaced."; Text[ portuguese_brazilian ] = "'XX' can't be replaced.";
Text[ japanese ] = "'XX' は置換できません。"; Text[ japanese ] = "'XX' は置換できません。";
Text[ korean ] = "'XX'을(를) 교체할 수 없습니다."; Text[ korean ] = "'XX'을(를) 바꿀 수 없습니다.";
Text[ chinese_simplified ] = "无法更替 'XX'。"; Text[ chinese_simplified ] = "无法更替 'XX'。";
Text[ chinese_traditional ] = "無法代替 XX 。"; Text[ chinese_traditional ] = "無法代替 XX 。";
Text[ turkish ] = "'XX' can't be replaced."; Text[ turkish ] = "'XX' can't be replaced.";
@@ -483,7 +483,7 @@ String RID_STR_IMPORTNOTPOSSIBLE
Text[ polish ] = "Import of 'XX' not possible."; Text[ polish ] = "Import of 'XX' not possible.";
Text[ portuguese_brazilian ] = "Import of 'XX' not possible."; Text[ portuguese_brazilian ] = "Import of 'XX' not possible.";
Text[ japanese ] = "'XX' の追加はできません。"; Text[ japanese ] = "'XX' の追加はできません。";
Text[ korean ] = "'XX'을(를) 가져올 수 없습니다."; Text[ korean ] = "'XX'을(를) 추가할 수 없습니다.";
Text[ chinese_simplified ] = "无法增加 'XX' 。"; Text[ chinese_simplified ] = "无法增加 'XX' 。";
Text[ chinese_traditional ] = "無法新增 XX 。"; Text[ chinese_traditional ] = "無法新增 XX 。";
Text[ turkish ] = "Import of 'XX' not possible."; Text[ turkish ] = "Import of 'XX' not possible.";
@@ -509,7 +509,7 @@ String RID_STR_NOIMPORT
Text[ polish ] = "'XX' was not imported."; Text[ polish ] = "'XX' was not imported.";
Text[ portuguese_brazilian ] = "'XX' was not imported."; Text[ portuguese_brazilian ] = "'XX' was not imported.";
Text[ japanese ] = "'XX' はインポートされませんでした。"; Text[ japanese ] = "'XX' はインポートされませんでした。";
Text[ korean ] = "'XX'을(를) 가져오지 않았습니다."; Text[ korean ] = "'XX'을(를) 추가하지 않았습니다.";
Text[ chinese_simplified ] = "没有增加 'XX' 。"; Text[ chinese_simplified ] = "没有增加 'XX' 。";
Text[ chinese_traditional ] = "沒有增加 'XX' 。"; Text[ chinese_traditional ] = "沒有增加 'XX' 。";
Text[ turkish ] = "'XX' was not imported."; Text[ turkish ] = "'XX' was not imported.";
@@ -535,7 +535,7 @@ String RID_STR_ENTERPASSWORD
Text[ polish ] = "Enter password for 'XX'"; Text[ polish ] = "Enter password for 'XX'";
Text[ portuguese_brazilian ] = "Enter password for 'XX'"; Text[ portuguese_brazilian ] = "Enter password for 'XX'";
Text[ japanese ] = "'XX' のパスワードを入力します"; Text[ japanese ] = "'XX' のパスワードを入力します";
Text[ korean ] = "'XX'의 암호를 입력하십시오"; Text[ korean ] = "'XX'의 암호를 입력하십시오.";
Text[ chinese_simplified ] = "为 'XX' 键入密码。"; Text[ chinese_simplified ] = "为 'XX' 键入密码。";
Text[ chinese_traditional ] = "為 'XX' 鍵入密碼"; Text[ chinese_traditional ] = "為 'XX' 鍵入密碼";
Text[ turkish ] = "Enter password for 'XX'"; Text[ turkish ] = "Enter password for 'XX'";
@@ -567,7 +567,7 @@ String RID_STR_SBXNAMEALLREADYUSED
Text[ dutch ] = "Naam bestaat reeds"; Text[ dutch ] = "Naam bestaat reeds";
Text[ chinese_simplified ] = "名称已经存在。"; Text[ chinese_simplified ] = "名称已经存在。";
Text[ greek ] = "<22><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>"; Text[ greek ] = "<22><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>";
Text[ korean ] = "이름이 이미 있"; Text[ korean ] = "이름이 이미 있습니다.";
Text[ turkish ] = "Bu ad mevcut durumda"; Text[ turkish ] = "Bu ad mevcut durumda";
Text[ catalan ] = "El nom ja existeix"; Text[ catalan ] = "El nom ja existeix";
Text[ thai ] = "มีชื่ออยู่แล้ว"; Text[ thai ] = "มีชื่ออยู่แล้ว";
@@ -596,7 +596,7 @@ String RID_STR_SBXNAMEALLREADYUSED2
Text[ dutch ] = "Er bestaat reeds een object met deze naam."; Text[ dutch ] = "Er bestaat reeds een object met deze naam.";
Text[ chinese_simplified ] = "对象已经存在。"; Text[ chinese_simplified ] = "对象已经存在。";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "같은 이름을 가진 개체가 이미 있"; Text[ korean ] = "같은 이름을 가진 개체가 이미 있습니다.";
Text[ turkish ] = "Bu ad<61> ta<74><61>yan bir nesne mevcut"; Text[ turkish ] = "Bu ad<61> ta<74><61>yan bir nesne mevcut";
Text[ catalan ] = "Ja hi ha un objecte amb el mateix nom"; Text[ catalan ] = "Ja hi ha un objecte amb el mateix nom";
Text[ thai ] = "มีชื่อวัตถุเหมือนกันอยู่แล้ว"; Text[ thai ] = "มีชื่อวัตถุเหมือนกันอยู่แล้ว";
@@ -624,7 +624,7 @@ String RID_STR_FILEEXISTS
Text[ dutch ] = "Bestand ''XX' bestaat reeds"; Text[ dutch ] = "Bestand ''XX' bestaat reeds";
Text[ chinese_simplified ] = "文件 'XX' 已经存在。"; Text[ chinese_simplified ] = "文件 'XX' 已经存在。";
Text[ greek ] = "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 'XX' <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>"; Text[ greek ] = "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 'XX' <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>";
Text[ korean ] = "파일'XX' 은 (는) 이미 존재합니다"; Text[ korean ] = "'XX' 파일이 이미 있습니다.";
Text[ turkish ] = "Dosya 'XX' mevcut durumda"; Text[ turkish ] = "Dosya 'XX' mevcut durumda";
Text[ catalan ] = "El fitxer 'XX' ja existeix"; Text[ catalan ] = "El fitxer 'XX' ja existeix";
Text[ finnish ] = "Tiedosto XX on jo olemassa."; Text[ finnish ] = "Tiedosto XX on jo olemassa.";
@@ -713,7 +713,7 @@ String RID_STR_SEARCHNOTFOUND
Text[ dutch ] = "Zoekbegrip niet gevonden."; Text[ dutch ] = "Zoekbegrip niet gevonden.";
Text[ chinese_simplified ] = "没有找到要搜寻条目"; Text[ chinese_simplified ] = "没有找到要搜寻条目";
Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>";
Text[ korean ] = "검색용어를 찾지 못했습니다"; Text[ korean ] = "검색를 찾지 못했습니다.";
Text[ turkish ] = "Aranan terim bulunamad<61>"; Text[ turkish ] = "Aranan terim bulunamad<61>";
Text[ catalan ] = "La clau de cerca no s'ha trobat"; Text[ catalan ] = "La clau de cerca no s'ha trobat";
Text[ thai ] = "ค้นหาคีย์ไม่พบ"; Text[ thai ] = "ค้นหาคีย์ไม่พบ";
@@ -741,7 +741,7 @@ String RID_STR_SEARCHFROMSTART
Text[ dutch ] = "Er is tot aan de laatste module gezocht. Wilt u het zoeken voortzetten vanaf de eerste module?"; Text[ dutch ] = "Er is tot aan de laatste module gezocht. Wilt u het zoeken voortzetten vanaf de eerste module?";
Text[ chinese_simplified ] = "已经搜寻至最后一个模块。要从第一个模块开始搜寻?"; Text[ chinese_simplified ] = "已经搜寻至最后一个模块。要从第一个模块开始搜寻?";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;";
Text[ korean ] = "마지막 모듈까지 찾았습니다. 처음 모듈에서 찾기를 계속하겠습니까?"; Text[ korean ] = "마지막 모듈까지 검색을 완료했습니다. 처음 모듈에서 검색을 계속하겠습니까?";
Text[ turkish ] = "Son mod<6F>le kadar arama tamamland<6E>? Aramaya ilk mod<6F>lden devam etmek istiyor musunuz?"; Text[ turkish ] = "Son mod<6F>le kadar arama tamamland<6E>? Aramaya ilk mod<6F>lden devam etmek istiyor musunuz?";
Text[ catalan ] = "S'ha completat la cerca fins a l'<27>ltim m<>dul. Voleu continuar des del primer?"; Text[ catalan ] = "S'ha completat la cerca fins a l'<27>ltim m<>dul. Voleu continuar des del primer?";
Text[ finnish ] = "Haku viimeisest<73> moduulista on valmis. Jatketaanko ensimm<6D>isest<73> moduulista?"; Text[ finnish ] = "Haku viimeisest<73> moduulista on valmis. Jatketaanko ensimm<6D>isest<73> moduulista?";
@@ -771,7 +771,7 @@ String RID_STR_SEARCHREPLACES
Text[ dutch ] = "Zoekbegrip XX keer vervangen"; Text[ dutch ] = "Zoekbegrip XX keer vervangen";
Text[ chinese_simplified ] = "替换搜寻条目 XX 次"; Text[ chinese_simplified ] = "替换搜寻条目 XX 次";
Text[ greek ] = "<22> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> XX <20><><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> XX <20><><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "검색 용어를 XX번 대체했습니다"; Text[ korean ] = "검색 키를 XX번 바꿨습니다.";
Text[ turkish ] = "Aranan terim XX kez de<64>i<EFBFBD>tirildi"; Text[ turkish ] = "Aranan terim XX kez de<64>i<EFBFBD>tirildi";
Text[ catalan ] = "La clau de cerca s'ha reempla<6C>at XX vegades"; Text[ catalan ] = "La clau de cerca s'ha reempla<6C>at XX vegades";
Text[ thai ] = "ค้นหาคีย์แทนที่ XX ครั้ง"; Text[ thai ] = "ค้นหาคีย์แทนที่ XX ครั้ง";
@@ -798,7 +798,7 @@ String RID_STR_COULDNTREAD
Text[ dutch ] = "Het bestand kan niet worden gelezen."; Text[ dutch ] = "Het bestand kan niet worden gelezen.";
Text[ chinese_simplified ] = "无法读取文件。"; Text[ chinese_simplified ] = "无法读取文件。";
Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "파일을 읽지 못했습니다"; Text[ korean ] = "파일을 읽지 못했습니다.";
Text[ turkish ] = "Dosya okunamad<61>"; Text[ turkish ] = "Dosya okunamad<61>";
Text[ catalan ] = "El fitxer no s'ha pogut llegir"; Text[ catalan ] = "El fitxer no s'ha pogut llegir";
Text[ finnish ] = "Tiedoston lukeminen ei onnistunut."; Text[ finnish ] = "Tiedoston lukeminen ei onnistunut.";
@@ -826,7 +826,7 @@ String RID_STR_COULDNTWRITE
Text[ dutch ] = "Het bestand kan niet worden opgeslagen."; Text[ dutch ] = "Het bestand kan niet worden opgeslagen.";
Text[ chinese_simplified ] = "无法存盘文件。"; Text[ chinese_simplified ] = "无法存盘文件。";
Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "파일을 저장하지 못했습니다"; Text[ korean ] = "파일을 저장하지 못했습니다.";
Text[ turkish ] = "Dosya kaydedilemedi"; Text[ turkish ] = "Dosya kaydedilemedi";
Text[ catalan ] = "El fitxer no s'ha pogut desar"; Text[ catalan ] = "El fitxer no s'ha pogut desar";
Text[ finnish ] = "Tiedoston tallentaminen ei onnistunut."; Text[ finnish ] = "Tiedoston tallentaminen ei onnistunut.";
@@ -876,7 +876,7 @@ String RID_STR_CANNOTCHANGENAMEREFLIB
Text [ portuguese_brazilian ] = "Der Name einer referenzierten Bibliothek kann nicht ge?ndert werden" ; Text [ portuguese_brazilian ] = "Der Name einer referenzierten Bibliothek kann nicht ge?ndert werden" ;
Text [ portuguese ] = "<22> imposs<73>vel alterar o nome de uma biblioteca de refer<65>ncia." ; Text [ portuguese ] = "<22> imposs<73>vel alterar o nome de uma biblioteca de refer<65>ncia." ;
Text[ chinese_simplified ] = "无法更改引用程序库的名称。"; Text[ chinese_simplified ] = "无法更改引用程序库的名称。";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>."; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.";
Text[ polish ] = "Nazwy biblioteki, do kt<6B>rej si<73> odwo<77>ano, nie mo<6D>na zmieni<6E>."; Text[ polish ] = "Nazwy biblioteki, do kt<6B>rej si<73> odwo<77>ano, nie mo<6D>na zmieni<6E>.";
Text[ japanese ] = "参照先ライブラリ名の変更はできません。"; Text[ japanese ] = "参照先ライブラリ名の変更はできません。";
Text[ chinese_traditional ] = "無法變更參照程式庫的名稱。"; Text[ chinese_traditional ] = "無法變更參照程式庫的名稱。";
@@ -912,7 +912,7 @@ String RID_STR_CANNOTUNLOADSTDLIB
Text[ dutch ] = "De standaardbibliotheek kan niet worden gedeactiveerd."; Text[ dutch ] = "De standaardbibliotheek kan niet worden gedeactiveerd.";
Text[ chinese_simplified ] = "无法关闭标准程序库"; Text[ chinese_simplified ] = "无法关闭标准程序库";
Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "기본 라이브러리 비활성화할 수 없습니다."; Text[ korean ] = "기본 라이브러리 비활성화할 수 없습니다.";
Text[ turkish ] = "Standart kitapl<70><6C><EFBFBD>n etkinli<6C>i kald<6C>r<EFBFBD>l<EFBFBD>maz."; Text[ turkish ] = "Standart kitapl<70><6C><EFBFBD>n etkinli<6C>i kald<6C>r<EFBFBD>l<EFBFBD>maz.";
Text[ catalan ] = "La biblioteca per defecte no es pot desactivar"; Text[ catalan ] = "La biblioteca per defecte no es pot desactivar";
Text[ finnish ] = "Oletuskirjaston k<>yt<79>st<73> poisto ei onnistu."; Text[ finnish ] = "Oletuskirjaston k<>yt<79>st<73> poisto ei onnistu.";
@@ -940,7 +940,7 @@ String RID_STR_GENERATESOURCE
Text[ dutch ] = "Brontekst maken"; Text[ dutch ] = "Brontekst maken";
Text[ chinese_simplified ] = "生成源文本"; Text[ chinese_simplified ] = "生成源文本";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "소스텍스트 생성"; Text[ korean ] = "원본 텍스트 생성";
Text[ turkish ] = "Kaynak kod olu<6C>turuluyor"; Text[ turkish ] = "Kaynak kod olu<6C>turuluyor";
Text[ catalan ] = "S'est<73> generant la font"; Text[ catalan ] = "S'est<73> generant la font";
Text[ finnish ] = "Luodaan l<>hde"; Text[ finnish ] = "Luodaan l<>hde";
@@ -1010,7 +1010,7 @@ String RID_STR_QUERYDELMACRO
Text [ ENGLISH ] = "Do you want to delete the macro XX ?" ; Text [ ENGLISH ] = "Do you want to delete the macro XX ?" ;
Text [ english_us ] = "Do you want to delete the macro XX ?" ; Text [ english_us ] = "Do you want to delete the macro XX ?" ;
Text [ italian ] = "Volete eliminare la macro XX ?" ; Text [ italian ] = "Volete eliminare la macro XX ?" ;
Text [ spanish ] = "<22>Desea eliminar la macro XX?" ; Text [ spanish ] = "<22>Desea borrar la macro XX?" ;
Text [ french ] = "Voulez-vous supprimer la macro XX ?" ; Text [ french ] = "Voulez-vous supprimer la macro XX ?" ;
Text [ dutch ] = "Wilt u de macro XX wissen?" ; Text [ dutch ] = "Wilt u de macro XX wissen?" ;
Text [ swedish ] = "Vill du radera makrot XX ?" ; Text [ swedish ] = "Vill du radera makrot XX ?" ;
@@ -1026,7 +1026,7 @@ String RID_STR_QUERYDELMACRO
Text[ dutch ] = "Wilt u de macro XX wissen?"; Text[ dutch ] = "Wilt u de macro XX wissen?";
Text[ chinese_simplified ] = "您要删除宏 XX "; Text[ chinese_simplified ] = "您要删除宏 XX ";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>;"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>;";
Text[ korean ] = "매크로XX을(를)삭제하겠습니까?"; Text[ korean ] = "매크로 XX을(를) 삭제하겠습니까?";
Text[ turkish ] = "XX makrosunu silmek istiyor musunuz?"; Text[ turkish ] = "XX makrosunu silmek istiyor musunuz?";
Text[ catalan ] = "Voleu suprimir la macro XX?"; Text[ catalan ] = "Voleu suprimir la macro XX?";
Text[ finnish ] = "Haluatko poistaa makron XX?"; Text[ finnish ] = "Haluatko poistaa makron XX?";
@@ -1040,7 +1040,7 @@ String RID_STR_QUERYDELDIALOG
Text [ dutch ] = "Wilt u het dialoogvenster XX wissen?" ; Text [ dutch ] = "Wilt u het dialoogvenster XX wissen?" ;
Text [ english_us ] = "Do you want to delete the XX dialog?" ; Text [ english_us ] = "Do you want to delete the XX dialog?" ;
Text [ italian ] = "Volete cancellare il dialogo XX ?" ; Text [ italian ] = "Volete cancellare il dialogo XX ?" ;
Text [ spanish ] = "<22>Desea eliminar el di<64>logo XX?" ; Text [ spanish ] = "<22>Desea borrar el di<64>logo XX?" ;
Text [ french ] = "Voulez-vous supprimer la bo<62>te de dialogue XX ?" ; Text [ french ] = "Voulez-vous supprimer la bo<62>te de dialogue XX ?" ;
Text [ swedish ] = "Vill du radera dialogrutan XX?" ; Text [ swedish ] = "Vill du radera dialogrutan XX?" ;
Text [ danish ] = "Vil du slette dialogen XX?" ; Text [ danish ] = "Vil du slette dialogen XX?" ;
@@ -1055,7 +1055,7 @@ String RID_STR_QUERYDELDIALOG
Text[ dutch ] = "Wilt u het dialoogvenster XX wissen?"; Text[ dutch ] = "Wilt u het dialoogvenster XX wissen?";
Text[ chinese_simplified ] = "您要删除对话 XX "; Text[ chinese_simplified ] = "您要删除对话 XX ";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>;"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>;";
Text[ korean ] = "대화상자XX을(를)삭제하겠습니까?"; Text[ korean ] = "대화 상자 XX을(를) 삭제하겠습니까?";
Text[ turkish ] = "XX diyalo<6C>unu silmek istiyor musunuz?"; Text[ turkish ] = "XX diyalo<6C>unu silmek istiyor musunuz?";
Text[ catalan ] = "Voleu suprimir el di<64>leg XX?"; Text[ catalan ] = "Voleu suprimir el di<64>leg XX?";
Text[ finnish ] = "Haluatko poistaa valintaikkunan XX?"; Text[ finnish ] = "Haluatko poistaa valintaikkunan XX?";
@@ -1068,7 +1068,7 @@ String RID_STR_QUERYDELLIB
Text [ ENGLISH ] = "Do you want to delete the libary XX" ; Text [ ENGLISH ] = "Do you want to delete the libary XX" ;
Text [ english_us ] = "Do you want to delete the XX library?" ; Text [ english_us ] = "Do you want to delete the XX library?" ;
Text [ italian ] = "Volete eliminare la library XX ?" ; Text [ italian ] = "Volete eliminare la library XX ?" ;
Text [ spanish ] = "<22>Desea eliminar la biblioteca XX?" ; Text [ spanish ] = "<22>Desea borrar la biblioteca XX?" ;
Text [ french ] = "Voulez-vous supprimer la biblioth<74>que XX ?" ; Text [ french ] = "Voulez-vous supprimer la biblioth<74>que XX ?" ;
Text [ dutch ] = "Wilt u de bibliotheek XX wissen?" ; Text [ dutch ] = "Wilt u de bibliotheek XX wissen?" ;
Text [ swedish ] = "Vill du radera biblioteket XX ?" ; Text [ swedish ] = "Vill du radera biblioteket XX ?" ;
@@ -1084,7 +1084,7 @@ String RID_STR_QUERYDELLIB
Text[ dutch ] = "Wilt u de bibliotheek XX wissen?"; Text[ dutch ] = "Wilt u de bibliotheek XX wissen?";
Text[ chinese_simplified ] = "您要删除程序库 XX "; Text[ chinese_simplified ] = "您要删除程序库 XX ";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>;"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>;";
Text[ korean ] = "라이브러리XX을(를) 삭제하겠습니까 ?"; Text[ korean ] = "라이브러리 XX을(를) 삭제하겠습니까?";
Text[ turkish ] = "XX kitapl<70><6C><EFBFBD>n<EFBFBD> silmek istiyor musunuz?"; Text[ turkish ] = "XX kitapl<70><6C><EFBFBD>n<EFBFBD> silmek istiyor musunuz?";
Text[ catalan ] = "Voleu suprimir la biblioteca XX?"; Text[ catalan ] = "Voleu suprimir la biblioteca XX?";
Text[ finnish ] = "Haluatko poistaa kirjaston XX?"; Text[ finnish ] = "Haluatko poistaa kirjaston XX?";
@@ -1097,7 +1097,7 @@ String RID_STR_QUERYDELLIBREF
Text [ ENGLISH ] = "Do you want to delete the reference to the libary XX ?" ; Text [ ENGLISH ] = "Do you want to delete the reference to the libary XX ?" ;
Text [ english_us ] = "Do you want to delete the reference to the XX library?" ; Text [ english_us ] = "Do you want to delete the reference to the XX library?" ;
Text [ italian ] = "Volete cancellare il riferimento alla library XX ?" ; Text [ italian ] = "Volete cancellare il riferimento alla library XX ?" ;
Text [ spanish ] = "<22>Desea eliminar la referencia a la biblioteca XX?" ; Text [ spanish ] = "<22>Desea borrar la referencia a la biblioteca XX?" ;
Text [ french ] = "Voulez-vous supprimer la r<>f<EFBFBD>rence <20> la biblioth<74>que XX ?" ; Text [ french ] = "Voulez-vous supprimer la r<>f<EFBFBD>rence <20> la biblioth<74>que XX ?" ;
Text [ dutch ] = "Wilt u de verwijzing naar de bibliotheek XX wissen?" ; Text [ dutch ] = "Wilt u de verwijzing naar de bibliotheek XX wissen?" ;
Text [ swedish ] = "Vill du radera referensen till biblioteket XX ?" ; Text [ swedish ] = "Vill du radera referensen till biblioteket XX ?" ;
@@ -1113,7 +1113,7 @@ String RID_STR_QUERYDELLIBREF
Text[ dutch ] = "Wilt u de verwijzing naar de bibliotheek XX wissen?"; Text[ dutch ] = "Wilt u de verwijzing naar de bibliotheek XX wissen?";
Text[ chinese_simplified ] = "您要删除程序库 XX 的引用?"; Text[ chinese_simplified ] = "您要删除程序库 XX 的引用?";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>;"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>;";
Text[ korean ] = "라이브러리XX에 있는 참조를 삭제하겠습니까?"; Text[ korean ] = "라이브러리 XX로의 참조를 삭제하겠습니까?";
Text[ turkish ] = "XX kitapl<70><6C><EFBFBD>na ili<6C>kin referans<6E> silmek istiyor musunuz?"; Text[ turkish ] = "XX kitapl<70><6C><EFBFBD>na ili<6C>kin referans<6E> silmek istiyor musunuz?";
Text[ catalan ] = "Voleu suprimir la refer<65>ncia a la biblioteca XX?"; Text[ catalan ] = "Voleu suprimir la refer<65>ncia a la biblioteca XX?";
Text[ finnish ] = "Haluatko poistaa viittauksen kirjastoon XX?"; Text[ finnish ] = "Haluatko poistaa viittauksen kirjastoon XX?";
@@ -1126,7 +1126,7 @@ String RID_STR_QUERYDELMODULE
Text [ ENGLISH ] = "Do you want to delete the module XX ?" ; Text [ ENGLISH ] = "Do you want to delete the module XX ?" ;
Text [ english_us ] = "Do you want to delete the XX module?" ; Text [ english_us ] = "Do you want to delete the XX module?" ;
Text [ italian ] = "Volete cancellare il modulo XX ?" ; Text [ italian ] = "Volete cancellare il modulo XX ?" ;
Text [ spanish ] = "<22>Desea eliminar el m<>dulo XX?" ; Text [ spanish ] = "<22>Desea borrar el m<>dulo XX?" ;
Text [ french ] = "Voulez-vous supprimer le module XX ?" ; Text [ french ] = "Voulez-vous supprimer le module XX ?" ;
Text [ dutch ] = "Wilt u de module XX wissen?" ; Text [ dutch ] = "Wilt u de module XX wissen?" ;
Text [ swedish ] = "Vill du radera modulen XX ?" ; Text [ swedish ] = "Vill du radera modulen XX ?" ;
@@ -1142,7 +1142,7 @@ String RID_STR_QUERYDELMODULE
Text[ dutch ] = "Wilt u de module XX wissen?"; Text[ dutch ] = "Wilt u de module XX wissen?";
Text[ chinese_simplified ] = "您要删除模块 XX "; Text[ chinese_simplified ] = "您要删除模块 XX ";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> XX;"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> XX;";
Text[ korean ] = "모듈XX을(를) 삭제하겠습니까 ?"; Text[ korean ] = "모듈 XX을(를) 삭제하겠습니까?";
Text[ turkish ] = "XX mod<6F>l<EFBFBD>n<EFBFBD> silmek istiyor musunuz?"; Text[ turkish ] = "XX mod<6F>l<EFBFBD>n<EFBFBD> silmek istiyor musunuz?";
Text[ catalan ] = "Voleu suprimir el m<>dul XX?"; Text[ catalan ] = "Voleu suprimir el m<>dul XX?";
Text[ finnish ] = "Haluatko poistaa moduulin XX?"; Text[ finnish ] = "Haluatko poistaa moduulin XX?";
@@ -1170,7 +1170,7 @@ String RID_STR_OBJNOTFOUND
Text[ dutch ] = "Object of methode niet gevonden."; Text[ dutch ] = "Object of methode niet gevonden.";
Text[ chinese_simplified ] = "没有找到对象或方法。"; Text[ chinese_simplified ] = "没有找到对象或方法。";
Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "개체 또는 메소드를 찾지 못했습니다"; Text[ korean ] = "개체 또는 메소드를 찾지 못했습니다.";
Text[ turkish ] = "Nesne ya da y<>ntem bulunamad<61>"; Text[ turkish ] = "Nesne ya da y<>ntem bulunamad<61>";
Text[ catalan ] = "No s'ha trobat l'objecte o el m<>tode"; Text[ catalan ] = "No s'ha trobat l'objecte o el m<>tode";
Text[ finnish ] = "Objektia tai menetelm<6C><6D> ei l<>ytynyt."; Text[ finnish ] = "Objektia tai menetelm<6C><6D> ei l<>ytynyt.";
@@ -1257,7 +1257,7 @@ String RID_STR_COLUMN
Text[ dutch ] = "Kolom"; Text[ dutch ] = "Kolom";
Text[ chinese_simplified ] = "列"; Text[ chinese_simplified ] = "列";
Text[ greek ] = "<22><>"; Text[ greek ] = "<22><>";
Text[ korean ] = ""; Text[ korean ] = "";
Text[ turkish ] = "S<>."; Text[ turkish ] = "S<>.";
Text[ catalan ] = "Col"; Text[ catalan ] = "Col";
Text[ finnish ] = "Sar"; Text[ finnish ] = "Sar";
@@ -1345,7 +1345,7 @@ String RID_STR_CANNOTCLOSE
Text[ dutch ] = "Het venster kan niet worden gesloten \ntijdens het uitvoeren van het BASIC-programma."; Text[ dutch ] = "Het venster kan niet worden gesloten \ntijdens het uitvoeren van het BASIC-programma.";
Text[ chinese_simplified ] = "在 BASIC 程序运行时\n无法关闭窗口。"; Text[ chinese_simplified ] = "在 BASIC 程序运行时\n无法关闭窗口。";
Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> \n<><6E><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> BASIC."; Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> \n<><6E><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> BASIC.";
Text[ korean ] = "BASIC 프로그램이 진행되는 동안\n창을 닫을 수 없습니다."; Text[ korean ] = "BASIC 프로그램이 진행되는 동안\n창을 닫을 수 없습니다.";
Text[ turkish ] = "BASIC program<61> <20>al<61><6C><EFBFBD>rken\npencere kapat<61>lamaz."; Text[ turkish ] = "BASIC program<61> <20>al<61><6C><EFBFBD>rken\npencere kapat<61>lamaz.";
Text[ catalan ] = "La finestra no es pot tancar mentre s'executa el BASIC."; Text[ catalan ] = "La finestra no es pot tancar mentre s'executa el BASIC.";
Text[ thai ] = "ไม่สามารถปิดหน้าต่างขณะกำลังใช้งาน BASIC อยู่ได้"; Text[ thai ] = "ไม่สามารถปิดหน้าต่างขณะกำลังใช้งาน BASIC อยู่ได้";
@@ -1372,7 +1372,7 @@ String RID_STR_REPLACESTDLIB
Text[ dutch ] = "De standaardbibliotheek kan niet worden vervangen."; Text[ dutch ] = "De standaardbibliotheek kan niet worden vervangen.";
Text[ chinese_simplified ] = "无法替换标准程序库。"; Text[ chinese_simplified ] = "无法替换标准程序库。";
Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>."; Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.";
Text[ korean ] = "기본 라이브러리는 대체할 수 없습니다."; Text[ korean ] = "기본 라이브러리는 바꿀 수 없습니다.";
Text[ turkish ] = "Standart kitapl<70>k de<64>i<EFBFBD>tirilemez."; Text[ turkish ] = "Standart kitapl<70>k de<64>i<EFBFBD>tirilemez.";
Text[ catalan ] = "La biblioteca per defecte no es pot reempla<6C>ar."; Text[ catalan ] = "La biblioteca per defecte no es pot reempla<6C>ar.";
Text[ finnish ] = "Oletuskirjaston korvaaminen ei onnistu."; Text[ finnish ] = "Oletuskirjaston korvaaminen ei onnistu.";
@@ -1402,7 +1402,7 @@ String RID_STR_REFNOTPOSSIBLE
Text[ dutch ] = "Verwijzing naar ' XX' niet mogelijk."; Text[ dutch ] = "Verwijzing naar ' XX' niet mogelijk.";
Text[ chinese_simplified ] = "无法引用 'XX' 。"; Text[ chinese_simplified ] = "无法引用 'XX' 。";
Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> 'XX' ."; Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> 'XX' .";
Text[ korean ] = "'XX'에 대한 참조 불가능"; Text[ korean ] = "'XX'로의 참조 불가능합니다.";
Text[ turkish ] = "'XX' referans al<61>namaz."; Text[ turkish ] = "'XX' referans al<61>namaz.";
Text[ catalan ] = "La refer<65>ncia a 'XX' no <20>s possible."; Text[ catalan ] = "La refer<65>ncia a 'XX' no <20>s possible.";
Text[ finnish ] = "Viittaus kohteeseen XX ei ole mahdollinen."; Text[ finnish ] = "Viittaus kohteeseen XX ei ole mahdollinen.";
@@ -1432,7 +1432,7 @@ String RID_STR_WATCHNAME
Text[ dutch ] = "Controle"; Text[ dutch ] = "Controle";
Text[ chinese_simplified ] = "查看"; Text[ chinese_simplified ] = "查看";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "감시자"; Text[ korean ] = "조사식";
Text[ turkish ] = "<22>zleyici"; Text[ turkish ] = "<22>zleyici";
Text[ catalan ] = "Mira"; Text[ catalan ] = "Mira";
Text[ thai ] = "ดู"; Text[ thai ] = "ดู";
@@ -1450,7 +1450,7 @@ String RID_STR_STACKNAME
Text [ french ] = "Pile" ; Text [ french ] = "Pile" ;
Text [ swedish ] = "Kommandostack" ; Text [ swedish ] = "Kommandostack" ;
Text [ dutch ] = "Opgeroepen stack" ; Text [ dutch ] = "Opgeroepen stack" ;
Text [ spanish ] = "Pila de comandos" ; Text [ spanish ] = "Pila" ;
Text [ english_us ] = "Call Stack" ; Text [ english_us ] = "Call Stack" ;
Text[ chinese_simplified ] = "呼叫堆叠"; Text[ chinese_simplified ] = "呼叫堆叠";
Text[ russian ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
@@ -1461,7 +1461,7 @@ String RID_STR_STACKNAME
Text[ dutch ] = "Opgeroepen stack"; Text[ dutch ] = "Opgeroepen stack";
Text[ chinese_simplified ] = "呼叫堆叠"; Text[ chinese_simplified ] = "呼叫堆叠";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "스택"; Text[ korean ] = "스택 호출";
Text[ turkish ] = "Komut y<><79><EFBFBD>n<EFBFBD>"; Text[ turkish ] = "Komut y<><79><EFBFBD>n<EFBFBD>";
Text[ catalan ] = "Crida la pila"; Text[ catalan ] = "Crida la pila";
Text[ thai ] = "คอลล์สแต็ค"; Text[ thai ] = "คอลล์สแต็ค";
@@ -1548,7 +1548,7 @@ String RID_STR_STDDIALOGNAME
Text[ dutch ] = "Dialoogvenster"; Text[ dutch ] = "Dialoogvenster";
Text[ chinese_simplified ] = "对话框"; Text[ chinese_simplified ] = "对话框";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "대화상자"; Text[ korean ] = "대화 상자";
Text[ turkish ] = "Diyalog"; Text[ turkish ] = "Diyalog";
Text[ catalan ] = "Di<44>leg"; Text[ catalan ] = "Di<44>leg";
Text[ thai ] = "ไดอะล็อก"; Text[ thai ] = "ไดอะล็อก";
@@ -1660,7 +1660,7 @@ String RID_STR_NEWDLG
Text[ dutch ] = "Nieuw dialoogvenster"; Text[ dutch ] = "Nieuw dialoogvenster";
Text[ chinese_simplified ] = "新的对话框"; Text[ chinese_simplified ] = "新的对话框";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "새 대화상자"; Text[ korean ] = "새 대화 상자";
Text[ turkish ] = "Yeni diyalog"; Text[ turkish ] = "Yeni diyalog";
Text[ catalan ] = "Di<44>leg nou"; Text[ catalan ] = "Di<44>leg nou";
Text[ finnish ] = "Uusi valintaikkuna"; Text[ finnish ] = "Uusi valintaikkuna";
@@ -1776,7 +1776,7 @@ String RID_STR_WILLSTOPPRG
Text[ dutch ] = "U moet uw programma na deze wijziging opnieuw opstarten.\nDoorgaan?"; Text[ dutch ] = "U moet uw programma na deze wijziging opnieuw opstarten.\nDoorgaan?";
Text[ chinese_simplified ] = "更改之后您必须重新启动这个程序。\n您要继续吗"; Text[ chinese_simplified ] = "更改之后您必须重新启动这个程序。\n您要继续吗";
Text[ greek ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>.\n<><6E><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;"; Text[ greek ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>.\n<><6E><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;";
Text[ korean ] = "이 변경 후, 사용자의 프로그램을 다시 시작해야 합니다.\n계속하겠습니까?"; Text[ korean ] = "이 변경 후 사용자의 프로그램을 다시 시작해야 합니다.\n계속하겠습니까?";
Text[ turkish ] = "Bu de<64>i<EFBFBD>iklikten sonra program<61> yeniden ba<62>latman<61>z gerekir.\nDevam etmek istiyor musunuz?"; Text[ turkish ] = "Bu de<64>i<EFBFBD>iklikten sonra program<61> yeniden ba<62>latman<61>z gerekir.\nDevam etmek istiyor musunuz?";
Text[ catalan ] = "Haureu de reiniciar el programa despr<70>s d'aquesta edici<63>\nVoleu continuar?"; Text[ catalan ] = "Haureu de reiniciar el programa despr<70>s d'aquesta edici<63>\nVoleu continuar?";
Text[ finnish ] = "Ohjelma on k<>ynnistett<74>v<EFBFBD> uudelleen t<>m<EFBFBD>n muutoksen j<>lkeen.\nJatketaanko?"; Text[ finnish ] = "Ohjelma on k<>ynnistett<74>v<EFBFBD> uudelleen t<>m<EFBFBD>n muutoksen j<>lkeen.\nJatketaanko?";
@@ -1804,7 +1804,7 @@ String RID_STR_SEARCHALLMODULES
Text[ dutch ] = "Wilt u de tekst in alle actieve modules vervangen?"; Text[ dutch ] = "Wilt u de tekst in alle actieve modules vervangen?";
Text[ chinese_simplified ] = "要替换使用中的模块的全部文字?"; Text[ chinese_simplified ] = "要替换使用中的模块的全部文字?";
Text[ greek ] = "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;"; Text[ greek ] = "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;";
Text[ korean ] = "활성화된 모든 모듈에서 텍스트를 대체하겠습니까?"; Text[ korean ] = "텍스트를 활성화된 모든 모듈에서 대체하겠습니까? ";
Text[ turkish ] = "Bu metin t<>m etkin mod<6F>llerde de<64>i<EFBFBD>tirilsin mi?"; Text[ turkish ] = "Bu metin t<>m etkin mod<6F>llerde de<64>i<EFBFBD>tirilsin mi?";
Text[ catalan ] = "Voleu reempla<6C>ar el text de tots els m<>duls actius?"; Text[ catalan ] = "Voleu reempla<6C>ar el text de tots els m<>duls actius?";
Text[ finnish ] = "Haluatko korvata tekstin kaikissa aktiivisissa moduuleissa?"; Text[ finnish ] = "Haluatko korvata tekstin kaikissa aktiivisissa moduuleissa?";
@@ -1830,7 +1830,7 @@ ImageButton RID_IMGBTN_REMOVEWATCH
QuickHelpText [ ENGLISH ] = "Remove watch" ; QuickHelpText [ ENGLISH ] = "Remove watch" ;
QuickHelpText [ english_us ] = "Remove Watch" ; QuickHelpText [ english_us ] = "Remove Watch" ;
QuickHelpText [ italian ] = "Rimuovi controllo" ; QuickHelpText [ italian ] = "Rimuovi controllo" ;
QuickHelpText [ spanish ] = "Eliminar observador" ; QuickHelpText [ spanish ] = "Borrar observador" ;
QuickHelpText [ french ] = "Supprimer le t<>moin" ; QuickHelpText [ french ] = "Supprimer le t<>moin" ;
QuickHelpText [ dutch ] = "Bewaker verwijderen" ; QuickHelpText [ dutch ] = "Bewaker verwijderen" ;
QuickHelpText [ danish ] = "Fjern observat<61>r" ; QuickHelpText [ danish ] = "Fjern observat<61>r" ;
@@ -1846,7 +1846,7 @@ ImageButton RID_IMGBTN_REMOVEWATCH
QuickHelpText[ dutch ] = "Bewaker verwijderen"; QuickHelpText[ dutch ] = "Bewaker verwijderen";
QuickHelpText[ chinese_simplified ] = "隐入查看"; QuickHelpText[ chinese_simplified ] = "隐入查看";
QuickHelpText[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; QuickHelpText[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
QuickHelpText[ korean ] = "감시자 제거"; QuickHelpText[ korean ] = "조사식 제거";
QuickHelpText[ turkish ] = "Remove Watch"; QuickHelpText[ turkish ] = "Remove Watch";
QuickHelpText[ catalan ] = "Suprimeix l'observador"; QuickHelpText[ catalan ] = "Suprimeix l'observador";
QuickHelpText[ finnish ] = "Poista kello"; QuickHelpText[ finnish ] = "Poista kello";
@@ -1887,7 +1887,7 @@ String RID_STR_REMOVEWATCH
Text[ dutch ] = "Controle:"; Text[ dutch ] = "Controle:";
Text[ chinese_simplified ] = "查看: "; Text[ chinese_simplified ] = "查看: ";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: "; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: ";
Text[ korean ] = "감시자: "; Text[ korean ] = "조사식: ";
Text[ turkish ] = "<22>zleyici: "; Text[ turkish ] = "<22>zleyici: ";
Text[ catalan ] = "Observador:"; Text[ catalan ] = "Observador:";
Text[ thai ] = "ดู:"; Text[ thai ] = "ดู:";
@@ -2276,7 +2276,7 @@ ToolBox RID_BASICIDE_OBJECTBAR
Text[ dutch ] = "Stap voor stap"; Text[ dutch ] = "Stap voor stap";
Text[ chinese_simplified ] = "单步"; Text[ chinese_simplified ] = "单步";
Text[ greek ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>";
Text[ korean ] = "각각의 단계"; Text[ korean ] = "개별 단계";
Text[ turkish ] = "Tek ad<61>m"; Text[ turkish ] = "Tek ad<61>m";
Text[ catalan ] = "Pas simple"; Text[ catalan ] = "Pas simple";
Text[ finnish ] = "Yksitt<74>inen vaihe"; Text[ finnish ] = "Yksitt<74>inen vaihe";
@@ -2306,7 +2306,7 @@ ToolBox RID_BASICIDE_OBJECTBAR
Text[ dutch ] = "Terugspringen"; Text[ dutch ] = "Terugspringen";
Text[ chinese_simplified ] = "返回一步"; Text[ chinese_simplified ] = "返回一步";
Text[ greek ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>";
Text[ korean ] = "뒤로 건너뛰기"; Text[ korean ] = "뒤로 이동";
Text[ turkish ] = "Geri ad<61>m"; Text[ turkish ] = "Geri ad<61>m";
Text[ catalan ] = "Un pas enrere"; Text[ catalan ] = "Un pas enrere";
Text[ finnish ] = "Edellinen vaihe"; Text[ finnish ] = "Edellinen vaihe";
@@ -2365,7 +2365,7 @@ ToolBox RID_BASICIDE_OBJECTBAR
Text[ dutch ] = "Controle weergeven"; Text[ dutch ] = "Controle weergeven";
Text[ chinese_simplified ] = "查看"; Text[ chinese_simplified ] = "查看";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "감시자 표시"; Text[ korean ] = "조사식 추가";
Text[ turkish ] = "<22>zleyici ekle"; Text[ turkish ] = "<22>zleyici ekle";
Text[ catalan ] = "Afegeix l'observador"; Text[ catalan ] = "Afegeix l'observador";
Text[ finnish ] = "Lis<69><73> seuranta"; Text[ finnish ] = "Lis<69><73> seuranta";
@@ -2557,7 +2557,7 @@ ToolBox RID_BASICIDE_OBJECTBAR
Text[ dutch ] = "Brontekst invoegen"; Text[ dutch ] = "Brontekst invoegen";
Text[ chinese_simplified ] = "插入源文本"; Text[ chinese_simplified ] = "插入源文本";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "소스텍스트 삽입"; Text[ korean ] = "원본 텍스트 삽입";
Text[ turkish ] = "Kaynak metin ekle"; Text[ turkish ] = "Kaynak metin ekle";
Text[ catalan ] = "Insereix un text font"; Text[ catalan ] = "Insereix un text font";
Text[ finnish ] = "Lis<69><73> l<>hdeteksti"; Text[ finnish ] = "Lis<69><73> l<>hdeteksti";
@@ -2584,7 +2584,7 @@ ToolBox RID_BASICIDE_OBJECTBAR
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>..."; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>...";
Text[ polish ] = "Zapisz tekst <20>r<EFBFBD>d<EFBFBD>owy jako..."; Text[ polish ] = "Zapisz tekst <20>r<EFBFBD>d<EFBFBD>owy jako...";
Text[ japanese ] = "ソーステキストに名前をつけて保存..."; Text[ japanese ] = "ソーステキストに名前をつけて保存...";
Text[ korean ] = "소스텍스트를 다른 이름으로 저장..."; Text[ korean ] = "원본 텍스트를 다른 이름으로 저장...";
Text[ chinese_simplified ] = "源文本另存为..."; Text[ chinese_simplified ] = "源文本另存为...";
Text[ chinese_traditional ] = "另存原始檔..."; Text[ chinese_traditional ] = "另存原始檔...";
Text[ arabic ] = "<22><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>..."; Text[ arabic ] = "<22><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>...";
@@ -2688,7 +2688,7 @@ Menu RID_POPUP_BRKPROPS
Text[ dutch ] = "Eigenschappen..."; Text[ dutch ] = "Eigenschappen...";
Text[ chinese_simplified ] = "属性..."; Text[ chinese_simplified ] = "属性...";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>..."; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>...";
Text[ korean ] = "등록정보..."; Text[ korean ] = "등록 정보...";
Text[ turkish ] = "<22>zellikler..."; Text[ turkish ] = "<22>zellikler...";
Text[ catalan ] = "Propietats..."; Text[ catalan ] = "Propietats...";
Text[ thai ] = "คุณสมบัติ..."; Text[ thai ] = "คุณสมบัติ...";
@@ -2703,7 +2703,7 @@ Menu RID_POPUP_BRKPROPS
Text[ dutch ] = "Eigenschappen"; Text[ dutch ] = "Eigenschappen";
Text[ chinese_simplified ] = "属性"; Text[ chinese_simplified ] = "属性";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "등록정보"; Text[ korean ] = "등록 정보";
Text[ turkish ] = "<22>zellikler"; Text[ turkish ] = "<22>zellikler";
Text[ catalan ] = "Propietats"; Text[ catalan ] = "Propietats";
Text[ thai ] = "คุณสมบัติ"; Text[ thai ] = "คุณสมบัติ";
@@ -2817,7 +2817,7 @@ Menu RID_POPUP_TABBAR
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> BASIC"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> BASIC";
Text[ polish ] = "Modu<64> BASIC"; Text[ polish ] = "Modu<64> BASIC";
Text[ japanese ] = "BASIC モジュール"; Text[ japanese ] = "BASIC モジュール";
Text[ chinese_traditional ] = "BASIC 模"; Text[ chinese_traditional ] = "BASIC 模";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> BASIC <20><><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> BASIC <20><><EFBFBD><EFBFBD>";
Text[ dutch ] = "BASIC-module"; Text[ dutch ] = "BASIC-module";
Text[ chinese_simplified ] = "BASIC 模块"; Text[ chinese_simplified ] = "BASIC 模块";
@@ -2852,7 +2852,7 @@ Menu RID_POPUP_TABBAR
Text[ dutch ] = "BASIC-dialoog"; Text[ dutch ] = "BASIC-dialoog";
Text[ chinese_simplified ] = "BASIC 对话框"; Text[ chinese_simplified ] = "BASIC 对话框";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> BASIC"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> BASIC";
Text[ korean ] = "BASIC 대화상자"; Text[ korean ] = "BASIC 대화 상자";
Text[ turkish ] = "BASIC diyalo<6C>u"; Text[ turkish ] = "BASIC diyalo<6C>u";
Text[ catalan ] = "Di<44>leg del BASIC"; Text[ catalan ] = "Di<44>leg del BASIC";
Text[ finnish ] = "BASIC-valintaikkuna"; Text[ finnish ] = "BASIC-valintaikkuna";
@@ -2891,7 +2891,7 @@ Menu RID_POPUP_TABBAR
Text [ french ] = "Supprimer" ; Text [ french ] = "Supprimer" ;
Text [ swedish ] = "Radera" ; Text [ swedish ] = "Radera" ;
Text [ dutch ] = "Verwijderen" ; Text [ dutch ] = "Verwijderen" ;
Text [ spanish ] = "Eliminar" ; Text [ spanish ] = "Borrar" ;
Text [ english_us ] = "Delete" ; Text [ english_us ] = "Delete" ;
/* ### ACHTUNG: Neuer Text in Resource? Modul oder Dialog l<>schen : Modul oder Dialog l<>schen */ /* ### ACHTUNG: Neuer Text in Resource? Modul oder Dialog l<>schen : Modul oder Dialog l<>schen */
Text[ chinese_simplified ] = "删除"; Text[ chinese_simplified ] = "删除";
@@ -2934,7 +2934,7 @@ Menu RID_POPUP_TABBAR
Text[ dutch ] = "Naam wijzigen"; Text[ dutch ] = "Naam wijzigen";
Text[ chinese_simplified ] = "重命名"; Text[ chinese_simplified ] = "重命名";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "이름 변경"; Text[ korean ] = "이름 바꾸기";
Text[ turkish ] = "Yeniden adland<6E>r"; Text[ turkish ] = "Yeniden adland<6E>r";
Text[ catalan ] = "Reanomena"; Text[ catalan ] = "Reanomena";
Text[ thai ] = "เปลี่ยนชื่อ"; Text[ thai ] = "เปลี่ยนชื่อ";
@@ -3128,7 +3128,7 @@ String RID_STR_QUERYREPLACEMACRO
Text[ polish ] = "Do you want to overwrite the macro XX ?"; Text[ polish ] = "Do you want to overwrite the macro XX ?";
Text[ portuguese_brazilian ] = "Do you want to overwrite the macro XX ?"; Text[ portuguese_brazilian ] = "Do you want to overwrite the macro XX ?";
Text[ japanese ] = "マクロ XX に上書きしますか。"; Text[ japanese ] = "マクロ XX に上書きしますか。";
Text[ korean ] = "macro XX 를 대체하시겠습니까?"; Text[ korean ] = "macro XX 을(를) 덮어쓰시겠습니까?";
Text[ chinese_simplified ] = "您要改写宏 XX "; Text[ chinese_simplified ] = "您要改写宏 XX ";
Text[ chinese_traditional ] = "您要覆寫 XX 巨集 ?"; Text[ chinese_traditional ] = "您要覆寫 XX 巨集 ?";
Text[ turkish ] = "Do you want to overwrite the macro XX ?"; Text[ turkish ] = "Do you want to overwrite the macro XX ?";
@@ -3185,22 +3185,9 @@ Menu RID_BASICMENU
ITEM_FILE_SAVEDOCS ITEM_FILE_SAVEDOCS
}; };
MenuItem MenuItem
{
ITEM_FILE_MAIL_SENDDOC
};
MenuItem
{ {
ITEM_FILE_DOCTEMPLATE ITEM_FILE_DOCTEMPLATE
}; };
MenuItem
{
Separator = TRUE ;
};
MenuItem
{
ITEM_FILE_DOCINFO
};
MenuItem MenuItem
{ {
Separator = TRUE ; Separator = TRUE ;
@@ -3321,18 +3308,6 @@ Menu RID_BASICMENU
{ {
ItemList = ItemList =
{ {
MenuItem
{
ITEM_VIEW_EXPLORER
};
MenuItem
{
ITEM_VIEW_BROWSER
};
MenuItem
{
Separator = TRUE ;
};
MenuItem MenuItem
{ {
Identifier = 22 ; Identifier = 22 ;
@@ -3341,7 +3316,7 @@ Menu RID_BASICMENU
Text [ english_us ] = "~Toolbars" ; Text [ english_us ] = "~Toolbars" ;
Text [ swedish ] = "S~ymbollister" ; Text [ swedish ] = "S~ymbollister" ;
Text [ danish ] = "Ikonlin~jer" ; Text [ danish ] = "Ikonlin~jer" ;
Text [ italian ] = "Barre dei simboli" ; Text [ italian ] = "~Barre dei simboli" ;
Text [ spanish ] = "Barras de ~s<>mbolos" ; Text [ spanish ] = "Barras de ~s<>mbolos" ;
Text [ french ] = "Barres d'~outils" ; Text [ french ] = "Barres d'~outils" ;
Text [ dutch ] = "~Werkbalken" ; Text [ dutch ] = "~Werkbalken" ;
@@ -3368,7 +3343,7 @@ Menu RID_BASICMENU
Text [ english_us ] = "Main ~Toolbar" ; Text [ english_us ] = "Main ~Toolbar" ;
Text [ swedish ] = "~Verktygslist" ; Text [ swedish ] = "~Verktygslist" ;
Text [ danish ] = "V<>rkt<6B>jslinje" ; Text [ danish ] = "V<>rkt<6B>jslinje" ;
Text [ italian ] = "Barra degli strumenti" ; Text [ italian ] = "Barra degli s~trumenti" ;
Text [ spanish ] = "Barra de ~herramientas" ; Text [ spanish ] = "Barra de ~herramientas" ;
Text [ french ] = "Barre d'~instruments" ; Text [ french ] = "Barre d'~instruments" ;
Text [ dutch ] = "Werk~tuigbalk" ; Text [ dutch ] = "Werk~tuigbalk" ;
@@ -3415,7 +3390,7 @@ Menu RID_BASICMENU
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>..."; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>...";
Text[ polish ] = "Edytuj..."; Text[ polish ] = "Edytuj...";
Text[ japanese ] = "カスタマイズ(~Z)..."; Text[ japanese ] = "カスタマイズ(~Z)...";
Text[ chinese_traditional ] = "編輯(~Z)..."; Text[ chinese_traditional ] = "自訂(~Z)...";
Text[ greek ] = "~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>..."; Text[ greek ] = "~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>...";
Text[ korean ] = "사용자 정의(~Z)..."; Text[ korean ] = "사용자 정의(~Z)...";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD>..."; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD>...";
@@ -3453,41 +3428,6 @@ Menu RID_BASICMENU
{ {
Separator = TRUE ; Separator = TRUE ;
}; };
MenuItem
{
Identifier = SID_SOURCEVIEW ;
HelpID = SID_SOURCEVIEW ;
Text = "HTM~L-Quelltext" ;
Text [ ENGLISH ] = "HTML source" ;
Text [ dutch ] = "~HTML-brontekst" ;
Text [ english_us ] = "HT~ML Source" ;
Text [ italian ] = "Testo sorgente HTML" ;
Text [ spanish ] = "Texto fuente ~HTML" ;
Text [ french ] = "Texte source ~HTML" ;
Text [ swedish ] = "HTM~L-k<>lltext" ;
Text [ danish ] = "HTML-kildetekst" ;
Text [ portuguese ] = "Fonte ~HTML" ;
Text [ portuguese_brazilian ] = "HTML-Quelltext" ;
Text[ chinese_simplified ] = "HT~ML 源文本";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> HTM~L";
Text[ polish ] = "Tekst <20>r<EFBFBD>d<EFBFBD>owy HTML";
Text[ japanese ] = "HT~ML ソーステキスト";
Text[ chinese_traditional ] = "HT~ML 原始檔";
Text[ dutch ] = "~HTML-brontekst";
Text[ chinese_simplified ] = "HT~ML 源文本";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> HTM~L";
Text[ korean ] = "HT~ML 소스텍스트";
Text[ arabic ] = "<22><> <20><><EFBFBD><EFBFBD> HTML";
Text[ turkish ] = "HTM~L kaynak kodu";
Text[ language_user1 ] = " ";
Text[ catalan ] = "Font HT~ML";
Text[ finnish ] = "HT~ML-l<>hde";
Text[ thai ] = "แหล่ง HT~ML ";
};
MenuItem
{
Separator = TRUE ;
};
ITEM_VIEW_SCREENMODE ITEM_VIEW_SCREENMODE
}; };
}; };
@@ -3552,7 +3492,24 @@ Menu RID_BASICMENU
Text[ catalan ] = "Ei~nes"; Text[ catalan ] = "Ei~nes";
Text[ thai ] = "เ~ครื่องมือ"; Text[ thai ] = "เ~ครื่องมือ";
}; };
ITEM_WINDOW_MENU GLOBLMN_WINMN
{
ITEM_WINDOW_MDIWINDOWLIST
SubMenu = Menu
{
ItemList =
{
MenuItem
{
ITEM_WINDOW_CLOSEWIN
};
MenuItem
{
Separator = TRUE ;
};
};
};
};
ITEM_HELP_MENU ITEM_HELP_MENU
}; };
}; };
@@ -3604,22 +3561,9 @@ Menu RID_BASICPLUGINMENU
ITEM_FILE_SAVEDOCS ITEM_FILE_SAVEDOCS
}; };
MenuItem MenuItem
{
ITEM_FILE_MAIL_SENDDOC
};
MenuItem
{ {
ITEM_FILE_DOCTEMPLATE ITEM_FILE_DOCTEMPLATE
}; };
MenuItem
{
Separator = TRUE ;
};
MenuItem
{
ITEM_FILE_DOCINFO
};
MenuItem MenuItem
{ {
Separator = TRUE ; Separator = TRUE ;
@@ -3748,14 +3692,6 @@ Menu RID_BASICPLUGINMENU
{ {
ItemList = ItemList =
{ {
MenuItem
{
ITEM_VIEW_BROWSER
};
MenuItem
{
Separator = TRUE ;
};
MenuItem MenuItem
{ {
Identifier = 22 ; Identifier = 22 ;
@@ -3764,7 +3700,7 @@ Menu RID_BASICPLUGINMENU
Text [ english_us ] = "~Toolbars" ; Text [ english_us ] = "~Toolbars" ;
Text [ swedish ] = "S~ymbollister" ; Text [ swedish ] = "S~ymbollister" ;
Text [ danish ] = "Ikonlin~jer" ; Text [ danish ] = "Ikonlin~jer" ;
Text [ italian ] = "Barre dei simboli" ; Text [ italian ] = "Barr~e degli strumenti" ;
Text [ spanish ] = "Barras de ~s<>mbolos" ; Text [ spanish ] = "Barras de ~s<>mbolos" ;
Text [ french ] = "Barres d'~outils" ; Text [ french ] = "Barres d'~outils" ;
Text [ dutch ] = "~Werkbalken" ; Text [ dutch ] = "~Werkbalken" ;
@@ -3791,7 +3727,7 @@ Menu RID_BASICPLUGINMENU
Text [ english_us ] = "Main ~Toolbar" ; Text [ english_us ] = "Main ~Toolbar" ;
Text [ swedish ] = "~Verktygslist" ; Text [ swedish ] = "~Verktygslist" ;
Text [ danish ] = "~V<>rkt<6B>jslinje" ; Text [ danish ] = "~V<>rkt<6B>jslinje" ;
Text [ italian ] = "Barra degli strumenti" ; Text [ italian ] = "Barra degli s~trumenti" ;
Text [ spanish ] = "Barra de ~herramientas" ; Text [ spanish ] = "Barra de ~herramientas" ;
Text [ french ] = "Barre d'~instruments" ; Text [ french ] = "Barre d'~instruments" ;
Text [ dutch ] = "Werk~tuigbalk" ; Text [ dutch ] = "Werk~tuigbalk" ;
@@ -3803,7 +3739,7 @@ Menu RID_BASICPLUGINMENU
Text[ japanese ] = "標準ツールバー(~T)"; Text[ japanese ] = "標準ツールバー(~T)";
Text[ chinese_traditional ] = "主工具列(~T)"; Text[ chinese_traditional ] = "主工具列(~T)";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~<7E><>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~<7E><>";
Text[ korean ] = "도구 모음(~T)"; Text[ korean ] = "도구 모음(~T)";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ turkish ] = "Ana ara<72> <20>ubu<62>u"; Text[ turkish ] = "Ana ara<72> <20>ubu<62>u";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
@@ -3876,41 +3812,6 @@ Menu RID_BASICPLUGINMENU
{ {
Separator = TRUE ; Separator = TRUE ;
}; };
MenuItem
{
Identifier = SID_SOURCEVIEW ;
HelpID = SID_SOURCEVIEW ;
Text = "HTM~L-Quelltext" ;
Text [ ENGLISH ] = "HTML source" ;
Text [ dutch ] = "~HTML-brontekst" ;
Text [ english_us ] = "HT~ML Source" ;
Text [ italian ] = "Testo sorgente HTML" ;
Text [ spanish ] = "Texto fuente ~HTML" ;
Text [ french ] = "Texte source ~HTML" ;
Text [ swedish ] = "HTM~L-k<>lltext" ;
Text [ danish ] = "HTML-kildetekst" ;
Text [ portuguese ] = "Fonte ~HTML" ;
Text [ portuguese_brazilian ] = "HTML-Quelltext" ;
Text[ chinese_simplified ] = "HT~ML 源文本";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> HTM~L";
Text[ polish ] = "Tekst <20>r<EFBFBD>d<EFBFBD>owy HTML";
Text[ japanese ] = "HT~ML ソーステキスト";
Text[ chinese_traditional ] = "HT~ML 原始檔";
Text[ dutch ] = "~HTML-brontekst";
Text[ chinese_simplified ] = "HT~ML 源文本";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> HTM~L";
Text[ korean ] = "HT~ML 소스 텍스트(ㅡ)";
Text[ arabic ] = "<22><> <20><><EFBFBD><EFBFBD> HTML";
Text[ turkish ] = "HTM~L kaynak kodu";
Text[ language_user1 ] = " ";
Text[ catalan ] = "Font HT~ML";
Text[ finnish ] = "HT~ML-l<>hde";
Text[ thai ] = "แหล่ง HT~ML ";
};
MenuItem
{
Separator = TRUE ;
};
ITEM_VIEW_SCREENMODE ITEM_VIEW_SCREENMODE
}; };
}; };
@@ -3975,9 +3876,31 @@ Menu RID_BASICPLUGINMENU
Text[ catalan ] = "Ei~nes"; Text[ catalan ] = "Ei~nes";
Text[ thai ] = "เ~ครื่องมือ"; Text[ thai ] = "เ~ครื่องมือ";
}; };
ITEM_WINDOW_MENU GLOBLMN_WINMN
{
ITEM_WINDOW_MDIWINDOWLIST
SubMenu = Menu
{
ItemList =
{
MenuItem
{
ITEM_WINDOW_CLOSEWIN
};
MenuItem
{
Separator = TRUE ;
};
};
};
};
ITEM_HELP_MENU ITEM_HELP_MENU
}; };
}; };

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: brkdlg.src,v $ * $RCSfile: brkdlg.src,v $
* *
* $Revision: 1.15 $ * $Revision: 1.16 $
* *
* last change: $Author: kz $ $Date: 2001-07-14 00:09:27 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:05 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -105,18 +105,19 @@ ModalDialog RID_BASICIDE_BREAKPOINTDLG
Text [ danish ] = "Ny" ; Text [ danish ] = "Ny" ;
Text [ portuguese ] = "Novo" ; Text [ portuguese ] = "Novo" ;
Text [ portuguese_brazilian ] = "Novo" ; Text [ portuguese_brazilian ] = "Novo" ;
Text[ chinese_simplified ] = "<EFBFBD>½<EFBFBD>"; Text[ chinese_simplified ] = "新建";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Nowy"; Text[ polish ] = "Nowy";
Text[ japanese ] = "<EFBFBD>V<EFBFBD>K"; Text[ japanese ] = "新規";
Text[ chinese_traditional ] = "<EFBFBD>}<7D>ҷs<D2B7><73>"; Text[ chinese_traditional ] = "開啟新檔";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ korean ] = "새로 만들기";
Text[ turkish ] = "Yeni"; Text[ turkish ] = "Yeni";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Nuevo"; Text[ catalan ] = "Nou";
Text[ finnish ] = "Uusi"; Text[ finnish ] = "Uusi";
Text[ thai ] = "ใหม่";
}; };
PushButton RID_PB_DEL PushButton RID_PB_DEL
{ {
@@ -129,24 +130,25 @@ ModalDialog RID_BASICIDE_BREAKPOINTDLG
Text [ dutch ] = "Wissen" ; Text [ dutch ] = "Wissen" ;
Text [ english_us ] = "Delete" ; Text [ english_us ] = "Delete" ;
Text [ italian ] = "Elimina" ; Text [ italian ] = "Elimina" ;
Text [ spanish ] = "Eliminar" ; Text [ spanish ] = "Borrar" ;
Text [ french ] = "Supprimer" ; Text [ french ] = "Supprimer" ;
Text [ swedish ] = "Radera" ; Text [ swedish ] = "Radera" ;
Text [ danish ] = "Slet" ; Text [ danish ] = "Slet" ;
Text [ portuguese ] = "Eliminar" ; Text [ portuguese ] = "Eliminar" ;
Text [ portuguese_brazilian ] = "L?chen" ; Text [ portuguese_brazilian ] = "L?chen" ;
Text[ chinese_simplified ] = "ɾ<EFBFBD><EFBFBD>"; Text[ chinese_simplified ] = "删除";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Usu<73>"; Text[ polish ] = "Usu<73>";
Text[ japanese ] = "<EFBFBD>"; Text[ japanese ] = "削除";
Text[ chinese_traditional ] = "<EFBFBD>R<EFBFBD><EFBFBD>"; Text[ chinese_traditional ] = "刪除";
Text[ arabic ] = "<22><><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ korean ] = "삭제";
Text[ turkish ] = "Sil"; Text[ turkish ] = "Sil";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Eliminar"; Text[ catalan ] = "Suprimeix";
Text[ finnish ] = "Poista"; Text[ finnish ] = "Poista";
Text[ thai ] = "ลบ";
}; };
CheckBox RID_CHKB_ACTIVE CheckBox RID_CHKB_ACTIVE
{ {
@@ -161,21 +163,22 @@ ModalDialog RID_BASICIDE_BREAKPOINTDLG
Text [ french ] = "Actif" ; Text [ french ] = "Actif" ;
Text [ dutch ] = "Actief" ; Text [ dutch ] = "Actief" ;
Text [ swedish ] = "Aktiv" ; Text [ swedish ] = "Aktiv" ;
Text [ danish ] = "I/O aktiv" ; Text [ danish ] = "Aktiv" ;
Text [ portuguese_brazilian ] = "Aktiv" ; Text [ portuguese_brazilian ] = "Aktiv" ;
Text [ portuguese ] = "Activo" ; Text [ portuguese ] = "Activo" ;
Text[ chinese_simplified ] = "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ chinese_simplified ] = "使用中";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD>./<EFBFBD><EFBFBD><EFBFBD><EFBFBD>.";
Text[ polish ] = "Aktywny"; Text[ polish ] = "Aktywny";
Text[ japanese ] = "<EFBFBD><EFBFBD>è<EFBFBD><EFBFBD>"; Text[ japanese ] = "アクティブ";
Text[ chinese_traditional ] = "<EFBFBD>ϥΤ<EFBFBD>"; Text[ chinese_traditional ] = "使用中";
Text[ arabic ] = "<22><><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "Ȱ<EFBFBD><EFBFBD>"; Text[ korean ] = "활성";
Text[ turkish ] = "Etkin"; Text[ turkish ] = "Etkin";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Activo"; Text[ catalan ] = "Actiu";
Text[ finnish ] = "Aktiivinen"; Text[ finnish ] = "Aktiivinen";
Text[ thai ] = "ใช้งานอยู่";
}; };
FixedText RID_FT_PASS FixedText RID_FT_PASS
{ {
@@ -186,24 +189,25 @@ ModalDialog RID_BASICIDE_BREAKPOINTDLG
Text [ english_us ] = "Pass Count:" ; Text [ english_us ] = "Pass Count:" ;
Text [ portuguese_brazilian ] = "Durchlauf:" ; Text [ portuguese_brazilian ] = "Durchlauf:" ;
Text [ swedish ] = "Genomfl<66>de:" ; Text [ swedish ] = "Genomfl<66>de:" ;
Text [ danish ] = "Genneml<EFBFBD>b:" ; Text [ danish ] = "Glid igennem:" ;
Text [ italian ] = "Passaggi:" ; Text [ italian ] = "Passaggi:" ;
Text [ spanish ] = "Adaptaci<63>n:" ; Text [ spanish ] = "Adaptaci<63>n:" ;
Text [ french ] = "Adaptation :" ; Text [ french ] = "Adaptation :" ;
Text [ dutch ] = "Doorloop:" ; Text [ dutch ] = "Doorloop:" ;
Text [ portuguese ] = "Ajuste:" ; Text [ portuguese ] = "Ajuste:" ;
Text[ chinese_simplified ] = "<EFBFBD><EFBFBD>͸<EFBFBD><EFBFBD>"; Text[ chinese_simplified ] = "穿透:";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:";
Text[ polish ] = "Przebieg:"; Text[ polish ] = "Przebieg:";
Text[ japanese ] = "<EFBFBD>ЂƂƂ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>s:"; Text[ japanese ] = "ひととおり実行:";
Text[ chinese_traditional ] = "<EFBFBD>L<EFBFBD>{<7B>G"; Text[ chinese_traditional ] = "過程:";
Text[ arabic ] = "<22><><EFBFBD>:"; Text[ arabic ] = "<22><><EFBFBD>:";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:";
Text[ korean ] = "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:"; Text[ korean ] = "과정";
Text[ turkish ] = "Pass count:"; Text[ turkish ] = "Pass count:";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Adaptaci<EFBFBD>n:"; Text[ catalan ] = "Recompte de passades:";
Text[ finnish ] = "Toistom<EFBFBD><EFBFBD>r<EFBFBD>:"; Text[ finnish ] = "Kertojen #:";
Text[ thai ] = "นับผ่าน:";
}; };
FixedText RID_FT_BRKPOINTS FixedText RID_FT_BRKPOINTS
{ {
@@ -220,18 +224,19 @@ ModalDialog RID_BASICIDE_BREAKPOINTDLG
Text [ danish ] = "Pausepunkter" ; Text [ danish ] = "Pausepunkter" ;
Text [ portuguese_brazilian ] = "Haltepunkte" ; Text [ portuguese_brazilian ] = "Haltepunkte" ;
Text [ portuguese ] = "Pontos de interrup<75><70>o" ; Text [ portuguese ] = "Pontos de interrup<75><70>o" ;
Text[ chinese_simplified ] = "<EFBFBD>жϵ<EFBFBD>"; Text[ chinese_simplified ] = "中断点";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Punkty przerwania"; Text[ polish ] = "Punkty przerwania";
Text[ japanese ] = "<EFBFBD><EFBFBD>ڰ<EFBFBD><EFBFBD>߲<EFBFBD><EFBFBD>"; Text[ japanese ] = "ブレークポイント";
Text[ chinese_traditional ] = "<EFBFBD><EFBFBD><EFBFBD>_<EFBFBD>I"; Text[ chinese_traditional ] = "中斷點";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "<EFBFBD>ߴ<EFBFBD><EFBFBD><EFBFBD>"; Text[ korean ] = "중단점";
Text[ turkish ] = "Kesme noktalar<61>"; Text[ turkish ] = "Kesme noktalar<61>";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Puntos de ruptura"; Text[ catalan ] = "Punts de ruptura";
Text[ finnish ] = "Keskeytyspisteet"; Text[ finnish ] = "Keskeytyspisteet";
Text[ thai ] = "จุดแบ่ง";
}; };
NumericField RID_FLD_PASS NumericField RID_FLD_PASS
{ {
@@ -249,19 +254,33 @@ ModalDialog RID_BASICIDE_BREAKPOINTDLG
Text [ danish ] = "Pausepunkter" ; Text [ danish ] = "Pausepunkter" ;
Text [ portuguese_brazilian ] = "Haltepunkte" ; Text [ portuguese_brazilian ] = "Haltepunkte" ;
Text [ portuguese ] = "Pontos de interrup<75><70>o" ; Text [ portuguese ] = "Pontos de interrup<75><70>o" ;
Text[ chinese_simplified ] = "<EFBFBD>жϵ<EFBFBD>"; Text[ chinese_simplified ] = "中断点";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Punkty przerwania"; Text[ polish ] = "Punkty przerwania";
Text[ japanese ] = "<EFBFBD><EFBFBD>ڰ<EFBFBD><EFBFBD>߲<EFBFBD><EFBFBD>"; Text[ japanese ] = "ブレークポイント";
Text[ chinese_traditional ] = "<EFBFBD><EFBFBD><EFBFBD>_<EFBFBD>I"; Text[ chinese_traditional ] = "中斷點";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "<EFBFBD>ߴ<EFBFBD><EFBFBD><EFBFBD>"; Text[ korean ] = "중단점";
Text[ turkish ] = "Kesme noktalar<61>"; Text[ turkish ] = "Kesme noktalar<61>";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Puntos de ruptura"; Text[ catalan ] = "Punts de ruptura";
Text[ finnish ] = "Keskeytyspisteet"; Text[ finnish ] = "Keskeytyspisteet";
Text[ thai ] = "จุดแบ่ง";
}; };

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: macrodlg.src,v $ * $RCSfile: macrodlg.src,v $
* *
* $Revision: 1.47 $ * $Revision: 1.48 $
* *
* last change: $Author: kz $ $Date: 2002-12-05 10:25:15 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:06 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -191,7 +191,7 @@ ModalDialog RID_MACROCHOOSER
Text[ chinese_traditional ] = "巨集的來源(~F)"; Text[ chinese_traditional ] = "巨集的來源(~F)";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>";
Text[ korean ] = "매크로 위치(~F)"; Text[ korean ] = "매크로 기록 위치(~F)";
Text[ turkish ] = "Makro kayna<6E><61>"; Text[ turkish ] = "Makro kayna<6E><61>";
Text[ catalan ] = "Macro ~des de"; Text[ catalan ] = "Macro ~des de";
Text[ thai ] = "มาโคร~จาก"; Text[ thai ] = "มาโคร~จาก";
@@ -341,7 +341,7 @@ ModalDialog RID_MACROCHOOSER
Text[ chinese_traditional ] = "指定(~A)..."; Text[ chinese_traditional ] = "指定(~A)...";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD>..."; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD>...";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>..."; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>...";
Text[ korean ] = "지정(~A)..."; Text[ korean ] = "할당(~A)...";
Text[ turkish ] = "Ata..."; Text[ turkish ] = "Ata...";
Text[ catalan ] = "~Assigna..."; Text[ catalan ] = "~Assigna...";
Text[ thai ] = "~กำหนด..."; Text[ thai ] = "~กำหนด...";
@@ -448,7 +448,7 @@ ModalDialog RID_MACROCHOOSER
Text [ french ] = "Supprimer" ; Text [ french ] = "Supprimer" ;
Text [ swedish ] = "Ra~dera..." ; Text [ swedish ] = "Ra~dera..." ;
Text [ dutch ] = "~Wissen" ; Text [ dutch ] = "~Wissen" ;
Text [ spanish ] = "~Eliminar..." ; Text [ spanish ] = "~Borrar" ;
Text [ english_us ] = "~Delete" ; Text [ english_us ] = "~Delete" ;
TabStop = TRUE ; TabStop = TRUE ;
Text[ chinese_simplified ] = "删除(~D)..."; Text[ chinese_simplified ] = "删除(~D)...";
@@ -560,7 +560,7 @@ String RID_STR_BTNDEL
Text [ french ] = "Supprimer" ; Text [ french ] = "Supprimer" ;
Text [ swedish ] = "Ra~dera..." ; Text [ swedish ] = "Ra~dera..." ;
Text [ dutch ] = "~Wissen" ; Text [ dutch ] = "~Wissen" ;
Text [ spanish ] = "~Eliminar..." ; Text [ spanish ] = "~Borrar" ;
Text [ english_us ] = "~Delete" ; Text [ english_us ] = "~Delete" ;
Text[ chinese_simplified ] = "删除(~D)"; Text[ chinese_simplified ] = "删除(~D)";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
@@ -569,7 +569,7 @@ String RID_STR_BTNDEL
Text[ chinese_traditional ] = "刪除(~D)"; Text[ chinese_traditional ] = "刪除(~D)";
Text[ arabic ] = "<22><><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "제(~D)..."; Text[ korean ] = "제(~D)";
Text[ turkish ] = "Sil..."; Text[ turkish ] = "Sil...";
Text[ catalan ] = "~Suprimeix..."; Text[ catalan ] = "~Suprimeix...";
Text[ thai ] = "~ลบ"; Text[ thai ] = "~ลบ";
@@ -714,3 +714,8 @@ String RID_STR_RECORD
Text[ thai ] = "~ระเบียน"; Text[ thai ] = "~ระเบียน";
}; };

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: moduldlg.hrc,v $ * $RCSfile: moduldlg.hrc,v $
* *
* $Revision: 1.5 $ * $Revision: 1.6 $
* *
* last change: $Author: sb $ $Date: 2002-07-03 15:50:51 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:06 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -92,6 +92,5 @@
#define RID_FT_NEWLIB 40 #define RID_FT_NEWLIB 40
#define RID_ED_LIBNAME 41 #define RID_ED_LIBNAME 41
#define RID_CHKB_EXTRAFILE 42
#endif // _MODULDLG_HRC #endif // _MODULDLG_HRC

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: moduldlg.src,v $ * $RCSfile: moduldlg.src,v $
* *
* $Revision: 1.46 $ * $Revision: 1.47 $
* *
* last change: $Author: sb $ $Date: 2002-07-03 16:14:25 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:06 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -74,14 +74,14 @@ TabDialog RID_TD_ORGANIZE
TEXT[ italian ] = "Gestione macro"; TEXT[ italian ] = "Gestione macro";
TEXT[ portuguese_brazilian ] = "Gerenciar"; TEXT[ portuguese_brazilian ] = "Gerenciar";
TEXT[ portuguese ] = "Gerir macros"; TEXT[ portuguese ] = "Gerir macros";
TEXT[ danish ] = "Makroadministration"; TEXT[ danish ] = "Administrer makroer";
TEXT[ french ] = "Gestion de macros"; TEXT[ french ] = "Gestion de macros";
TEXT[ swedish ] = "Administrera makron"; TEXT[ swedish ] = "Administrera makron";
TEXT[ dutch ] = "Macro's beheren"; TEXT[ dutch ] = "Macro's beheren";
TEXT[ spanish ] = "Administrar"; TEXT[ spanish ] = "Administrar";
TEXT[ english_us ] = "Macro Organizer"; TEXT[ english_us ] = "Macro Organizer";
TEXT[ chinese_simplified ] = "管理宏"; TEXT[ chinese_simplified ] = "管理宏";
TEXT[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; TEXT[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
TEXT[ polish ] = "Zarz<72>dzaj makrami"; TEXT[ polish ] = "Zarz<72>dzaj makrami";
TEXT[ japanese ] = "マクロの管理"; TEXT[ japanese ] = "マクロの管理";
TEXT[ chinese_traditional ] = "管理巨集"; TEXT[ chinese_traditional ] = "管理巨集";
@@ -120,6 +120,7 @@ TabDialog RID_TD_ORGANIZE
Text[ korean ] = "모듈"; Text[ korean ] = "모듈";
Text[ turkish ] = "Mod<6F>ller"; Text[ turkish ] = "Mod<6F>ller";
Text[ catalan ] = "M<>duls"; Text[ catalan ] = "M<>duls";
Text[ thai ] = "โมดูล";
}; };
PageItem PageItem
{ {
@@ -146,6 +147,7 @@ TabDialog RID_TD_ORGANIZE
Text[ turkish ] = "Kitapl<70>klar"; Text[ turkish ] = "Kitapl<70>klar";
Text[ catalan ] = "Biblioteques"; Text[ catalan ] = "Biblioteques";
Text[ finnish ] = "Kirjastot"; Text[ finnish ] = "Kirjastot";
Text[ thai ] = "ไลบรารี";
}; };
}; };
}; };
@@ -153,7 +155,7 @@ TabDialog RID_TD_ORGANIZE
Text [ english_us ] = "Macro Organizer" ; Text [ english_us ] = "Macro Organizer" ;
Text [ portuguese_brazilian ] = "Gerenciar" ; Text [ portuguese_brazilian ] = "Gerenciar" ;
Text [ swedish ] = "Administrera makron" ; Text [ swedish ] = "Administrera makron" ;
Text [ danish ] = "Makroadministration" ; Text [ danish ] = "Administrer makroer" ;
Text [ italian ] = "Gestione macro" ; Text [ italian ] = "Gestione macro" ;
Text [ spanish ] = "Administrar" ; Text [ spanish ] = "Administrar" ;
Text [ french ] = "Gestion de macros" ; Text [ french ] = "Gestion de macros" ;
@@ -163,6 +165,7 @@ TabDialog RID_TD_ORGANIZE
Text[ turkish ] = "Makrolar<61> y<>net"; Text[ turkish ] = "Makrolar<61> y<>net";
Text[ catalan ] = "Organitzador de macros"; Text[ catalan ] = "Organitzador de macros";
Text[ finnish ] = "Makrojen j<>rjestelyty<74>kalu"; Text[ finnish ] = "Makrojen j<>rjestelyty<74>kalu";
Text[ thai ] = "ตัวจัดระเบียบมาโคร";
}; };
TabPage RID_TP_MODULS TabPage RID_TP_MODULS
{ {
@@ -181,14 +184,14 @@ TabPage RID_TP_MODULS
Text [ portuguese_brazilian ] = "M~?ulo/Di logo" ; Text [ portuguese_brazilian ] = "M~?ulo/Di logo" ;
Text [ portuguese ] = "M~<7E>dulo/Di<44>logo" ; Text [ portuguese ] = "M~<7E>dulo/Di<44>logo" ;
Text [ finnish ] = "M~oduuli/valintaikkuna" ; Text [ finnish ] = "M~oduuli/valintaikkuna" ;
Text [ danish ] = "Modul/Dialog" ; Text [ danish ] = "M~odul/Dialog" ;
Text [ french ] = "M~odule/bo<62>te de dialogue" ; Text [ french ] = "M~odule/bo<62>te de dialogue" ;
Text [ swedish ] = "M~odul/dialog" ; Text [ swedish ] = "M~odul/dialog" ;
Text [ dutch ] = "M~odule/dialoogvenster" ; Text [ dutch ] = "M~odule/dialoogvenster" ;
Text [ spanish ] = "M<>d~ulo/Di<44>logo" ; Text [ spanish ] = "M<>d~ulo/Di<44>logo" ;
Text [ english_us ] = "M~odule/Dialog" ; Text [ english_us ] = "M~odule/Dialog" ;
Text[ chinese_simplified ] = "模块/对话框(~O)"; Text[ chinese_simplified ] = "模块/对话框(~O)";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Modu<64>/Dialog"; Text[ polish ] = "Modu<64>/Dialog";
Text[ japanese ] = "モジュール/ダイアログ(~O)"; Text[ japanese ] = "モジュール/ダイアログ(~O)";
Text[ chinese_traditional ] = "模塊/對話方塊(~O)"; Text[ chinese_traditional ] = "模塊/對話方塊(~O)";
@@ -197,6 +200,7 @@ TabPage RID_TP_MODULS
Text[ korean ] = "모듈/대화 상자(~O)"; Text[ korean ] = "모듈/대화 상자(~O)";
Text[ turkish ] = "Mod<6F>l/diyalog"; Text[ turkish ] = "Mod<6F>l/diyalog";
Text[ catalan ] = "M<>dul/Di<44>leg"; Text[ catalan ] = "M<>dul/Di<44>leg";
Text[ thai ] = "โม~ดูล/ไดอะล็อก";
}; };
/* /*
Edit RID_EDIT Edit RID_EDIT
@@ -247,13 +251,14 @@ TabPage RID_TP_MODULS
TabStop = TRUE ; TabStop = TRUE ;
DefButton = TRUE ; DefButton = TRUE ;
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD>";
Text[ russian ] = "~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "~Edytuj"; Text[ polish ] = "~Edytuj";
Text[ japanese ] = "編集(~E)"; Text[ japanese ] = "編集(~E)";
Text[ korean ] = "편집(~E)"; Text[ korean ] = "편집(~E)";
Text[ turkish ] = "D<>zenle"; Text[ turkish ] = "D<>zenle";
Text[ catalan ] = "~Edita"; Text[ catalan ] = "~Edita";
Text[ thai ] = "แ~ก้ไข";
}; };
CancelButton RID_PB_CLOSE CancelButton RID_PB_CLOSE
{ {
@@ -294,6 +299,7 @@ TabPage RID_TP_MODULS
Text[ korean ] = "닫기"; Text[ korean ] = "닫기";
Text[ turkish ] = "Kapat"; Text[ turkish ] = "Kapat";
Text[ catalan ] = "Tanca"; Text[ catalan ] = "Tanca";
Text[ thai ] = "ปิด";
}; };
PushButton RID_PB_NEWMOD PushButton RID_PB_NEWMOD
{ {
@@ -305,12 +311,12 @@ TabPage RID_TP_MODULS
Text [ italian ] = "Nuovo ~modulo..." ; Text [ italian ] = "Nuovo ~modulo..." ;
Text [ portuguese_brazilian ] = "~M?ulo novo" ; Text [ portuguese_brazilian ] = "~M?ulo novo" ;
Text [ portuguese ] = "~Novo m<>dulo..." ; Text [ portuguese ] = "~Novo m<>dulo..." ;
Text [ finnish ] = "Uusi ~moduuli" ; Text [ finnish ] = "Uusi ~moduuli..." ;
Text [ danish ] = "Nyt modul..." ; Text [ danish ] = "Nyt ~modul..." ;
Text [ french ] = "Nouveau ~module..." ; Text [ french ] = "Nouveau ~module..." ;
Text [ swedish ] = "Ny ~modul..." ; Text [ swedish ] = "Ny ~modul..." ;
Text [ dutch ] = "Nieuwe ~module..." ; Text [ dutch ] = "Nieuwe ~module..." ;
Text [ spanish ] = "Nuevo ~m<>dulo..." ; Text [ spanish ] = "~M<>dulo nuevo..." ;
Text [ english_us ] = "New ~Module..." ; Text [ english_us ] = "New ~Module..." ;
TabStop = TRUE ; TabStop = TRUE ;
Text[ chinese_simplified ] = "新建模块(~M)..."; Text[ chinese_simplified ] = "新建模块(~M)...";
@@ -323,6 +329,7 @@ TabPage RID_TP_MODULS
Text[ korean ] = "새 모듈(~M)..."; Text[ korean ] = "새 모듈(~M)...";
Text[ turkish ] = "Yeni mod<6F>l..."; Text[ turkish ] = "Yeni mod<6F>l...";
Text[ catalan ] = "~M<>dul nou..."; Text[ catalan ] = "~M<>dul nou...";
Text[ thai ] = "โ~มดูลใหม่...";
}; };
PushButton RID_PB_NEWDLG PushButton RID_PB_NEWDLG
{ {
@@ -334,12 +341,12 @@ TabPage RID_TP_MODULS
Text [ italian ] = "Nuovo dialo~go" ; Text [ italian ] = "Nuovo dialo~go" ;
Text [ portuguese_brazilian ] = "Di lo~go novo" ; Text [ portuguese_brazilian ] = "Di lo~go novo" ;
Text [ portuguese ] = "Novo di<64>lo~go..." ; Text [ portuguese ] = "Novo di<64>lo~go..." ;
Text [ finnish ] = "~Uusi valintaikkuna" ; Text [ finnish ] = "~Uusi valintaikkuna..." ;
Text [ danish ] = "Ny dialog..." ; Text [ danish ] = "Ny dialo~g..." ;
Text [ french ] = "Nouveau ~dialogue" ; Text [ french ] = "Nouvelle bo<62>te de dialogue" ;
Text [ swedish ] = "Ny dialo~g..." ; Text [ swedish ] = "Ny dialo~g..." ;
Text [ dutch ] = "Nieuwe ~dialoog..." ; Text [ dutch ] = "Nieuw ~dialoogvenster..." ;
Text [ spanish ] = "Nuevo di<64>lo~go..." ; Text [ spanish ] = "Di<EFBFBD>lo~go nuevo..." ;
Text [ english_us ] = "~New Dialog..." ; Text [ english_us ] = "~New Dialog..." ;
TabStop = TRUE ; TabStop = TRUE ;
Text[ chinese_simplified ] = "新建对话框(~N)..."; Text[ chinese_simplified ] = "新建对话框(~N)...";
@@ -352,6 +359,7 @@ TabPage RID_TP_MODULS
Text[ korean ] = "새 대화상자(~N)..."; Text[ korean ] = "새 대화상자(~N)...";
Text[ turkish ] = "Yeni diyalog..."; Text[ turkish ] = "Yeni diyalog...";
Text[ catalan ] = "Di<44>leg ~nou..."; Text[ catalan ] = "Di<44>leg ~nou...";
Text[ thai ] = "ไดอะล็อกใ~หม่...";
}; };
PushButton RID_PB_DELETE PushButton RID_PB_DELETE
{ {
@@ -365,11 +373,11 @@ TabPage RID_TP_MODULS
Text [ portuguese_brazilian ] = "~Apagar..." ; Text [ portuguese_brazilian ] = "~Apagar..." ;
Text [ portuguese ] = "E~liminar..." ; Text [ portuguese ] = "E~liminar..." ;
Text [ finnish ] = "~Poista" ; Text [ finnish ] = "~Poista" ;
Text [ danish ] = "Slet..." ; Text [ danish ] = "~Slet" ;
Text [ french ] = "Supprimer" ; Text [ french ] = "Supprimer" ;
Text [ swedish ] = "Ra~dera..." ; Text [ swedish ] = "Ra~dera..." ;
Text [ dutch ] = "~Wissen" ; Text [ dutch ] = "~Wissen" ;
Text [ spanish ] = "E~liminar..." ; Text [ spanish ] = "~Borrar" ;
Text [ english_us ] = "~Delete" ; Text [ english_us ] = "~Delete" ;
TabStop = TRUE ; TabStop = TRUE ;
Text[ chinese_simplified ] = "删除(~D)"; Text[ chinese_simplified ] = "删除(~D)";
@@ -379,9 +387,10 @@ TabPage RID_TP_MODULS
Text[ chinese_traditional ] = "刪除(~D)..."; Text[ chinese_traditional ] = "刪除(~D)...";
Text[ arabic ] = "<22><><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "제(~D)..."; Text[ korean ] = "제(~D)";
Text[ turkish ] = "Sil..."; Text[ turkish ] = "Sil...";
Text[ catalan ] = "~Suprimeix..."; Text[ catalan ] = "~Suprimeix...";
Text[ thai ] = "~ลบ";
}; };
}; };
TabPage RID_TP_LIBS TabPage RID_TP_LIBS
@@ -398,14 +407,14 @@ TabPage RID_TP_LIBS
Text [ ENGLISH ] = "Application/D~ocument" ; Text [ ENGLISH ] = "Application/D~ocument" ;
Text[ english_us ] = "Application/D~ocument"; Text[ english_us ] = "Application/D~ocument";
Text[ portuguese ] = "Aplica<63><61>o/D~ocumento"; Text[ portuguese ] = "Aplica<63><61>o/D~ocumento";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "Application/D~ocument"; Text[ greek ] = "Application/D~ocument";
Text[ dutch ] = "Applicatie/D~ocument"; Text[ dutch ] = "Toepassing/D~ocument";
Text[ french ] = "Application/D~ocument"; Text[ french ] = "Application/D~ocument";
Text[ spanish ] = "Aplicaci<63>n/D~ocumento"; Text[ spanish ] = "Aplicaci<63>n/D~ocumento";
Text[ finnish ] = "Application/D~ocument"; Text[ finnish ] = "Sovellus/Asia~kirja";
Text[ italian ] = "Applicazione/D~ocumento"; Text[ italian ] = "Applicazione/D~ocumento";
Text[ danish ] = "Application/D~ocument"; Text[ danish ] = "Program/d~okument";
Text[ swedish ] = "Till<6C>mpning/d~okument"; Text[ swedish ] = "Till<6C>mpning/d~okument";
Text[ polish ] = "Aplikacja/D~okument"; Text[ polish ] = "Aplikacja/D~okument";
Text[ portuguese_brazilian ] = "Application/D~ocument"; Text[ portuguese_brazilian ] = "Application/D~ocument";
@@ -415,7 +424,8 @@ TabPage RID_TP_LIBS
Text[ chinese_traditional ] = "應用程式/文件(~O)"; Text[ chinese_traditional ] = "應用程式/文件(~O)";
Text[ turkish ] = "Application/D~ocument"; Text[ turkish ] = "Application/D~ocument";
Text[ arabic ] = "Application/D~ocument"; Text[ arabic ] = "Application/D~ocument";
Text[ catalan ] = "Application/D~ocument"; Text[ catalan ] = "Aplicaci<EFBFBD>/D~ocument";
Text[ thai ] = "แอพพลิเคชั่น/เ~อกสาร";
}; };
ListBox RID_LB_BASICS ListBox RID_LB_BASICS
{ {
@@ -437,7 +447,7 @@ TabPage RID_TP_LIBS
Text [ spanish ] = "~Biblioteca" ; Text [ spanish ] = "~Biblioteca" ;
Text [ french ] = "Biblioth<74>~que" ; Text [ french ] = "Biblioth<74>~que" ;
Text [ swedish ] = "Bibliote~k" ; Text [ swedish ] = "Bibliote~k" ;
Text [ danish ] = "Bibliotek" ; Text [ danish ] = "Bibliote~k" ;
Text [ portuguese ] = "Bibliote~ca" ; Text [ portuguese ] = "Bibliote~ca" ;
Text [ portuguese_brazilian ] = "Bibliothe~k" ; Text [ portuguese_brazilian ] = "Bibliothe~k" ;
Text[ chinese_simplified ] = "程序库(~L)"; Text[ chinese_simplified ] = "程序库(~L)";
@@ -451,6 +461,7 @@ TabPage RID_TP_LIBS
Text[ turkish ] = "Kitapl<70>k"; Text[ turkish ] = "Kitapl<70>k";
Text[ catalan ] = "~Biblioteca"; Text[ catalan ] = "~Biblioteca";
Text[ finnish ] = "~Kirjasto"; Text[ finnish ] = "~Kirjasto";
Text[ thai ] = "ไ~ลบรารี";
}; };
Control RID_TRLBOX Control RID_TRLBOX
{ {
@@ -492,13 +503,14 @@ TabPage RID_TP_LIBS
TabStop = TRUE ; TabStop = TRUE ;
DefButton = TRUE ; DefButton = TRUE ;
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD>";
Text[ russian ] = "~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "~Edytuj"; Text[ polish ] = "~Edytuj";
Text[ japanese ] = "編集(~E)"; Text[ japanese ] = "編集(~E)";
Text[ korean ] = "편집(~E)"; Text[ korean ] = "편집(~E)";
Text[ turkish ] = "D<>zenle"; Text[ turkish ] = "D<>zenle";
Text[ catalan ] = "~Edita"; Text[ catalan ] = "~Edita";
Text[ thai ] = "แ~ก้ไข";
}; };
CancelButton RID_PB_CLOSE CancelButton RID_PB_CLOSE
{ {
@@ -539,6 +551,7 @@ TabPage RID_TP_LIBS
Text[ korean ] = "닫기"; Text[ korean ] = "닫기";
Text[ turkish ] = "Kapat"; Text[ turkish ] = "Kapat";
Text[ catalan ] = "Tanca"; Text[ catalan ] = "Tanca";
Text[ thai ] = "ปิด";
}; };
PushButton RID_PB_PASSWORD PushButton RID_PB_PASSWORD
{ {
@@ -550,8 +563,8 @@ TabPage RID_TP_LIBS
Text [ italian ] = "~Password..." ; Text [ italian ] = "~Password..." ;
Text [ portuguese_brazilian ] = "~Senha..." ; Text [ portuguese_brazilian ] = "~Senha..." ;
Text [ portuguese ] = "~Senha..." ; Text [ portuguese ] = "~Senha..." ;
Text [ finnish ] = "~Salasana" ; Text [ finnish ] = "~Salasana..." ;
Text [ danish ] = "Adgangskode..." ; Text [ danish ] = "A~dgangskode..." ;
Text [ french ] = "Mot de passe..." ; Text [ french ] = "Mot de passe..." ;
Text [ swedish ] = "L<>s~enord..." ; Text [ swedish ] = "L<>s~enord..." ;
Text [ dutch ] = "W~achtwoord..." ; Text [ dutch ] = "W~achtwoord..." ;
@@ -565,9 +578,10 @@ TabPage RID_TP_LIBS
Text[ chinese_traditional ] = "密碼(~P)..."; Text[ chinese_traditional ] = "密碼(~P)...";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>..."; Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>...";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "패스워드(~P)..."; Text[ korean ] = "암호(~P)...";
Text[ turkish ] = "<22>ifre..."; Text[ turkish ] = "<22>ifre...";
Text[ catalan ] = "~Contrasenya..."; Text[ catalan ] = "~Contrasenya...";
Text[ thai ] = "~รหัสผ่าน...";
}; };
PushButton RID_PB_NEWLIB PushButton RID_PB_NEWLIB
{ {
@@ -582,13 +596,13 @@ TabPage RID_TP_LIBS
Text [ french ] = "Nouveau..." ; Text [ french ] = "Nouveau..." ;
Text [ dutch ] = "~Nieuw..." ; Text [ dutch ] = "~Nieuw..." ;
Text [ spanish ] = "~Nuevo..." ; Text [ spanish ] = "~Nuevo..." ;
Text [ danish ] = "Ny..." ; Text [ danish ] = "~Ny..." ;
Text [ swedish ] = "~Nytt..." ; Text [ swedish ] = "~Nytt..." ;
Text [ finnish ] = "~Uusi" ; Text [ finnish ] = "~Uusi..." ;
Text [ english_us ] = "~New..." ; Text [ english_us ] = "~New..." ;
TabStop = TRUE ; TabStop = TRUE ;
Text[ chinese_simplified ] = "新建(~N)..."; Text[ chinese_simplified ] = "新建(~N)...";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>..."; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Nowy..."; Text[ polish ] = "Nowy...";
Text[ japanese ] = "新規作成(~N)..."; Text[ japanese ] = "新規作成(~N)...";
Text[ chinese_traditional ] = "新建(~N)..."; Text[ chinese_traditional ] = "新建(~N)...";
@@ -597,6 +611,7 @@ TabPage RID_TP_LIBS
Text[ korean ] = "새로 만들기(~N)..."; Text[ korean ] = "새로 만들기(~N)...";
Text[ turkish ] = "Yeni..."; Text[ turkish ] = "Yeni...";
Text[ catalan ] = "~Nou..."; Text[ catalan ] = "~Nou...";
Text[ thai ] = "ใ~หม่...";
}; };
PushButton RID_PB_APPEND PushButton RID_PB_APPEND
{ {
@@ -608,10 +623,10 @@ TabPage RID_TP_LIBS
Text [ dutch ] = "Toe~voegen..." ; Text [ dutch ] = "Toe~voegen..." ;
Text [ english_us ] = "~Append..." ; Text [ english_us ] = "~Append..." ;
Text [ italian ] = "Aggi~ungi..." ; Text [ italian ] = "Aggi~ungi..." ;
Text [ spanish ] = "~A<EFBFBD>adir..." ; Text [ spanish ] = "~Adjuntar..." ;
Text [ french ] = "~Ajouter..." ; Text [ french ] = "~Ajouter..." ;
Text [ swedish ] = "L<>gg ~till..." ; Text [ swedish ] = "L<>gg ~till..." ;
Text [ danish ] = "Tilf<6C>j..." ; Text [ danish ] = "Til~f<EFBFBD>j..." ;
Text [ portuguese_brazilian ] = "Hin~zuf?en..." ; Text [ portuguese_brazilian ] = "Hin~zuf?en..." ;
Text [ portuguese ] = "~Adicionar..." ; Text [ portuguese ] = "~Adicionar..." ;
Text[ chinese_simplified ] = "新增(~A)..."; Text[ chinese_simplified ] = "新增(~A)...";
@@ -624,7 +639,8 @@ TabPage RID_TP_LIBS
Text[ korean ] = "추가(~A)..."; Text[ korean ] = "추가(~A)...";
Text[ turkish ] = "Ekle..."; Text[ turkish ] = "Ekle...";
Text[ catalan ] = "~Afegeix..."; Text[ catalan ] = "~Afegeix...";
Text[ finnish ] = "~Liit<69>"; Text[ finnish ] = "~Liit<69>...";
Text[ thai ] = "~ผนวก...";
}; };
PushButton RID_PB_DELETE PushButton RID_PB_DELETE
{ {
@@ -638,11 +654,11 @@ TabPage RID_TP_LIBS
Text [ portuguese_brazilian ] = "~Apagar..." ; Text [ portuguese_brazilian ] = "~Apagar..." ;
Text [ portuguese ] = "E~liminar..." ; Text [ portuguese ] = "E~liminar..." ;
Text [ finnish ] = "~Poista" ; Text [ finnish ] = "~Poista" ;
Text [ danish ] = "Slet..." ; Text [ danish ] = "~Slet" ;
Text [ french ] = "Supprimer" ; Text [ french ] = "Supprimer" ;
Text [ swedish ] = "Ra~dera..." ; Text [ swedish ] = "Ra~dera..." ;
Text [ dutch ] = "~Wissen" ; Text [ dutch ] = "~Wissen" ;
Text [ spanish ] = "Elim~inar..." ; Text [ spanish ] = "~Borrar" ;
Text [ english_us ] = "~Delete" ; Text [ english_us ] = "~Delete" ;
TabStop = TRUE ; TabStop = TRUE ;
Text[ chinese_simplified ] = "删除(~D)"; Text[ chinese_simplified ] = "删除(~D)";
@@ -652,9 +668,10 @@ TabPage RID_TP_LIBS
Text[ chinese_traditional ] = "刪除(~D)..."; Text[ chinese_traditional ] = "刪除(~D)...";
Text[ arabic ] = "<22><><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "삭제(~D)..."; Text[ korean ] = "삭제(~D)";
Text[ turkish ] = "Sil..."; Text[ turkish ] = "Sil...";
Text[ catalan ] = "~Suprimeix..."; Text[ catalan ] = "~Suprimeix...";
Text[ thai ] = "~ลบ";
}; };
}; };
ModalDialog RID_DLG_LIBS ModalDialog RID_DLG_LIBS
@@ -717,6 +734,7 @@ ModalDialog RID_DLG_LIBS
Text[ turkish ] = "Se<53>enekler"; Text[ turkish ] = "Se<53>enekler";
Text[ catalan ] = "Opcions"; Text[ catalan ] = "Opcions";
Text[ finnish ] = "Asetukset"; Text[ finnish ] = "Asetukset";
Text[ thai ] = "ตัวเลือก";
}; };
CheckBox RID_CB_REF CheckBox RID_CB_REF
{ {
@@ -729,11 +747,11 @@ ModalDialog RID_DLG_LIBS
Text [ english_us ] = "Insert as reference (read-only)" ; Text [ english_us ] = "Insert as reference (read-only)" ;
Text [ portuguese_brazilian ] = "Referenzen (nur lesen)" ; Text [ portuguese_brazilian ] = "Referenzen (nur lesen)" ;
Text [ swedish ] = "Infoga som referens (bara l<>sning)" ; Text [ swedish ] = "Infoga som referens (bara l<>sning)" ;
Text [ danish ] = "Inds<64>t som reference (skrivebeskyttet)" ; Text [ danish ] = "Inds<64>t som reference (kun l<>se)" ;
Text [ italian ] = "Inserisci come riferimento (sola lettura)" ; Text [ italian ] = "Inserisci come riferimento (sola lettura)" ;
Text [ spanish ] = "Insertar como referencia (solo leer)" ; Text [ spanish ] = "Insertar como referencia (s<EFBFBD>lo lectura)" ;
Text [ french ] = "Ins<6E>rer comme r<>f<EFBFBD>rence (lecture seule)" ; Text [ french ] = "Ins<6E>rer comme r<>f<EFBFBD>rence (lecture seule)" ;
Text [ dutch ] = "Als verwijzing invoegen (alleen lezen)" ; Text [ dutch ] = "Als verwijzing invoegen (alleen-lezen)" ;
Text [ portuguese ] = "Inserir como refer<65>ncia (s<> leitura)" ; Text [ portuguese ] = "Inserir como refer<65>ncia (s<> leitura)" ;
Text[ chinese_simplified ] = "当作引用插入(只读)"; Text[ chinese_simplified ] = "当作引用插入(只读)";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)";
@@ -742,10 +760,11 @@ ModalDialog RID_DLG_LIBS
Text[ chinese_traditional ] = "當作參照插入(唯讀)"; Text[ chinese_traditional ] = "當作參照插入(唯讀)";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>)"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>)";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)";
Text[ korean ] = "참조로 삽입 (읽기 전용)"; Text[ korean ] = "참조로 삽입(읽기 전용)";
Text[ turkish ] = "Referans olarak ekle (salt okunur)"; Text[ turkish ] = "Referans olarak ekle (salt okunur)";
Text[ catalan ] = "Insereix com a refer<65>ncia (nom<6F>s de lectura)"; Text[ catalan ] = "Insereix com a refer<65>ncia (nom<6F>s de lectura)";
Text[ finnish ] = "Lis<69><73> viite (vain luku)"; Text[ finnish ] = "Lis<69><73> viittaus (vain luku)";
Text[ thai ] = "แทรกเป็นการอ้างอิง (อ่านอย่างเดียว)";
}; };
CheckBox RID_CB_REPL CheckBox RID_CB_REPL
{ {
@@ -757,7 +776,7 @@ ModalDialog RID_DLG_LIBS
Text [ english_us ] = "Replace existing libraries" ; Text [ english_us ] = "Replace existing libraries" ;
Text [ portuguese_brazilian ] = "Bibliotheken ersetzen" ; Text [ portuguese_brazilian ] = "Bibliotheken ersetzen" ;
Text [ swedish ] = "Ers<72>tt existerande bibliotek" ; Text [ swedish ] = "Ers<72>tt existerande bibliotek" ;
Text [ danish ] = "Erstat de eksisterende biblioteker" ; Text [ danish ] = "Erstat eksisterende biblioteker" ;
Text [ italian ] = "Sostituisci library esistenti" ; Text [ italian ] = "Sostituisci library esistenti" ;
Text [ spanish ] = "Reemplazar bibliotecas existentes" ; Text [ spanish ] = "Reemplazar bibliotecas existentes" ;
Text [ french ] = "Remplacer les biblioth<74>ques existantes" ; Text [ french ] = "Remplacer les biblioth<74>ques existantes" ;
@@ -773,6 +792,7 @@ ModalDialog RID_DLG_LIBS
Text[ turkish ] = "Mevcut kitapl<70><6C><EFBFBD> de<64>i<EFBFBD>tir"; Text[ turkish ] = "Mevcut kitapl<70><6C><EFBFBD> de<64>i<EFBFBD>tir";
Text[ catalan ] = "Reempla<6C>a les biblioteques existents"; Text[ catalan ] = "Reempla<6C>a les biblioteques existents";
Text[ finnish ] = "Korvaa nykyiset kirjastot"; Text[ finnish ] = "Korvaa nykyiset kirjastot";
Text[ thai ] = "แทนที่ไลบรารีที่มีอยู่";
}; };
}; };
ModalDialog RID_DLG_NEWLIB ModalDialog RID_DLG_NEWLIB
@@ -804,7 +824,7 @@ ModalDialog RID_DLG_NEWLIB
Text [ english_us ] = "~Name:" ; Text [ english_us ] = "~Name:" ;
Text [ portuguese_brazilian ] = "~Name:" ; Text [ portuguese_brazilian ] = "~Name:" ;
Text [ swedish ] = "~Namn:" ; Text [ swedish ] = "~Namn:" ;
Text [ danish ] = "Navn:" ; Text [ danish ] = "~Navn:" ;
Text [ italian ] = "~Nome:" ; Text [ italian ] = "~Nome:" ;
Text [ spanish ] = "~Nombre:" ; Text [ spanish ] = "~Nombre:" ;
Text [ french ] = "~Nom :" ; Text [ french ] = "~Nom :" ;
@@ -821,6 +841,7 @@ ModalDialog RID_DLG_NEWLIB
Text[ turkish ] = "Ad:"; Text[ turkish ] = "Ad:";
Text[ catalan ] = "~Nom:"; Text[ catalan ] = "~Nom:";
Text[ finnish ] = "~Nimi:"; Text[ finnish ] = "~Nimi:";
Text[ thai ] = "~ชื่อ:";
}; };
Edit RID_ED_LIBNAME Edit RID_ED_LIBNAME
{ {
@@ -829,35 +850,6 @@ ModalDialog RID_DLG_NEWLIB
Size = MAP_APPFONT ( 92 , 12 ) ; Size = MAP_APPFONT ( 92 , 12 ) ;
TabStop = TRUE ; TabStop = TRUE ;
}; };
CheckBox RID_CHKB_EXTRAFILE
{
Pos = MAP_APPFONT ( 6 , 37 ) ;
Size = MAP_APPFONT ( 92 , 12 ) ;
TabStop = TRUE ;
Text = "~Separate Datei anlegen" ;
Text [ English ] = "~Separate Datei anlegen" ;
Text [ portuguese ] = "~Criar ficheiro separado" ;
Text [ english_us ] = "~Create separate file" ;
Text [ portuguese_brazilian ] = "~Separate Datei anlegen" ;
Text [ swedish ] = "Skapa ~separat fil" ;
Text [ danish ] = "Opret separat fil" ;
Text [ italian ] = "~Crea file distinto" ;
Text [ spanish ] = "Crear archivo ~separado" ;
Text [ french ] = "~Cr<43>er un fichier distinct" ;
Text [ dutch ] = "~Apart bestand maken" ;
Hide = TRUE ;
Text[ chinese_simplified ] = "建立一个另外的文件(~C)";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>";
Text[ polish ] = "Utw<74>rz oddzielny plik";
Text[ japanese ] = "別のファイルを作成(~C)";
Text[ chinese_traditional ] = "另開啟新檔(~C)";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~<7E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "별도 파일 작성(~C)";
Text[ turkish ] = "Ayr<79> dosya olu<6C>tur";
Text[ catalan ] = "Crea un fitxer ~separat";
Text[ finnish ] = "~Luo erillinen tiedosto";
};
}; };
@@ -878,6 +870,11 @@ ModalDialog RID_DLG_NEWLIB

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: moptions.src,v $ * $RCSfile: moptions.src,v $
* *
* $Revision: 1.19 $ * $Revision: 1.20 $
* *
* last change: $Author: kz $ $Date: 2001-11-16 23:34:59 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:07 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -135,7 +135,8 @@ ModalDialog RID_MACROOPTIONS
Text[ korean ] = "설명"; Text[ korean ] = "설명";
Text[ turkish ] = "A<><41>klama"; Text[ turkish ] = "A<><41>klama";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Descripci<63>n"; Text[ catalan ] = "Descripci<63>";
Text[ thai ] = "คำอธิบาย";
}; };
MultiLineEdit RID_ME_DESCR MultiLineEdit RID_ME_DESCR
{ {
@@ -161,20 +162,21 @@ ModalDialog RID_MACROOPTIONS
Text [ danish ] = "Hj<48>lp-information" ; Text [ danish ] = "Hj<48>lp-information" ;
Text [ french ] = "Informations - Aide" ; Text [ french ] = "Informations - Aide" ;
Text [ swedish ] = "Hj<48>lp-information" ; Text [ swedish ] = "Hj<48>lp-information" ;
Text [ dutch ] = "Help informatie" ; Text [ dutch ] = "Help-informatie" ;
Text [ spanish ] = "Informaciones - Ayuda" ; Text [ spanish ] = "Informaci<EFBFBD>n sobre la Ayuda" ;
Text [ english_us ] = "Help information" ; Text [ english_us ] = "Help information" ;
Text[ chinese_simplified ] = "帮助信息"; Text[ chinese_simplified ] = "帮助信息";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>-<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Pomoc - Informacje"; Text[ polish ] = "Pomoc - Informacje";
Text[ japanese ] = "ヘルプ情報"; Text[ japanese ] = "ヘルプ情報";
Text[ chinese_traditional ] = "說明資訊"; Text[ chinese_traditional ] = "說明資訊";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "도움말 정보"; Text[ korean ] = "도움말 정보";
Text[ turkish ] = "Yard<72>m bilgileri"; Text[ turkish ] = "Yard<72>m bilgileri";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Informaciones - Ayuda"; Text[ catalan ] = "Informacions - Ajuda";
Text[ thai ] = "ข้อมูลช่วยเหลือ";
}; };
FixedText RID_FT_HELPID FixedText RID_FT_HELPID
{ {
@@ -191,20 +193,21 @@ ModalDialog RID_MACROOPTIONS
Text [ danish ] = "Hj<48>lp-identifikation" ; Text [ danish ] = "Hj<48>lp-identifikation" ;
Text [ french ] = "ID de l'aide" ; Text [ french ] = "ID de l'aide" ;
Text [ swedish ] = "Hj<48>lp-identifikation" ; Text [ swedish ] = "Hj<48>lp-identifikation" ;
Text [ dutch ] = "Help ID" ; Text [ dutch ] = "Help-ID" ;
Text [ spanish ] = "Identificaci<63>n de ayuda" ; Text [ spanish ] = "Identificaci<63>n de la Ayuda" ;
Text [ english_us ] = "Help ID" ; Text [ english_us ] = "Help ID" ;
Text[ chinese_simplified ] = "帮助标志"; Text[ chinese_simplified ] = "帮助标志";
Text[ russian ] = "ID <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "ID <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Pomoc - Identyfikacja"; Text[ polish ] = "Pomoc - Identyfikacja";
Text[ japanese ] = "ヘルプID"; Text[ japanese ] = "ヘルプID";
Text[ chinese_traditional ] = "說明識別符"; Text[ chinese_traditional ] = "說明識別符";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "도움말 ID"; Text[ korean ] = "도움말 ID";
Text[ turkish ] = "Yard<72>m tan<61>t<EFBFBD>c<EFBFBD>s<EFBFBD>"; Text[ turkish ] = "Yard<72>m tan<61>t<EFBFBD>c<EFBFBD>s<EFBFBD>";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Identificaci<EFBFBD>n de ayuda"; Text[ catalan ] = "Identificador d'ajuda";
Text[ thai ] = "ID ช่วยเหลือ";
}; };
NumericField RID_NF_HELPID NumericField RID_NF_HELPID
{ {
@@ -232,19 +235,20 @@ ModalDialog RID_MACROOPTIONS
Text [ french ] = "Nom du fichier de l'aide" ; Text [ french ] = "Nom du fichier de l'aide" ;
Text [ swedish ] = "Hj<48>lp-filnamn" ; Text [ swedish ] = "Hj<48>lp-filnamn" ;
Text [ dutch ] = "Help-bestandsnaam" ; Text [ dutch ] = "Help-bestandsnaam" ;
Text [ spanish ] = "Nombre del archivo de ayuda" ; Text [ spanish ] = "Nombre del archivo de la Ayuda" ;
Text [ english_us ] = "Help file name" ; Text [ english_us ] = "Help file name" ;
Text[ chinese_simplified ] = "帮助文件名"; Text[ chinese_simplified ] = "帮助文件名";
Text[ russian ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Pomoc - Nazwa pliku"; Text[ polish ] = "Pomoc - Nazwa pliku";
Text[ japanese ] = "ヘルプのファイル名"; Text[ japanese ] = "ヘルプのファイル名";
Text[ chinese_traditional ] = "說明檔案名稱"; Text[ chinese_traditional ] = "說明檔案名稱";
Text[ arabic ] = "<22><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "도움말 파일 이름"; Text[ korean ] = "도움말 파일 이름";
Text[ turkish ] = "Yard<72>m dosyas<61> ad<61>"; Text[ turkish ] = "Yard<72>m dosyas<61> ad<61>";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Nombre del archivo de ayuda"; Text[ catalan ] = "Nom del fitxer d'ajuda";
Text[ thai ] = "ชื่อแฟ้มช่วยเหลือ";
}; };
Edit RID_ED_HELPNAME Edit RID_ED_HELPNAME
{ {
@@ -263,7 +267,8 @@ ModalDialog RID_MACROOPTIONS
Text[ korean ] = "설명"; Text[ korean ] = "설명";
Text[ turkish ] = "A<><41>klama"; Text[ turkish ] = "A<><41>klama";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Descripci<63>n"; Text[ catalan ] = "Descripci<63>";
Text[ thai ] = "คำอธิบาย";
}; };
@@ -276,3 +281,5 @@ ModalDialog RID_MACROOPTIONS

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: objdlg.src,v $ * $RCSfile: objdlg.src,v $
* *
* $Revision: 1.18 $ * $Revision: 1.19 $
* *
* last change: $Author: gt $ $Date: 2002-09-02 06:27:42 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:07 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -277,3 +277,5 @@ FloatingWindow RID_BASICIDE_OBJCAT
Text[ catalan ] = "Objectes"; Text[ catalan ] = "Objectes";
Text[ thai ] = "วัตถุ"; Text[ thai ] = "วัตถุ";
}; };

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: tbxctl.src,v $ * $RCSfile: tbxctl.src,v $
* *
* $Revision: 1.39 $ * $Revision: 1.40 $
* *
* last change: $Author: tbe $ $Date: 2002-05-08 17:00:21 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:07 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -104,7 +104,7 @@ FloatingWindow RID_TBXCONTROLS
Text[ turkish ] = "Komut alanlar<61>"; Text[ turkish ] = "Komut alanlar<61>";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Controls"; Text[ catalan ] = "Controls";
Text[ finnish ] = "Ohjaimet"; Text[ finnish ] = "Ohjausobjektit";
Text[ thai ] = "ตัวควบคุม"; Text[ thai ] = "ตัวควบคุม";
}; };
Text[ chinese_simplified ] = "控制"; Text[ chinese_simplified ] = "控制";
@@ -118,7 +118,7 @@ FloatingWindow RID_TBXCONTROLS
Text[ turkish ] = "Komut alanlar<61>"; Text[ turkish ] = "Komut alanlar<61>";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Controls"; Text[ catalan ] = "Controls";
Text[ finnish ] = "Ohjaimet"; Text[ finnish ] = "Ohjausobjektit";
Text[ thai ] = "ตัวควบคุม"; Text[ thai ] = "ตัวควบคุม";
}; };
ToolBox RID_TOOLBOX ToolBox RID_TOOLBOX
@@ -141,7 +141,7 @@ ToolBox RID_TOOLBOX
Text [ french ] = "Bouton" ; Text [ french ] = "Bouton" ;
Text [ dutch ] = "Knop" ; Text [ dutch ] = "Knop" ;
Text [ swedish ] = "Kommandoknapp" ; Text [ swedish ] = "Kommandoknapp" ;
Text [ danish ] = "Kommandoknap" ; Text [ danish ] = "Knap" ;
Text [ portuguese ] = "Bot<6F>o" ; Text [ portuguese ] = "Bot<6F>o" ;
Text [ portuguese_brazilian ] = "CommandButton" ; Text [ portuguese_brazilian ] = "CommandButton" ;
/* ### ACHTUNG: Neuer Text in Resource? CommandButton einf<6E>gen : CommandButton einf<6E>gen */ /* ### ACHTUNG: Neuer Text in Resource? CommandButton einf<6E>gen : CommandButton einf<6E>gen */
@@ -177,7 +177,7 @@ ToolBox RID_TOOLBOX
Text [ portuguese_brazilian ] = "CheckBox" ; Text [ portuguese_brazilian ] = "CheckBox" ;
/* ### ACHTUNG: Neuer Text in Resource? CheckBox einf<6E>gen : CheckBox einf<6E>gen */ /* ### ACHTUNG: Neuer Text in Resource? CheckBox einf<6E>gen : CheckBox einf<6E>gen */
Text[ chinese_simplified ] = "复选框"; Text[ chinese_simplified ] = "复选框";
Text[ russian ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Pole wyboru"; Text[ polish ] = "Pole wyboru";
Text[ japanese ] = "チェックボックス"; Text[ japanese ] = "チェックボックス";
Text[ chinese_traditional ] = "核取方塊"; Text[ chinese_traditional ] = "核取方塊";
@@ -203,22 +203,22 @@ ToolBox RID_TOOLBOX
Text [ french ] = "Champ d'<27>tiquette" ; Text [ french ] = "Champ d'<27>tiquette" ;
Text [ dutch ] = "Titelveld" ; Text [ dutch ] = "Titelveld" ;
Text [ swedish ] = "Etikettf<74>lt" ; Text [ swedish ] = "Etikettf<74>lt" ;
Text [ danish ] = "Etiket" ; Text [ danish ] = "Etiketfelt" ;
Text [ portuguese ] = "Campo de etiqueta" ; Text [ portuguese ] = "Campo de etiqueta" ;
Text [ portuguese_brazilian ] = "Label" ; Text [ portuguese_brazilian ] = "Label" ;
/* ### ACHTUNG: Neuer Text in Resource? Label einf<6E>gen : Label einf<6E>gen */ /* ### ACHTUNG: Neuer Text in Resource? Label einf<6E>gen : Label einf<6E>gen */
Text[ chinese_simplified ] = "标签字段"; Text[ chinese_simplified ] = "标签字段";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Pole etykiety"; Text[ polish ] = "Pole etykiety";
Text[ japanese ] = "図表番号ボックス"; Text[ japanese ] = "図表番号ボックス";
Text[ chinese_traditional ] = "標籤欄位"; Text[ chinese_traditional ] = "標籤欄位";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "캡션 필드"; Text[ korean ] = "레이블 필드";
Text[ turkish ] = "Etiket"; Text[ turkish ] = "Etiket";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Etiqueta"; Text[ catalan ] = "Etiqueta";
Text[ finnish ] = "Nimi<EFBFBD>kentt<EFBFBD>"; Text[ finnish ] = "Selitekentt<EFBFBD>";
Text[ thai ] = "เขตข้อมูลป้ายชื่อ"; Text[ thai ] = "เขตข้อมูลป้ายชื่อ";
}; };
ToolBoxItem ToolBoxItem
@@ -234,18 +234,18 @@ ToolBox RID_TOOLBOX
Text [ french ] = "Zone de liste" ; Text [ french ] = "Zone de liste" ;
Text [ dutch ] = "Keuzelijst" ; Text [ dutch ] = "Keuzelijst" ;
Text [ swedish ] = "Listruta" ; Text [ swedish ] = "Listruta" ;
Text [ danish ] = "Liste" ; Text [ danish ] = "Rulleliste" ;
Text [ portuguese ] = "Caixa de listagem" ; Text [ portuguese ] = "Caixa de listagem" ;
Text [ portuguese_brazilian ] = "ListBox" ; Text [ portuguese_brazilian ] = "ListBox" ;
/* ### ACHTUNG: Neuer Text in Resource? ListBox einf<6E>gen : ListBox einf<6E>gen */ /* ### ACHTUNG: Neuer Text in Resource? ListBox einf<6E>gen : ListBox einf<6E>gen */
Text[ chinese_simplified ] = "列表框"; Text[ chinese_simplified ] = "列表框";
Text[ russian ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Pole listy"; Text[ polish ] = "Pole listy";
Text[ japanese ] = "リストボックス"; Text[ japanese ] = "リストボックス";
Text[ chinese_traditional ] = "清單方塊"; Text[ chinese_traditional ] = "清單方塊";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "목록 필드"; Text[ korean ] = "목록 상자";
Text[ turkish ] = "Liste kutusu"; Text[ turkish ] = "Liste kutusu";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Quadre de llista"; Text[ catalan ] = "Quadre de llista";
@@ -270,13 +270,13 @@ ToolBox RID_TOOLBOX
Text [ portuguese_brazilian ] = "HScrollBar" ; Text [ portuguese_brazilian ] = "HScrollBar" ;
/* ### ACHTUNG: Neuer Text in Resource? Horizontale ScrollBar einf<6E>gen : Horizontale ScrollBar einf<6E>gen */ /* ### ACHTUNG: Neuer Text in Resource? Horizontale ScrollBar einf<6E>gen : Horizontale ScrollBar einf<6E>gen */
Text[ chinese_simplified ] = "水平向滚动栏"; Text[ chinese_simplified ] = "水平向滚动栏";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Poziomy pasek przewijania"; Text[ polish ] = "Poziomy pasek przewijania";
Text[ japanese ] = "水平スクロールバー"; Text[ japanese ] = "水平スクロールバー";
Text[ chinese_traditional ] = "水平向捲軸"; Text[ chinese_traditional ] = "水平向捲軸";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "수평 스크롤"; Text[ korean ] = "수평 스크롤 막대";
Text[ turkish ] = "Yatay kayd<79>rma <20>ubu<62>u"; Text[ turkish ] = "Yatay kayd<79>rma <20>ubu<62>u";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Barra de despla<6C>ament horitzontal"; Text[ catalan ] = "Barra de despla<6C>ament horitzontal";
@@ -296,20 +296,20 @@ ToolBox RID_TOOLBOX
Text [ spanish ] = "Marco de grupo" ; Text [ spanish ] = "Marco de grupo" ;
Text [ french ] = "Zone de groupe" ; Text [ french ] = "Zone de groupe" ;
Text [ swedish ] = "Grupperingsram" ; Text [ swedish ] = "Grupperingsram" ;
Text [ danish ] = "FrameControl" ; Text [ danish ] = "Gruppeboks" ;
Text [ portuguese ] = "Caixa de grupo" ; Text [ portuguese ] = "Caixa de grupo" ;
Text [ portuguese_brazilian ] = "FrameControl" ; Text [ portuguese_brazilian ] = "FrameControl" ;
/* ### ACHTUNG: Neuer Text in Resource? GroupBox einf<6E>gen : GroupBox einf<6E>gen */ /* ### ACHTUNG: Neuer Text in Resource? GroupBox einf<6E>gen : GroupBox einf<6E>gen */
Text[ chinese_simplified ] = "小组框"; Text[ chinese_simplified ] = "小组框";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>";
Text[ polish ] = "Ramka grupy"; Text[ polish ] = "Ramka grupy";
Text[ japanese ] = "グループ枠"; Text[ japanese ] = "グループ枠";
Text[ chinese_traditional ] = "群組方塊"; Text[ chinese_traditional ] = "群組方塊";
Text[ arabic ] = "FrameControl"; Text[ arabic ] = "FrameControl";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "그룹박스"; Text[ korean ] = "그룹 상자";
Text[ turkish ] = "FrameControl"; Text[ turkish ] = "FrameControl";
Text[ language_user1 ] = " "; Text[ language_user1 ] = "; German should be \"Rahmen\"";
Text[ catalan ] = "Control del marc"; Text[ catalan ] = "Control del marc";
Text[ finnish ] = "Ryhm<68>ruutu"; Text[ finnish ] = "Ryhm<68>ruutu";
Text[ thai ] = "กล่องที่จัดเป็นกลุ่ม"; Text[ thai ] = "กล่องที่จัดเป็นกลุ่ม";
@@ -330,12 +330,12 @@ ToolBox RID_TOOLBOX
Text[ spanish ] = "L<>nea horizontal"; Text[ spanish ] = "L<>nea horizontal";
Text[ finnish ] = "Vaakaviiva"; Text[ finnish ] = "Vaakaviiva";
Text[ italian ] = "Linea orizzontale"; Text[ italian ] = "Linea orizzontale";
Text[ danish ] = "HFixedLine"; Text[ danish ] = "Vandret linje";
Text[ swedish ] = "Horisontell linje"; Text[ swedish ] = "Horisontell linje";
Text[ polish ] = "Linia pozioma"; Text[ polish ] = "Linia pozioma";
Text[ portuguese_brazilian ] = "HFixedLine"; Text[ portuguese_brazilian ] = "HFixedLine";
Text[ japanese ] = "横線"; Text[ japanese ] = "横線";
Text[ korean ] = "수평선"; Text[ korean ] = "가로선";
Text[ chinese_simplified ] = "水平线条"; Text[ chinese_simplified ] = "水平线条";
Text[ chinese_traditional ] = "水平線"; Text[ chinese_traditional ] = "水平線";
Text[ turkish ] = "HFixedLine"; Text[ turkish ] = "HFixedLine";
@@ -357,20 +357,20 @@ ToolBox RID_TOOLBOX
Text[ dutch ] = "Datumveld"; Text[ dutch ] = "Datumveld";
Text[ french ] = "Champ de date"; Text[ french ] = "Champ de date";
Text[ spanish ] = "Campo de fecha"; Text[ spanish ] = "Campo de fecha";
Text[ finnish ] = "DateField"; Text[ finnish ] = "P<EFBFBD>iv<EFBFBD>m<EFBFBD><EFBFBD>r<EFBFBD>kentt<EFBFBD>";
Text[ italian ] = "Campo data"; Text[ italian ] = "Campo data";
Text[ danish ] = "DateField"; Text[ danish ] = "Datofelt";
Text[ swedish ] = "Datumf<6D>lt"; Text[ swedish ] = "Datumf<6D>lt";
Text[ polish ] = "Pole daty"; Text[ polish ] = "Pole daty";
Text[ portuguese_brazilian ] = "DateField"; Text[ portuguese_brazilian ] = "DateField";
Text[ japanese ] = "日付フィールド"; Text[ japanese ] = "日付フィールド";
Text[ korean ] = "데이터 필드"; Text[ korean ] = "날짜 필드";
Text[ chinese_simplified ] = "日期字段"; Text[ chinese_simplified ] = "日期字段";
Text[ chinese_traditional ] = "日期欄位"; Text[ chinese_traditional ] = "日期欄位";
Text[ turkish ] = "DateField"; Text[ turkish ] = "DateField";
Text[ arabic ] = "DateField"; Text[ arabic ] = "DateField";
Text[ catalan ] = "DateField"; Text[ catalan ] = "Camp de dades";
Text[ thai ] = "Date Field"; Text[ thai ] = "เขตข้อมูลวันที่";
}; };
ToolBoxItem ToolBoxItem
{ {
@@ -386,20 +386,20 @@ ToolBox RID_TOOLBOX
Text[ dutch ] = "Numeriek veld"; Text[ dutch ] = "Numeriek veld";
Text[ french ] = "Champ num<75>rique"; Text[ french ] = "Champ num<75>rique";
Text[ spanish ] = "Campo num<75>rico"; Text[ spanish ] = "Campo num<75>rico";
Text[ finnish ] = "NumericField"; Text[ finnish ] = "Numeerinen kentt<74>";
Text[ italian ] = "Campo numerico"; Text[ italian ] = "Campo numerico";
Text[ danish ] = "NumericField"; Text[ danish ] = "Numerisk felt";
Text[ swedish ] = "Numeriskt f<>lt"; Text[ swedish ] = "Numeriskt f<>lt";
Text[ polish ] = "Pole numeryczne"; Text[ polish ] = "Pole numeryczne";
Text[ portuguese_brazilian ] = "NumericField"; Text[ portuguese_brazilian ] = "NumericField";
Text[ japanese ] = "番号フィールド"; Text[ japanese ] = "番号フィールド";
Text[ korean ] = "수치 필드"; Text[ korean ] = "숫자 필드";
Text[ chinese_simplified ] = "数字字段"; Text[ chinese_simplified ] = "数字字段";
Text[ chinese_traditional ] = "數字欄位"; Text[ chinese_traditional ] = "數字欄位";
Text[ turkish ] = "NumericField"; Text[ turkish ] = "NumericField";
Text[ arabic ] = "NumericField"; Text[ arabic ] = "NumericField";
Text[ catalan ] = "NumericField"; Text[ catalan ] = "Camp num<EFBFBD>ric";
Text[ thai ] = "Numeric Field"; Text[ thai ] = "เขตข้อมูลตัวเลข";
}; };
ToolBoxItem ToolBoxItem
{ {
@@ -410,25 +410,25 @@ ToolBox RID_TOOLBOX
Text [ english ] = "FormattedField" ; Text [ english ] = "FormattedField" ;
Text[ english_us ] = "Formatted Field"; Text[ english_us ] = "Formatted Field";
Text[ portuguese ] = "Campo formatado"; Text[ portuguese ] = "Campo formatado";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "FormattedField"; Text[ greek ] = "FormattedField";
Text[ dutch ] = "Opgemaakt veld"; Text[ dutch ] = "Opgemaakt veld";
Text[ french ] = "Champ format<61>"; Text[ french ] = "Champ format<61>";
Text[ spanish ] = "Campo formateado"; Text[ spanish ] = "Campo formateado";
Text[ finnish ] = "FormattedField"; Text[ finnish ] = "Muotoiltu kentt<74>";
Text[ italian ] = "Campo formattato"; Text[ italian ] = "Campo formattato";
Text[ danish ] = "FormattedField"; Text[ danish ] = "Formateret felt";
Text[ swedish ] = "Formaterat f<>lt"; Text[ swedish ] = "Formaterat f<>lt";
Text[ polish ] = "Pole sformatowane"; Text[ polish ] = "Pole sformatowane";
Text[ portuguese_brazilian ] = "FormattedField"; Text[ portuguese_brazilian ] = "FormattedField";
Text[ japanese ] = "書式設定されたフィールド"; Text[ japanese ] = "書式設定されたフィールド";
Text[ korean ] = "서식 지정된 필드"; Text[ korean ] = "서식 있는 필드";
Text[ chinese_simplified ] = "格式化的字段"; Text[ chinese_simplified ] = "格式化的字段";
Text[ chinese_traditional ] = "格式化的字段"; Text[ chinese_traditional ] = "格式化的字段";
Text[ turkish ] = "FormattedField"; Text[ turkish ] = "FormattedField";
Text[ arabic ] = "FormattedField"; Text[ arabic ] = "FormattedField";
Text[ catalan ] = "FormattedField"; Text[ catalan ] = "Camp formatat";
Text[ thai ] = "Formatted Field"; Text[ thai ] = "เขตข้อมูลการจัดรูปแบบ";
}; };
ToolBoxItem ToolBoxItem
{ {
@@ -444,20 +444,20 @@ ToolBox RID_TOOLBOX
Text[ dutch ] = "Bestandselectie"; Text[ dutch ] = "Bestandselectie";
Text[ french ] = "S<>lection de fichier"; Text[ french ] = "S<>lection de fichier";
Text[ spanish ] = "Selecci<63>n de archivo"; Text[ spanish ] = "Selecci<63>n de archivo";
Text[ finnish ] = "FileControl"; Text[ finnish ] = "Tiedoston valinta";
Text[ italian ] = "Selezione file"; Text[ italian ] = "Selezione file";
Text[ danish ] = "FileControl"; Text[ danish ] = "Filudvalg";
Text[ swedish ] = "Filurval"; Text[ swedish ] = "Filurval";
Text[ polish ] = "Wyb<79>r plik<69>w"; Text[ polish ] = "Wyb<79>r plik<69>w";
Text[ portuguese_brazilian ] = "FileControl"; Text[ portuguese_brazilian ] = "FileControl";
Text[ japanese ] = "ファイルの選択"; Text[ japanese ] = "ファイルの選択";
Text[ korean ] = "파일 컨트롤"; Text[ korean ] = "파일 선택";
Text[ chinese_simplified ] = "选择文件"; Text[ chinese_simplified ] = "选择文件";
Text[ chinese_traditional ] = "選取檔案"; Text[ chinese_traditional ] = "選取檔案";
Text[ turkish ] = "FileControl"; Text[ turkish ] = "FileControl";
Text[ arabic ] = "FileControl"; Text[ arabic ] = "FileControl";
Text[ catalan ] = "FileControl"; Text[ catalan ] = "Fitxer de control";
Text[ thai ] = "File Selection"; Text[ thai ] = "การเลือกแฟ้ม";
}; };
ToolBoxItem { Type = TOOLBOXITEM_SEPARATOR ; }; ToolBoxItem { Type = TOOLBOXITEM_SEPARATOR ; };
ToolBoxItem ToolBoxItem
@@ -484,7 +484,7 @@ ToolBox RID_TOOLBOX
Text[ chinese_traditional ] = "屬性"; Text[ chinese_traditional ] = "屬性";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "등록정보"; Text[ korean ] = "등록 정보";
Text[ turkish ] = "<22>zellikler"; Text[ turkish ] = "<22>zellikler";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Propietats"; Text[ catalan ] = "Propietats";
@@ -502,17 +502,17 @@ ToolBox RID_TOOLBOX
Text[ portuguese ] = "Controlo gr<67>fico"; Text[ portuguese ] = "Controlo gr<67>fico";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ dutch ] = "Grafisch controleveld"; Text[ dutch ] = "Afbeeldingscontrole";
Text[ french ] = "Contr<74>le picto"; Text[ french ] = "Contr<74>le picto";
Text[ spanish ] = "Campo gr<67>fico de control"; Text[ spanish ] = "Campo gr<67>fico de control";
Text[ finnish ] = "Kuvan ohjaus"; Text[ finnish ] = "Kuvan ohjaus";
Text[ italian ] = "Campo di controllo immagine"; Text[ italian ] = "Campo di controllo immagine";
Text[ danish ] = "ImageControl"; Text[ danish ] = "Grafisk kontrolelement";
Text[ swedish ] = "Grafiskt kontrollf<6C>lt"; Text[ swedish ] = "Grafiskt kontrollf<6C>lt";
Text[ polish ] = "Graficzne pole kontrolne"; Text[ polish ] = "Graficzne pole kontrolne";
Text[ portuguese_brazilian ] = "ImageControl"; Text[ portuguese_brazilian ] = "ImageControl";
Text[ japanese ] = "イメージコントロール"; Text[ japanese ] = "イメージコントロール";
Text[ korean ] = "그래픽 컨트롤 필드"; Text[ korean ] = "이미지 컨트롤";
Text[ chinese_simplified ] = "图形控制"; Text[ chinese_simplified ] = "图形控制";
Text[ chinese_traditional ] = "圖式控制項"; Text[ chinese_traditional ] = "圖式控制項";
Text[ turkish ] = "ImageControl"; Text[ turkish ] = "ImageControl";
@@ -533,18 +533,18 @@ ToolBox RID_TOOLBOX
Text [ spanish ] = "Campo de opci<63>n" ; Text [ spanish ] = "Campo de opci<63>n" ;
Text [ french ] = "Bouton radio" ; Text [ french ] = "Bouton radio" ;
Text [ swedish ] = "Alternativf<76>lt" ; Text [ swedish ] = "Alternativf<76>lt" ;
Text [ danish ] = "Alternativknap" ; Text [ danish ] = "Alternativfelt" ;
Text [ portuguese ] = "Bot<6F>o de op<6F><70>o" ; Text [ portuguese ] = "Bot<6F>o de op<6F><70>o" ;
Text [ portuguese_brazilian ] = "OptionButton" ; Text [ portuguese_brazilian ] = "OptionButton" ;
/* ### ACHTUNG: Neuer Text in Resource? RadioButton einf<6E>gen : RadioButton einf<6E>gen */ /* ### ACHTUNG: Neuer Text in Resource? RadioButton einf<6E>gen : RadioButton einf<6E>gen */
Text[ chinese_simplified ] = "选项字段"; Text[ chinese_simplified ] = "选项字段";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Pole opcji"; Text[ polish ] = "Pole opcji";
Text[ japanese ] = "オプションボックス"; Text[ japanese ] = "オプションボックス";
Text[ chinese_traditional ] = "選項欄位"; Text[ chinese_traditional ] = "選項欄位";
Text[ arabic ] = "<22><> <20><><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><> <20><><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "옵션 필드"; Text[ korean ] = "옵션 버튼";
Text[ turkish ] = "Se<53>enek d<><64>mesi"; Text[ turkish ] = "Se<53>enek d<><64>mesi";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Bot<6F> d'opci<63>"; Text[ catalan ] = "Bot<6F> d'opci<63>";
@@ -564,7 +564,7 @@ ToolBox RID_TOOLBOX
Text [ spanish ] = "Campo de texto" ; Text [ spanish ] = "Campo de texto" ;
Text [ french ] = "Zone de texte" ; Text [ french ] = "Zone de texte" ;
Text [ swedish ] = "Textf<74>lt" ; Text [ swedish ] = "Textf<74>lt" ;
Text [ danish ] = "Tekstboks" ; Text [ danish ] = "Tekstfelt" ;
Text [ portuguese ] = "Caixa de texto" ; Text [ portuguese ] = "Caixa de texto" ;
Text [ portuguese_brazilian ] = "TextBox" ; Text [ portuguese_brazilian ] = "TextBox" ;
/* ### ACHTUNG: Neuer Text in Resource? Edit einf<6E>gen : Edit einf<6E>gen */ /* ### ACHTUNG: Neuer Text in Resource? Edit einf<6E>gen : Edit einf<6E>gen */
@@ -606,7 +606,7 @@ ToolBox RID_TOOLBOX
Text[ chinese_traditional ] = "組合方塊"; Text[ chinese_traditional ] = "組合方塊";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "콤보 필드"; Text[ korean ] = "콤보 상자";
Text[ turkish ] = "Kombinasyon alan<61>"; Text[ turkish ] = "Kombinasyon alan<61>";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Quadre combinat"; Text[ catalan ] = "Quadre combinat";
@@ -631,13 +631,13 @@ ToolBox RID_TOOLBOX
Text [ portuguese_brazilian ] = "VScrollBar" ; Text [ portuguese_brazilian ] = "VScrollBar" ;
/* ### ACHTUNG: Neuer Text in Resource? Vertikale ScrollBar einf<6E>gen : Vertikale ScrollBar einf<6E>gen */ /* ### ACHTUNG: Neuer Text in Resource? Vertikale ScrollBar einf<6E>gen : Vertikale ScrollBar einf<6E>gen */
Text[ chinese_simplified ] = "垂直滚动栏"; Text[ chinese_simplified ] = "垂直滚动栏";
Text[ russian ] = "<22><><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Pionowy pasek przewijania"; Text[ polish ] = "Pionowy pasek przewijania";
Text[ japanese ] = "垂直スクロールバー"; Text[ japanese ] = "垂直スクロールバー";
Text[ chinese_traditional ] = "垂直向捲軸"; Text[ chinese_traditional ] = "垂直向捲軸";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "수직 스크롤"; Text[ korean ] = "수직 스크롤 막대";
Text[ turkish ] = "Dikey kayd<79>rma <20>ubu<62>u"; Text[ turkish ] = "Dikey kayd<79>rma <20>ubu<62>u";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Barra de despla<6C>ament vertical"; Text[ catalan ] = "Barra de despla<6C>ament vertical";
@@ -653,19 +653,19 @@ ToolBox RID_TOOLBOX
Text [ english ] = "ProgressBar" ; Text [ english ] = "ProgressBar" ;
Text [ english_us ] = "Progress Bar" ; Text [ english_us ] = "Progress Bar" ;
Text[ portuguese ] = "Barra de progress<73>o"; Text[ portuguese ] = "Barra de progress<73>o";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ dutch ] = "Voortgangsindicator"; Text[ dutch ] = "Voortgangsindicator";
Text[ french ] = "Barre de progression"; Text[ french ] = "Barre de progression";
Text[ spanish ] = "Barra de progreso"; Text[ spanish ] = "Barra de progresi<EFBFBD>n";
Text[ finnish ] = "Tilannepalkki"; Text[ finnish ] = "Tilannerivi";
Text[ italian ] = "Barra di completamento"; Text[ italian ] = "Barra di completamento";
Text[ danish ] = "ProgressBar"; Text[ danish ] = "Statuslinje";
Text[ swedish ] = "F<>rloppsindikator"; Text[ swedish ] = "F<>rloppsindikator";
Text[ polish ] = "Pasek post<73>pu"; Text[ polish ] = "Pasek post<73>pu";
Text[ portuguese_brazilian ] = "ProgressBar"; Text[ portuguese_brazilian ] = "ProgressBar";
Text[ japanese ] = "進行グラフ"; Text[ japanese ] = "進行グラフ";
Text[ korean ] = "진행표시줄"; Text[ korean ] = "진행 표시줄";
Text[ chinese_simplified ] = "进展方框"; Text[ chinese_simplified ] = "进展方框";
Text[ chinese_traditional ] = "進展方塊"; Text[ chinese_traditional ] = "進展方塊";
Text[ turkish ] = "ProgressBar"; Text[ turkish ] = "ProgressBar";
@@ -689,12 +689,12 @@ ToolBox RID_TOOLBOX
Text[ spanish ] = "L<>nea vertical"; Text[ spanish ] = "L<>nea vertical";
Text[ finnish ] = "Pystyviiva"; Text[ finnish ] = "Pystyviiva";
Text[ italian ] = "Linea verticale"; Text[ italian ] = "Linea verticale";
Text[ danish ] = "VFixedLine"; Text[ danish ] = "Lodret linje";
Text[ swedish ] = "Vertikal linje"; Text[ swedish ] = "Vertikal linje";
Text[ polish ] = "Linia pionowa"; Text[ polish ] = "Linia pionowa";
Text[ portuguese_brazilian ] = "VFixedLine"; Text[ portuguese_brazilian ] = "VFixedLine";
Text[ japanese ] = "縦線"; Text[ japanese ] = "縦線";
Text[ korean ] = "수직선"; Text[ korean ] = "세로선";
Text[ chinese_simplified ] = "垂直线条"; Text[ chinese_simplified ] = "垂直线条";
Text[ chinese_traditional ] = "垂直線"; Text[ chinese_traditional ] = "垂直線";
Text[ turkish ] = "VFixedLine"; Text[ turkish ] = "VFixedLine";
@@ -716,9 +716,9 @@ ToolBox RID_TOOLBOX
Text[ dutch ] = "Tijdveld"; Text[ dutch ] = "Tijdveld";
Text[ french ] = "Champ horaire"; Text[ french ] = "Champ horaire";
Text[ spanish ] = "Campo horario"; Text[ spanish ] = "Campo horario";
Text[ finnish ] = "TimeField"; Text[ finnish ] = "Aikakentt<EFBFBD>";
Text[ italian ] = "Campo ora"; Text[ italian ] = "Campo ora";
Text[ danish ] = "TimeField"; Text[ danish ] = "Klokkesl<EFBFBD>tsfelt";
Text[ swedish ] = "Tidsf<73>lt"; Text[ swedish ] = "Tidsf<73>lt";
Text[ polish ] = "Pole godziny"; Text[ polish ] = "Pole godziny";
Text[ portuguese_brazilian ] = "TimeField"; Text[ portuguese_brazilian ] = "TimeField";
@@ -728,8 +728,8 @@ ToolBox RID_TOOLBOX
Text[ chinese_traditional ] = "時間欄位"; Text[ chinese_traditional ] = "時間欄位";
Text[ turkish ] = "TimeField"; Text[ turkish ] = "TimeField";
Text[ arabic ] = "TimeField"; Text[ arabic ] = "TimeField";
Text[ catalan ] = "TimeField"; Text[ catalan ] = "Camp de temps";
Text[ thai ] = "Time Field"; Text[ thai ] = "เขตข้อมูลเวลา";
}; };
ToolBoxItem ToolBoxItem
{ {
@@ -740,14 +740,14 @@ ToolBox RID_TOOLBOX
Text [ english ] = "CurrencyField" ; Text [ english ] = "CurrencyField" ;
Text[ english_us ] = "Currency Field"; Text[ english_us ] = "Currency Field";
Text[ portuguese ] = "Campo para moeda"; Text[ portuguese ] = "Campo para moeda";
Text[ russian ] = "<22><><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "CurrencyField"; Text[ greek ] = "CurrencyField";
Text[ dutch ] = "Valutaveld"; Text[ dutch ] = "Valutaveld";
Text[ french ] = "Champ mon<6F>taire"; Text[ french ] = "Champ mon<6F>taire";
Text[ spanish ] = "Campo de moneda"; Text[ spanish ] = "Campo de moneda";
Text[ finnish ] = "CurrencyField"; Text[ finnish ] = "Valuuttakentt<EFBFBD>";
Text[ italian ] = "Campo valuta"; Text[ italian ] = "Campo valuta";
Text[ danish ] = "CurrencyField"; Text[ danish ] = "Valutafelt";
Text[ swedish ] = "Valutaf<61>lt"; Text[ swedish ] = "Valutaf<61>lt";
Text[ polish ] = "Pole waluty"; Text[ polish ] = "Pole waluty";
Text[ portuguese_brazilian ] = "CurrencyField"; Text[ portuguese_brazilian ] = "CurrencyField";
@@ -757,8 +757,8 @@ ToolBox RID_TOOLBOX
Text[ chinese_traditional ] = "貨幣欄位"; Text[ chinese_traditional ] = "貨幣欄位";
Text[ turkish ] = "CurrencyField"; Text[ turkish ] = "CurrencyField";
Text[ arabic ] = "CurrencyField"; Text[ arabic ] = "CurrencyField";
Text[ catalan ] = "CurrencyField"; Text[ catalan ] = "Camp de moneda";
Text[ thai ] = "Currency Field"; Text[ thai ] = "เขตข้อมูลสกุลเงิน";
}; };
ToolBoxItem ToolBoxItem
{ {
@@ -769,14 +769,14 @@ ToolBox RID_TOOLBOX
Text [ english ] = "PatternField" ; Text [ english ] = "PatternField" ;
Text[ english_us ] = "Pattern Field"; Text[ english_us ] = "Pattern Field";
Text[ portuguese ] = "Campo mascarado"; Text[ portuguese ] = "Campo mascarado";
Text[ russian ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "PatternField"; Text[ greek ] = "PatternField";
Text[ dutch ] = "Patroonveld"; Text[ dutch ] = "Patroonveld";
Text[ french ] = "Champ masqu<71>"; Text[ french ] = "Champ masqu<71>";
Text[ spanish ] = "Campo enmascarado"; Text[ spanish ] = "Campo enmascarado";
Text[ finnish ] = "PatternField"; Text[ finnish ] = "Kuviokentt<EFBFBD>";
Text[ italian ] = "Campo modello"; Text[ italian ] = "Campo modello";
Text[ danish ] = "PatternField"; Text[ danish ] = "Maskeret felt";
Text[ swedish ] = "Maskerat f<>lt"; Text[ swedish ] = "Maskerat f<>lt";
Text[ polish ] = "Pole maski"; Text[ polish ] = "Pole maski";
Text[ portuguese_brazilian ] = "PatternField"; Text[ portuguese_brazilian ] = "PatternField";
@@ -786,8 +786,8 @@ ToolBox RID_TOOLBOX
Text[ chinese_traditional ] = "遮罩欄位"; Text[ chinese_traditional ] = "遮罩欄位";
Text[ turkish ] = "PatternField"; Text[ turkish ] = "PatternField";
Text[ arabic ] = "PatternField"; Text[ arabic ] = "PatternField";
Text[ catalan ] = "PatternField"; Text[ catalan ] = "Camp de patr<74>";
Text[ thai ] = "Pattern Field"; Text[ thai ] = "เขตข้อมูลลวดลาย";
}; };
ToolBoxItem ToolBoxItem
{ {
@@ -798,7 +798,7 @@ ToolBox RID_TOOLBOX
Text [ english ] = "Select" ; Text [ english ] = "Select" ;
Text [ english_us ] = "Select" ; Text [ english_us ] = "Select" ;
Text [ norwegian ] = "Select" ; Text [ norwegian ] = "Select" ;
Text [ italian ] = "Seleziona" ; Text [ italian ] = "Scelta" ;
Text [ portuguese_brazilian ] = "Selecionar" ; Text [ portuguese_brazilian ] = "Selecionar" ;
Text [ portuguese ] = "Seleccionar" ; Text [ portuguese ] = "Seleccionar" ;
Text [ finnish ] = "Valitse" ; Text [ finnish ] = "Valitse" ;
@@ -817,8 +817,8 @@ ToolBox RID_TOOLBOX
Text[ korean ] = "선택"; Text[ korean ] = "선택";
Text[ turkish ] = "Se<53>im"; Text[ turkish ] = "Se<53>im";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Seleccioneu"; Text[ catalan ] = "Opcions";
Text[ thai ] = "เลือก"; Text[ thai ] = "การเลือก";
}; };
ToolBoxItem { Type = TOOLBOXITEM_SEPARATOR ; }; ToolBoxItem { Type = TOOLBOXITEM_SEPARATOR ; };
ToolBoxItem ToolBoxItem
@@ -833,19 +833,19 @@ ToolBox RID_TOOLBOX
Text [ portuguese_brazilian ] = "Ativar modoteste" ; Text [ portuguese_brazilian ] = "Ativar modoteste" ;
Text [ portuguese ] = "Activar modo Teste" ; Text [ portuguese ] = "Activar modo Teste" ;
Text [ finnish ] = "Aktivoi testitila" ; Text [ finnish ] = "Aktivoi testitila" ;
Text [ danish ] = "Aktiver testtilstand" ; Text [ danish ] = "Aktiver testmodus" ;
Text [ french ] = "Activer le mode Test" ; Text [ french ] = "Activer le mode Test" ;
Text [ swedish ] = "Aktivera testl<74>ge" ; Text [ swedish ] = "Aktivera testl<74>ge" ;
Text [ dutch ] = "Testmodus inschakelen" ; Text [ dutch ] = "Testmodus activeren" ;
Text [ spanish ] = "Activar modo prueba" ; Text [ spanish ] = "Activar el modo de prueba" ;
Text[ chinese_simplified ] = "启动试验模式"; Text[ chinese_simplified ] = "启动试验模式";
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>"; Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>";
Text[ polish ] = "Uaktywnij tryb sprawdzania"; Text[ polish ] = "Uaktywnij tryb sprawdzania";
Text[ japanese ] = "テストモードをアクティブにする"; Text[ japanese ] = "テストモードをアクティブにする";
Text[ chinese_traditional ] = "啟動試驗模式"; Text[ chinese_traditional ] = "啟動試驗模式";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"; Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
Text[ korean ] = "테스트모드 활성화"; Text[ korean ] = "테스트 모드 활성화";
Text[ turkish ] = "Deneme kipini etkinle<6C>tir"; Text[ turkish ] = "Deneme kipini etkinle<6C>tir";
Text[ language_user1 ] = " "; Text[ language_user1 ] = " ";
Text[ catalan ] = "Activar el mode de prova"; Text[ catalan ] = "Activar el mode de prova";
@@ -869,3 +869,6 @@ ToolBox RID_TOOLBOX

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: dlgedobj.cxx,v $ * $RCSfile: dlgedobj.cxx,v $
* *
* $Revision: 1.29 $ * $Revision: 1.30 $
* *
* last change: $Author: tbe $ $Date: 2002-08-01 15:06:29 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:09 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -506,19 +506,16 @@ void SAL_CALL DlgEdObj::TabIndexChange( const ::com::sun::star::beans::Property
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
::rtl::OUString DlgEdObj::GetServiceName() const sal_Bool DlgEdObj::supportsService( const sal_Char* _pServiceName ) const
{ {
::rtl::OUString aServiceName; sal_Bool bSupports = sal_False;
Reference< lang::XServiceInfo > xServiceInfo( GetUnoControlModel() , UNO_QUERY ); Reference< lang::XServiceInfo > xServiceInfo( GetUnoControlModel() , UNO_QUERY );
// TODO: cache xServiceInfo as member?
if ( xServiceInfo.is() )
bSupports = xServiceInfo->supportsService( ::rtl::OUString::createFromAscii( _pServiceName ) );
if (xServiceInfo.is()) return bSupports;
{
Sequence< ::rtl::OUString > aServiceNames( xServiceInfo->getSupportedServiceNames() );
DBG_ASSERT( aServiceNames.getLength() == 1 , "DlgEdObj: aServiceNames.getLength() != 1" );
aServiceName = aServiceNames.getArray()[ 0 ];
}
return aServiceName;
} }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
@@ -527,85 +524,83 @@ void SAL_CALL DlgEdObj::TabIndexChange( const ::com::sun::star::beans::Property
{ {
sal_uInt16 nResId = 0; sal_uInt16 nResId = 0;
::rtl::OUString aDefaultName; ::rtl::OUString aDefaultName;
::rtl::OUString aServiceName = GetServiceName(); if ( supportsService( "com.sun.star.awt.UnoControlDialogModel" ) )
if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlDialogModel") ))
{ {
nResId = RID_STR_CLASS_DIALOG; nResId = RID_STR_CLASS_DIALOG;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlButtonModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlButtonModel" ) )
{ {
nResId = RID_STR_CLASS_BUTTON; nResId = RID_STR_CLASS_BUTTON;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlRadioButtonModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlRadioButtonModel" ) )
{ {
nResId = RID_STR_CLASS_RADIOBUTTON; nResId = RID_STR_CLASS_RADIOBUTTON;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlCheckBoxModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlCheckBoxModel" ) )
{ {
nResId = RID_STR_CLASS_CHECKBOX; nResId = RID_STR_CLASS_CHECKBOX;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlListBoxModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlListBoxModel" ) )
{ {
nResId = RID_STR_CLASS_LISTBOX; nResId = RID_STR_CLASS_LISTBOX;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlComboBoxModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlComboBoxModel" ) )
{ {
nResId = RID_STR_CLASS_COMBOBOX; nResId = RID_STR_CLASS_COMBOBOX;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlGroupBoxModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlGroupBoxModel" ) )
{ {
nResId = RID_STR_CLASS_GROUPBOX; nResId = RID_STR_CLASS_GROUPBOX;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlEditModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlEditModel" ) )
{ {
nResId = RID_STR_CLASS_EDIT; nResId = RID_STR_CLASS_EDIT;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFixedTextModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlFixedTextModel" ) )
{ {
nResId = RID_STR_CLASS_FIXEDTEXT; nResId = RID_STR_CLASS_FIXEDTEXT;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlImageControlModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlImageControlModel" ) )
{ {
nResId = RID_STR_CLASS_IMAGECONTROL; nResId = RID_STR_CLASS_IMAGECONTROL;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlProgressBarModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlProgressBarModel" ) )
{ {
nResId = RID_STR_CLASS_PROGRESSBAR; nResId = RID_STR_CLASS_PROGRESSBAR;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlScrollBarModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlScrollBarModel" ) )
{ {
nResId = RID_STR_CLASS_SCROLLBAR; nResId = RID_STR_CLASS_SCROLLBAR;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFixedLineModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlFixedLineModel" ) )
{ {
nResId = RID_STR_CLASS_FIXEDLINE; nResId = RID_STR_CLASS_FIXEDLINE;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlDateFieldModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlDateFieldModel" ) )
{ {
nResId = RID_STR_CLASS_DATEFIELD; nResId = RID_STR_CLASS_DATEFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlTimeFieldModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlTimeFieldModel" ) )
{ {
nResId = RID_STR_CLASS_TIMEFIELD; nResId = RID_STR_CLASS_TIMEFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlNumericFieldModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlNumericFieldModel" ) )
{ {
nResId = RID_STR_CLASS_NUMERICFIELD; nResId = RID_STR_CLASS_NUMERICFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlCurrencyFieldModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlCurrencyFieldModel" ) )
{ {
nResId = RID_STR_CLASS_CURRENCYFIELD; nResId = RID_STR_CLASS_CURRENCYFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFormattedFieldModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlFormattedFieldModel" ) )
{ {
nResId = RID_STR_CLASS_FORMATTEDFIELD; nResId = RID_STR_CLASS_FORMATTEDFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlPatternFieldModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlPatternFieldModel" ) )
{ {
nResId = RID_STR_CLASS_PATTERNFIELD; nResId = RID_STR_CLASS_PATTERNFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFileControlModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlFileControlModel" ) )
{ {
nResId = RID_STR_CLASS_FILECONTROL; nResId = RID_STR_CLASS_FILECONTROL;
} }
@@ -654,85 +649,83 @@ sal_uInt32 DlgEdObj::GetObjInventor() const
sal_uInt16 DlgEdObj::GetObjIdentifier() const sal_uInt16 DlgEdObj::GetObjIdentifier() const
{ {
::rtl::OUString aServiceName = GetServiceName(); if ( supportsService( "com.sun.star.awt.UnoControlDialogModel" ))
if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlDialogModel") ))
{ {
return OBJ_DLG_DIALOG; return OBJ_DLG_DIALOG;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlButtonModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlButtonModel" ))
{ {
return OBJ_DLG_PUSHBUTTON; return OBJ_DLG_PUSHBUTTON;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlRadioButtonModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlRadioButtonModel" ))
{ {
return OBJ_DLG_RADIOBUTTON; return OBJ_DLG_RADIOBUTTON;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlCheckBoxModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlCheckBoxModel" ))
{ {
return OBJ_DLG_CHECKBOX; return OBJ_DLG_CHECKBOX;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlListBoxModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlListBoxModel" ))
{ {
return OBJ_DLG_LISTBOX; return OBJ_DLG_LISTBOX;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlComboBoxModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlComboBoxModel" ))
{ {
return OBJ_DLG_COMBOBOX; return OBJ_DLG_COMBOBOX;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlGroupBoxModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlGroupBoxModel" ))
{ {
return OBJ_DLG_GROUPBOX; return OBJ_DLG_GROUPBOX;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlEditModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlEditModel" ))
{ {
return OBJ_DLG_EDIT; return OBJ_DLG_EDIT;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFixedTextModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlFixedTextModel" ))
{ {
return OBJ_DLG_FIXEDTEXT; return OBJ_DLG_FIXEDTEXT;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlImageControlModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlImageControlModel" ))
{ {
return OBJ_DLG_IMAGECONTROL; return OBJ_DLG_IMAGECONTROL;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlProgressBarModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlProgressBarModel" ))
{ {
return OBJ_DLG_PROGRESSBAR; return OBJ_DLG_PROGRESSBAR;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlScrollBarModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlScrollBarModel" ))
{ {
return OBJ_DLG_HSCROLLBAR; return OBJ_DLG_HSCROLLBAR;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFixedLineModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlFixedLineModel" ))
{ {
return OBJ_DLG_HFIXEDLINE; return OBJ_DLG_HFIXEDLINE;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlDateFieldModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlDateFieldModel" ))
{ {
return OBJ_DLG_DATEFIELD; return OBJ_DLG_DATEFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlTimeFieldModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlTimeFieldModel" ))
{ {
return OBJ_DLG_TIMEFIELD; return OBJ_DLG_TIMEFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlNumericFieldModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlNumericFieldModel" ))
{ {
return OBJ_DLG_NUMERICFIELD; return OBJ_DLG_NUMERICFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlCurrencyFieldModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlCurrencyFieldModel" ))
{ {
return OBJ_DLG_CURRENCYFIELD; return OBJ_DLG_CURRENCYFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFormattedFieldModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlFormattedFieldModel" ))
{ {
return OBJ_DLG_FORMATTEDFIELD; return OBJ_DLG_FORMATTEDFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlPatternFieldModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlPatternFieldModel" ))
{ {
return OBJ_DLG_PATTERNFIELD; return OBJ_DLG_PATTERNFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFileControlModel") )) else if ( supportsService( "com.sun.star.awt.UnoControlFileControlModel" ))
{ {
return OBJ_DLG_FILECONTROL; return OBJ_DLG_FILECONTROL;
} }
@@ -900,18 +893,17 @@ void DlgEdObj::SetDefaults()
xPSet->setPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), aUniqueName ); xPSet->setPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), aUniqueName );
// set labels // set labels
::rtl::OUString aServiceName = GetServiceName(); if ( supportsService( "com.sun.star.awt.UnoControlButtonModel" ) ||
if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlButtonModel") ) || supportsService( "com.sun.star.awt.UnoControlRadioButtonModel" ) ||
aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlRadioButtonModel") ) || supportsService( "com.sun.star.awt.UnoControlCheckBoxModel" ) ||
aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlCheckBoxModel") ) || supportsService( "com.sun.star.awt.UnoControlGroupBoxModel" ) ||
aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlGroupBoxModel") ) || supportsService( "com.sun.star.awt.UnoControlFixedTextModel" ) )
aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFixedTextModel") ) )
{ {
xPSet->setPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Label" ) ), aUniqueName ); xPSet->setPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Label" ) ), aUniqueName );
} }
// set number formats supplier for formatted field // set number formats supplier for formatted field
if ( aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFormattedFieldModel") ) ) if ( supportsService( "com.sun.star.awt.UnoControlFormattedFieldModel" ) )
{ {
Reference< util::XNumberFormatsSupplier > xSupplier = GetDlgEdForm()->GetDlgEditor()->GetNumberFormatsSupplier(); Reference< util::XNumberFormatsSupplier > xSupplier = GetDlgEdForm()->GetDlgEditor()->GetNumberFormatsSupplier();
if ( xSupplier.is() ) if ( xSupplier.is() )
@@ -1162,9 +1154,7 @@ void SAL_CALL DlgEdObj::_elementRemoved(const ::com::sun::star::container::Conta
SdrObject* DlgEdObj::CheckHit( const Point& rPnt, USHORT nTol,const SetOfByte* pSet ) const SdrObject* DlgEdObj::CheckHit( const Point& rPnt, USHORT nTol,const SetOfByte* pSet ) const
{ {
::rtl::OUString aServiceName = GetServiceName(); if ( supportsService( "com.sun.star.awt.UnoControlGroupBoxModel" ))
if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlGroupBoxModel") ))
{ {
Rectangle aROuter = aOutRect; Rectangle aROuter = aOutRect;
aROuter.Left() -= nTol; aROuter.Left() -= nTol;

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: dlgresid.src,v $ * $RCSfile: dlgresid.src,v $
* *
* $Revision: 1.23 $ * $Revision: 1.24 $
* *
* last change: $Author: kz $ $Date: 2001-10-18 07:28:07 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:09 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -163,18 +163,19 @@ String RID_STR_BRWTITLE_PROPERTIES
Text[ french ] = "Propri<72>t<EFBFBD>s : "; Text[ french ] = "Propri<72>t<EFBFBD>s : ";
Text[ spanish ] = "Propiedades: "; Text[ spanish ] = "Propiedades: ";
Text[ italian ] = "Propriet<65>: "; Text[ italian ] = "Propriet<65>: ";
Text[ danish ] = "Properties: "; Text[ danish ] = "Egenskaber: ";
Text[ swedish ] = "Egenskaper: "; Text[ swedish ] = "Egenskaper: ";
Text[ polish ] = "W<>a<EFBFBD>ciwo<77>ci: "; Text[ polish ] = "W<>a<EFBFBD>ciwo<77>ci: ";
Text[ portuguese_brazilian ] = "Properties: "; Text[ portuguese_brazilian ] = "Properties: ";
Text[ japanese ] = "プロパティ: "; Text[ japanese ] = "プロパティ: ";
Text[ korean ] = "속성: "; Text[ korean ] = "등록 정보: ";
Text[ chinese_simplified ] = "属性:"; Text[ chinese_simplified ] = "属性:";
Text[ chinese_traditional ] = "屬性:"; Text[ chinese_traditional ] = "屬性:";
Text[ turkish ] = "Properties: "; Text[ turkish ] = "Properties: ";
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: "; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: ";
Text[ finnish ] = "Ominaisuudet:"; Text[ finnish ] = "Ominaisuudet: ";
Text[ catalan ] = "Propietats: "; Text[ catalan ] = "Propietats: ";
Text[ thai ] = "คุณสมบัติ: ";
}; };
String RID_STR_BRWTITLE_NO_PROPERTIES String RID_STR_BRWTITLE_NO_PROPERTIES
{ {
@@ -188,18 +189,19 @@ String RID_STR_BRWTITLE_NO_PROPERTIES
Text[ french ] = "Aucun <20>l<EFBFBD>ment de contr<74>le marqu<71>"; Text[ french ] = "Aucun <20>l<EFBFBD>ment de contr<74>le marqu<71>";
Text[ spanish ] = "Ning<6E>n elemento de control seleccionado"; Text[ spanish ] = "Ning<6E>n elemento de control seleccionado";
Text[ italian ] = "Nessun elemento di controllo selezionato"; Text[ italian ] = "Nessun elemento di controllo selezionato";
Text[ danish ] = "No Control marked"; Text[ danish ] = "Der er ikke markeret noget kontrolelement";
Text[ swedish ] = "Inget kontrollelement markerat"; Text[ swedish ] = "Inget kontrollelement markerat";
Text[ polish ] = "Nie zaznaczono formantu"; Text[ polish ] = "Nie zaznaczono formantu";
Text[ portuguese_brazilian ] = "No Control marked"; Text[ portuguese_brazilian ] = "No Control marked";
Text[ japanese ] = "コントロール要素の選択なし"; Text[ japanese ] = "コントロール要素の選択なし";
Text[ korean ] = "컨트롤 요소가 마크표시되지 않음"; Text[ korean ] = "컨트롤이 선택되지 않음";
Text[ chinese_simplified ] = "没有选择控制单元"; Text[ chinese_simplified ] = "没有选择控制单元";
Text[ chinese_traditional ] = "沒有選取控單元"; Text[ chinese_traditional ] = "沒有選取控單元";
Text[ turkish ] = "No Control marked"; Text[ turkish ] = "No Control marked";
Text[ arabic ] = "<22><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>";
Text[ finnish ] = "Kein Kontrollelement markiert"; Text[ finnish ] = "Ei merkitty<74> ohjausobjektia";
Text[ catalan ] = "Sense marques de control"; Text[ catalan ] = "Sense marques de control";
Text[ thai ] = "ไม่ได้ทำเครื่องหมายตัวควบคุมไว้";
}; };
String RID_STR_BRWTITLE_MULTISELECT String RID_STR_BRWTITLE_MULTISELECT
{ {
@@ -213,7 +215,7 @@ String RID_STR_BRWTITLE_MULTISELECT
Text[ french ] = "S<>lection multiple"; Text[ french ] = "S<>lection multiple";
Text[ spanish ] = "Selecci<63>n m<>ltiple"; Text[ spanish ] = "Selecci<63>n m<>ltiple";
Text[ italian ] = "Selezione multipla"; Text[ italian ] = "Selezione multipla";
Text[ danish ] = "Multiselection"; Text[ danish ] = "Multimarkering";
Text[ swedish ] = "Multimarkering"; Text[ swedish ] = "Multimarkering";
Text[ polish ] = "Wyb<79>r wielokrotny"; Text[ polish ] = "Wyb<79>r wielokrotny";
Text[ portuguese_brazilian ] = "Multiselection"; Text[ portuguese_brazilian ] = "Multiselection";
@@ -225,6 +227,7 @@ String RID_STR_BRWTITLE_MULTISELECT
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>"; Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>";
Text[ finnish ] = "Monivalinta"; Text[ finnish ] = "Monivalinta";
Text[ catalan ] = "Selecci<63> m<>ltiple"; Text[ catalan ] = "Selecci<63> m<>ltiple";
Text[ thai ] = "เลือกหลายส่วน";
}; };
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
@@ -237,3 +240,12 @@ String RID_STR_BRWTITLE_MULTISELECT

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: propbrw.cxx,v $ * $RCSfile: propbrw.cxx,v $
* *
* $Revision: 1.12 $ * $Revision: 1.13 $
* *
* last change: $Author: mba $ $Date: 2002-07-15 13:50:42 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:09 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -433,87 +433,83 @@ void PropBrw::implSetNewObject(const Reference< XPropertySet >& _rxObject)
sal_uInt16 nResId = 0; sal_uInt16 nResId = 0;
aName = ::rtl::OUString(IDEResId(RID_STR_BRWTITLE_PROPERTIES)); aName = ::rtl::OUString(IDEResId(RID_STR_BRWTITLE_PROPERTIES));
Sequence< ::rtl::OUString > aServiceNames( xServiceInfo->getSupportedServiceNames() ); if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlDialogModel" ) ) ) )
DBG_ASSERT( aServiceNames.getLength() == 1 , "PropBrw: aServiceNames.getLength() != 1" );
::rtl::OUString const & aServiceName = aServiceNames.getConstArray()[ 0 ];
if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlDialogModel") ))
{ {
nResId = RID_STR_CLASS_DIALOG; nResId = RID_STR_CLASS_DIALOG;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlButtonModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlButtonModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_BUTTON; nResId = RID_STR_CLASS_BUTTON;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlRadioButtonModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlRadioButtonModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_RADIOBUTTON; nResId = RID_STR_CLASS_RADIOBUTTON;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlCheckBoxModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlCheckBoxModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_CHECKBOX; nResId = RID_STR_CLASS_CHECKBOX;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlListBoxModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlListBoxModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_LISTBOX; nResId = RID_STR_CLASS_LISTBOX;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlComboBoxModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlComboBoxModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_COMBOBOX; nResId = RID_STR_CLASS_COMBOBOX;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlGroupBoxModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlGroupBoxModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_GROUPBOX; nResId = RID_STR_CLASS_GROUPBOX;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlEditModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlEditModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_EDIT; nResId = RID_STR_CLASS_EDIT;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFixedTextModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlFixedTextModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_FIXEDTEXT; nResId = RID_STR_CLASS_FIXEDTEXT;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlImageControlModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlImageControlModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_IMAGECONTROL; nResId = RID_STR_CLASS_IMAGECONTROL;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlProgressBarModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlProgressBarModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_PROGRESSBAR; nResId = RID_STR_CLASS_PROGRESSBAR;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlScrollBarModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlScrollBarModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_SCROLLBAR; nResId = RID_STR_CLASS_SCROLLBAR;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFixedLineModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlFixedLineModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_FIXEDLINE; nResId = RID_STR_CLASS_FIXEDLINE;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlDateFieldModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlDateFieldModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_DATEFIELD; nResId = RID_STR_CLASS_DATEFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlTimeFieldModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlTimeFieldModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_TIMEFIELD; nResId = RID_STR_CLASS_TIMEFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlNumericFieldModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlNumericFieldModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_NUMERICFIELD; nResId = RID_STR_CLASS_NUMERICFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlCurrencyFieldModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlCurrencyFieldModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_CURRENCYFIELD; nResId = RID_STR_CLASS_CURRENCYFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFormattedFieldModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlFormattedFieldModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_FORMATTEDFIELD; nResId = RID_STR_CLASS_FORMATTEDFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlPatternFieldModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlPatternFieldModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_PATTERNFIELD; nResId = RID_STR_CLASS_PATTERNFIELD;
} }
else if (aServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.awt.UnoControlFileControlModel") )) else if ( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlFileControlModel" ) ) ) )
{ {
nResId = RID_STR_CLASS_FILECONTROL; nResId = RID_STR_CLASS_FILECONTROL;
} }

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: dlgedobj.hxx,v $ * $RCSfile: dlgedobj.hxx,v $
* *
* $Revision: 1.13 $ * $Revision: 1.14 $
* *
* last change: $Author: tbe $ $Date: 2002-04-24 14:48:23 $ * last change: $Author: hr $ $Date: 2003-03-18 16:17:10 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -135,7 +135,7 @@ public:
virtual void operator= (const SdrObject& rObj); // not working yet virtual void operator= (const SdrObject& rObj); // not working yet
virtual void clonedFrom(const DlgEdObj* _pSource); // not working yet virtual void clonedFrom(const DlgEdObj* _pSource); // not working yet
virtual ::rtl::OUString GetServiceName() const; virtual sal_Bool supportsService( const sal_Char* _pServiceName ) const;
virtual ::rtl::OUString GetDefaultName() const; virtual ::rtl::OUString GetDefaultName() const;
virtual ::rtl::OUString GetUniqueName() const; virtual ::rtl::OUString GetUniqueName() const;

View File

@@ -2,9 +2,9 @@
# #
# $RCSfile: makefile.mk,v $ # $RCSfile: makefile.mk,v $
# #
# $Revision: 1.14 $ # $Revision: 1.15 $
# #
# last change: $Author: hjs $ $Date: 2002-04-18 11:35:10 $ # last change: $Author: hr $ $Date: 2003-03-18 16:17:10 $
# #
# The Contents of this file are made available subject to the terms of # The Contents of this file are made available subject to the terms of
# either of the following licenses # either of the following licenses
@@ -66,6 +66,7 @@ PRJNAME=basctl
TARGET=basctl TARGET=basctl
#svx.hid generieren #svx.hid generieren
GEN_HID=TRUE GEN_HID=TRUE
GEN_HID_OTHER=TRUE
USE_LDUMP2=TRUE USE_LDUMP2=TRUE
# --- Settings ----------------------------------------------------- # --- Settings -----------------------------------------------------
@@ -139,20 +140,6 @@ RESLIB1SRSFILES= $(SRSFILELIST)
.INCLUDE : target.mk .INCLUDE : target.mk
ALLTAR: $(SRS)$/hidother.hid
$(MISC)$/$(PRJNAME).hid : $(SRS)$/hidother.hid
$(SRS)$/hidother.hid: hidother.src
.IF "$(GUI)$(CPU)"!="WNTI" || "$(product)"!="full"
@echo nix
.ELSE
.IF "$(BUILD_SOSL)" == ""
@+echo NO HIDS!!!
@+-mhids hidother.src $(SRS) $(PRJNAME) dummy $(INCLUDE)
.ENDIF
.ENDIF
.ENDIF # "$(header)" == "" .ENDIF # "$(header)" == ""