Traducción a castellano de texto de los botones

git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.TMSSoftware@16 ccf39c52-e665-a648-be6a-52d81bcb5567
This commit is contained in:
David Arranz 2009-06-29 16:00:18 +00:00
parent 89f731e463
commit 78a1ac5647
10 changed files with 13 additions and 10 deletions

View File

@ -9,6 +9,7 @@ resourcestring
SSpanishMsgDlgCancel = 'Cancelar'; SSpanishMsgDlgCancel = 'Cancelar';
SSpanishMsgDlgAbort = '&Abortar'; SSpanishMsgDlgAbort = '&Abortar';
SSpanishMsgDlgRetry = '&Reintentar'; SSpanishMsgDlgRetry = '&Reintentar';
SSpanishMsgDlgClose = '&Cerrar';
SSpanishMsgDlgWarning = 'Aviso'; SSpanishMsgDlgWarning = 'Aviso';
SSpanishMsgDlgError = 'Error'; SSpanishMsgDlgError = 'Error';

View File

@ -554,6 +554,8 @@ procedure Register;
implementation implementation
uses SpanishConsts;
{$I HTMLENGO.PAS} {$I HTMLENGO.PAS}
const const
@ -4788,18 +4790,18 @@ end;
initialization initialization
//cbOK, cbYes, cbNo, cbCancel, cbRetry, cbClose); //cbOK, cbYes, cbNo, cbCancel, cbRetry, cbClose);
ButtonCaptions[cbOK] := @SMsgDlgOK; ButtonCaptions[cbOK] := @SSpanishMsgDlgOK;
ButtonCaptions[cbYes] := @SMsgDlgYes; ButtonCaptions[cbYes] := @SSpanishMsgDlgYes;
ButtonCaptions[cbNo] := @SMsgDlgNo; ButtonCaptions[cbNo] := @SSpanishMsgDlgNo;
ButtonCaptions[cbCancel] := @SMsgDlgCancel; ButtonCaptions[cbCancel] := @SSpanishMsgDlgCancel;
ButtonCaptions[cbRetry] := @SMsgDlgRetry; ButtonCaptions[cbRetry] := @SSpanishMsgDlgRetry;
ButtonCaptions[cbClose] := @SMsgDlgAbort; ButtonCaptions[cbClose] := @SSpanishMsgDlgClose;
Captions[tiBlank] := nil; Captions[tiBlank] := nil;
Captions[tiWarning] := @SMsgDlgWarning; Captions[tiWarning] := @SSpanishMsgDlgWarning;
Captions[tiQuestion] := @SMsgDlgConfirm; Captions[tiQuestion] := @SSpanishMsgDlgConfirm;
Captions[tiError] := @SMsgDlgError; Captions[tiError] := @SSpanishMsgDlgError;
Captions[tiShield] := @SMsgDlgInformation; Captions[tiShield] := @SSpanishMsgDlgInformation;
{$IFDEF FREEWARE} {$IFDEF FREEWARE}