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';
SSpanishMsgDlgAbort = '&Abortar';
SSpanishMsgDlgRetry = '&Reintentar';
SSpanishMsgDlgClose = '&Cerrar';
SSpanishMsgDlgWarning = 'Aviso';
SSpanishMsgDlgError = 'Error';

View File

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