home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 January
/
Chip_2003-01_cd1.bin
/
zkuste
/
delphi
/
kompon
/
D34567
/
SMDBG
/
SMDBGRID.ZIP
/
Resources
/
BRA
/
SMCnst.pas
< prev
Wrap
Pascal/Delphi Source File
|
2000-06-12
|
4KB
|
154 lines
unit SMCnst;
interface
{Brazilian Portuguese strings}
{translated by Rodrigo Hjort, rodrigo_hjort@excite.com}
const
strMessage = 'Imprimir...';
strSaveChanges = 'Deseja realmente salvar alteraτ⌡es no Servidor de Banco de Dados?';
strErrSaveChanges = 'Nπo foi possφvel salvar um dado! Verifique a conexπo com o Servidor ou validaτπo de dados.';
strDeleteWarning = 'Deseja realmente excluir a tabela %s?';
strEmptyWarning = 'Deseja realmente esvaziar a tabela %s?';
const
PopUpCaption: array [0..22] of string[33] =
('Incluir registro',
'Insert registro',
'Alterar registro',
'Excluir registro',
'-',
'Imprimir ...',
'Exportar ...',
'-',
'Salvar alteraτ⌡es',
'Cancelar alteraτ⌡es',
'Atualizar',
'-',
'Selecionar/Desselecionar registros',
'Selecionar registro',
'Selecionar todos registros',
'-',
'Desselecionar registro',
'Desselecionar todos registros',
'-',
'Salvar layout da coluna',
'Abrir layout da coluna',
'-',
'Configurar...');
const //for TSMSetDBGridDialog
SgbTitle = ' Title ';
SgbData = ' Data ';
STitleCaption = 'Caption:';
STitleAlignment = 'Alignment:';
STitleColor = 'Color:';
STitleFont = 'Font:';
SWidth = 'Width:';
SWidthFix = 'characters';
SAlignLeft = 'left';
SAlignRight = 'right';
SAlignCenter = 'center';
const //for TSMDBFilterDialog
strEqual = 'equal';
strNonEqual = 'not equal';
strNonMore = 'no greater';
strNonLess = 'no less';
strLessThan = 'less than';
strLargeThan = 'greater than';
strExist = 'empty';
strNonExist = 'not empty';
strIn = 'in list';
strBetween = 'between';
strOR = 'OR';
strAND = 'AND';
strField = 'Field';
strCondition = 'Condition';
strValue = 'Value';
strAddCondition = ' Define the additional condition:';
strSelection = ' Select the records by the next conditions:';
strAddToList = 'Add to list';
strDeleteFromList = 'Delete from list';
strTemplate = 'Filter template dialog';
strFLoadFrom = 'Load from...';
strFSaveAs = 'Save as..';
strFDescription = 'Description';
strFFileName = 'File name';
strFCreate = 'Created: %s';
strFModify = 'Modified: %s';
strFProtect = 'Protect for rewrite';
strFProtectErr = 'File is protected!';
const //for SMDBNavigator
SFirstRecord = 'Primeiro registro';
SPriorRecord = 'Registro anterior';
SNextRecord = 'Pr≤ximo registro';
SLastRecord = '┌ltimo registro';
SInsertRecord = 'Inserir registro';
SCopyRecord = 'Copiar registro';
SDeleteRecord = 'Excluir registro';
SEditRecord = 'Alterar registro';
SFilterRecord = 'Condiτ⌡es de filtragem';
SFindRecord = 'Localizar registro';
SPrintRecord = 'Imprimir registros';
SExportRecord = 'Exportar registros';
SPostEdit = 'Salvar alteraτ⌡es';
SCancelEdit = 'Cancelar alteraτ⌡es';
SRefreshRecord = 'Atualizar dados';
SChoice = 'Escolher registro';
SClear = 'Limpar escolha de registro';
SDeleteRecordQuestion = 'Excluir registro?';
SDeleteMultipleRecordsQuestion = 'Deseja realmente excluir registros selecionados?';
SRecordNotFound = 'Registro nπo encontrado';
SFirstName = 'Primeiro';
SPriorName = 'Anterior';
SNextName = 'Pr≤ximo';
SLastName = '┌ltimo';
SInsertName = 'Inserir';
SCopyName = 'Copiar';
SDeleteName = 'Excluir';
SEditName = 'Alterar';
SFilterName = 'Filtrar';
SFindName = 'Localizar';
SPrintName = 'Imprimir';
SExportName = 'Exportar';
SPostName = 'Salvar';
SCancelName = 'Cancelar';
SRefreshName = 'Atualizar';
SChoiceName = 'Escolher';
SClearName = 'Limpar';
SBtnOk = '&OK';
SBtnCancel = '&Cancelar';
SBtnLoad = 'Load';
SBtnSave = 'Save';
SBtnCopy = 'Copy';
SBtnPaste = 'Paste';
SBtnClear = 'Clear';
SRecNo = '#';
SRecOf = ' of ';
const //for EditTyped
etValidNumber = 'n·mero vßlido';
etValidInteger = 'n·mero inteiro vßlido';
etValidDateTime = 'data/hora vßlida';
etValidDate = 'data vßlida';
etValidTime = 'hora vßlida';
etValid = 'vßlido';
etIsNot = 'nπo Θ um';
etOutOfRange = 'Valor %s estß fora dos limites %s..%s';
implementation
end.