You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
190 lines
7.1 KiB
190 lines
7.1 KiB
;*** Translateable text for command.com resident data.
|
|
|
|
|
|
;* Input characters for critical error "Abort, Retry, Fail, Ignore?"
|
|
; and Yes/No.
|
|
|
|
Abort_Char db "A"
|
|
Retry_Char db "R"
|
|
Ignore_Char db "I"
|
|
Fail_Char db "F"
|
|
Yes_Char db "S"
|
|
No_Char db "N"
|
|
|
|
|
|
;* MESSAGES
|
|
;
|
|
; See resmsg.equ for macro definition.
|
|
|
|
|
|
;* Local messages.
|
|
|
|
msg Req_Abort, <"Abortar">
|
|
msg Req_Retry, <", Repetir">
|
|
msg Req_Ignore,<", Ignorar">
|
|
msg Req_Fail, <", Falhar">
|
|
msg Req_End, <"?">
|
|
msg MRead, <"a ler",0>
|
|
msg MWrite, <"a escrever",0>
|
|
msg BlkDevErr, <" %1 unidade %2",CR,LF>
|
|
msg CharDevErr,<" %1 dispositivo %2",CR,LF>
|
|
msg NeedVolMsg,<"Introduza volume %1 n.� s�ie %2-%3",CR,LF>
|
|
msg BadFatMsg, <"FAT inv饊ida, unidade %1",CR,LF>
|
|
msg ComBad, <"COMMAND.COM inv饊ido",CR,LF>
|
|
msg PutBackMsg,<"Introduza disco com %1 na unidade %2",CR,LF>
|
|
msg Prompt, <"Prima qualquer tecla para continuar . . .",CR,LF>
|
|
msg EndBatMes, <CR,LF,"Terminar tarefa batch (S/N)?">
|
|
msg ExecEMes, <"Imposs」el executar %1",CR,LF>
|
|
msg ExeBad, <"Erro no ficheiro EXE",CR,LF>
|
|
msg TooBig, <"Programa demasiado grande para a mem┴ia",CR,LF>
|
|
msg NoHandMes, <CR,LF,"Sem identificadores de ficheiro livres">
|
|
msg RBadNam, <"Comando ou nome de ficheiro n釅 v饊ido",CR,LF>
|
|
msg AccDen, <"Acesso negado ">
|
|
msg BMemMes, <CR,LF,"Erro de atribui䄱o de mem┴ia">
|
|
msg HaltMes, <CR,LF,"Imposs」el carregar o COMMAND, sistema parado",CR,LF>
|
|
msg FRetMes, <CR,LF,"Imposs」el come𡩣r o COMMAND, a sair",CR,LF>
|
|
msg Patricide, <CR,LF,"Processo de topo abortado, imposs」el continuar",CR,LF>
|
|
msg Newlin, <CR,LF>
|
|
|
|
;* Ptrs to message lists.
|
|
; Segment portion is 1, signalling message services to call retriever.
|
|
|
|
MsgPtrLists label dword
|
|
dw DATARES:ExtMsgPtrs,1 ; extended error messages
|
|
dw DATARES:ParsMsgPtrs,1 ; parse error messages
|
|
dw DATARES:ExtMsgPtrs,1 ; critical error messages -
|
|
; use extended error list
|
|
dw 0,0 ; file system error messages - none
|
|
dw DATARES:MsgRetrv_Trap ; address of message retriever
|
|
MySeg3 dw ? ; (segment filled in during init)
|
|
|
|
|
|
|
|
;* Critical error messages.
|
|
|
|
msg ExtErr19,<"Erro de protec䄱o contra escrita ">
|
|
msg ExtErr20,<"Unidade inv饊ida">
|
|
msg ExtErr21,<"N釅 preparado">
|
|
msg ExtErr22,<"Pedido de dispositivo inv饊ido">
|
|
msg ExtErr23,<"Erro de dados">
|
|
msg ExtErr24,<"Par�etros de pedido de dispositivo inv饊idos">
|
|
msg ExtErr25,<"Erro de procura">
|
|
msg ExtErr26,<"Tipo de media inv饊ido">
|
|
msg ExtErr27,<"Sector n釅 encontrado">
|
|
msg ExtErr28,<"Erro de impressora sem papel">
|
|
msg ExtErr29,<"Erro de falha na escrita">
|
|
msg ExtErr30,<"Erro de falha na leitura">
|
|
msg ExtErr31,<"Falha geral">
|
|
msg ExtErr32,<"Viola䄱o de partilha">
|
|
msg ExtErr33,<"Viola䄱o de bloqueio">
|
|
msg ExtErr34,<"Troca de disco inv饊ida">
|
|
msg ExtErr35,<"FCB indispon」el">
|
|
msg ExtErr36,<"Sem recursos de sistema">
|
|
msg ExtErr37,<"Discord�cia de p鮰. de c▃igos">
|
|
msg ExtErr38,<"Sem dados de entrada">
|
|
msg ExtErr39,<"Espa媤 em disco insuficiente">
|
|
|
|
; List of ptrs to critical error messages.
|
|
; Code assumes extended error number order, beginning
|
|
; with extended error number 19.
|
|
|
|
CritMsgPtrs label word
|
|
dw DATARES:ExtErr19,DATARES:ExtErr20,DATARES:ExtErr21,DATARES:ExtErr22,DATARES:ExtErr23,DATARES:ExtErr24
|
|
dw DATARES:ExtErr25,DATARES:ExtErr26,DATARES:ExtErr27,DATARES:ExtErr28,DATARES:ExtErr29,DATARES:ExtErr30
|
|
dw DATARES:ExtErr31,DATARES:ExtErr32,DATARES:ExtErr33,DATARES:ExtErr34,DATARES:ExtErr35,DATARES:ExtErr36
|
|
dw DATARES:ExtErr37,DATARES:ExtErr38,DATARES:ExtErr39
|
|
|
|
DataResEnd label byte ; end of resident portion if /msg not used
|
|
|
|
|
|
|
|
;* Parse error messages.
|
|
|
|
msg ParsErr01,<"Demasiados par�etros">
|
|
msg ParsErr02,<"Falta(m) par�etro(s) necess�io(s)">
|
|
msg ParsErr03,<"Par�etro inv饊ido">
|
|
msg ParsErr04,<"Palavra-chave inv饊ida">
|
|
msg ParsErr05,<" ">
|
|
msg ParsErr06,<"Valor do par�etro fora do intervalo permitido">
|
|
msg ParsErr07,<"Valor do par�etro n釅 permitido">
|
|
msg ParsErr08,<"Valor do par�etro n釅 permitido">
|
|
msg ParsErr09,<"Formato incorrecto do par�etro">
|
|
msg ParsErr10,<"Par�etro inv饊ido">
|
|
msg ParsErr11,<"Combina䄱o de par�tros inv饊ida">
|
|
|
|
; List of ptrs to parse error messages.
|
|
; In order, beginning with parse error number 1.
|
|
|
|
ParsMsgPtrs label word
|
|
dw DATARES:ParsErr01,DATARES:ParsErr02,DATARES:ParsErr03
|
|
dw DATARES:ParsErr04,DATARES:ParsErr05,DATARES:ParsErr06
|
|
dw DATARES:ParsErr07,DATARES:ParsErr08,DATARES:ParsErr09
|
|
dw DATARES:ParsErr10,DATARES:ParsErr11
|
|
|
|
NUMPARSMSGS equ ($ - ParsMsgPtrs) / 2 ;M033
|
|
|
|
|
|
;* Extended error messages.
|
|
|
|
msg ExtErr01,<"Fun䄱o inv饊ida">
|
|
msg ExtErr02,<"Ficheiro n釅 enontrado">
|
|
msg ExtErr03,<"Caminho n釅 encontrado">
|
|
msg ExtErr04,<"Demasiados ficheiros abertos">
|
|
msg ExtErr05,<"Acesso negado ">
|
|
msg ExtErr06,<"Identificador inv饊ido">
|
|
msg ExtErr07,<"Blocos de controlo de mem┴ia destru︸os">
|
|
msg ExtErr08,<"Mem┴ia insuficiente">
|
|
msg ExtErr09,<"Endere媤 de blocos de mem┴ia inv饊ido">
|
|
msg ExtErr10,<"Ambiente inv饊ido">
|
|
msg ExtErr11,<"Formato inv饊ido">
|
|
msg ExtErr12,<"Par�etro de fun䄱o inv饊ido">
|
|
msg ExtErr13,<"Dados inv饊idos">
|
|
|
|
msg ExtErr15,<"Especifica䄱o de unidade inv饊ida">
|
|
msg ExtErr16,<"Tentativa de remo䄱o do direct┴io actual">
|
|
msg ExtErr17,<"N釅 � o mesmo dispositivo">
|
|
msg ExtErr18,<"N釅 h� mais ficheiros">
|
|
|
|
msg ExtErr80,<"Ficheiro existe">
|
|
|
|
msg ExtErr82,<"Imposs」el criar entrada de direct┴io">
|
|
msg ExtErr83,<"Falha no INT 24">
|
|
msg ExtErr84,<"Demasiados redireccionamentos">
|
|
msg ExtErr85,<"Redireccionamento duplo">
|
|
msg ExtErr86,<"Palavra-passe inv饊ida">
|
|
msg ExtErr87,<"Par�etro inv饊ido">
|
|
msg ExtErr88,<"Falha de dados de rede">
|
|
msg ExtErr89,<"Fun䄱o n釅 suportada pela rede">
|
|
msg ExtErr90,<"Componente de sistema necess�io n釅 instalado">
|
|
|
|
; List of ptrs to extended error messages.
|
|
; In order, beginning with extended error number 1.
|
|
; Critical error messages are included here, as well as in the
|
|
; critical error message list.
|
|
; Error numbers without messages are included as null ptrs.
|
|
|
|
ExtMsgPtrs label word
|
|
dw DATARES:ExtErr01,DATARES:ExtErr02,DATARES:ExtErr03
|
|
dw DATARES:ExtErr04,DATARES:ExtErr05,DATARES:ExtErr06
|
|
dw DATARES:ExtErr07,DATARES:ExtErr08,DATARES:ExtErr09
|
|
dw DATARES:ExtErr10,DATARES:ExtErr11,DATARES:ExtErr12
|
|
dw DATARES:ExtErr13,0, DATARES:ExtErr15
|
|
dw DATARES:ExtErr16,DATARES:ExtErr17,DATARES:ExtErr18
|
|
dw DATARES:ExtErr19,DATARES:ExtErr20,DATARES:ExtErr21
|
|
dw DATARES:ExtErr22,DATARES:ExtErr23,DATARES:ExtErr24
|
|
dw DATARES:ExtErr25,DATARES:ExtErr26,DATARES:ExtErr27
|
|
dw DATARES:ExtErr28,DATARES:ExtErr29,DATARES:ExtErr30
|
|
dw DATARES:ExtErr31,DATARES:ExtErr32,DATARES:ExtErr33
|
|
dw DATARES:ExtErr34,DATARES:ExtErr35,DATARES:ExtErr36
|
|
dw DATARES:ExtErr37,DATARES:ExtErr38,DATARES:ExtErr39
|
|
dw 80-40 dup (0) ; null ptrs for errors 40-79
|
|
dw DATARES:ExtErr80,0, DATARES:ExtErr82
|
|
dw DATARES:ExtErr83,DATARES:ExtErr84,DATARES:ExtErr85
|
|
dw DATARES:ExtErr86,DATARES:ExtErr87,DATARES:ExtErr88
|
|
dw DATARES:ExtErr89,DATARES:ExtErr90
|
|
ExtMsgPtrsEnd label word
|
|
|
|
NUMEXTMSGS equ ($ - ExtMsgPtrs) / 2 ;M033
|
|
|
|
ExtMsgEnd label byte ; end of extended error messages
|
|
; = end of resident if /msg is used
|