home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 3
/
Meeting_Pearls_III.iso
/
Pearls
/
cdrom
/
CDDA-Player
/
YACDP_1.2
/
AREXX
/
Locale.yacdp
< prev
next >
Wrap
Text File
|
1994-12-05
|
1KB
|
38 lines
/* $VER: 1.2 © 1994 by Frank Würkner. Show usage of localized scripts. */
SIGNAL ON SYNTAX /* check syntax */
SIGNAL ON ERROR /* check if command succeeds */
OPTIONS FAILAT 6 /* ignore warnings */
ADDRESS 'YACDP' /* send to YACDP */
'GETVAR LANGUAGE'
/* -------------------------- BEGIN OF YOUR CODE ------------------------- */
select
when LANGUAGE='German' then
'REQUESTER DUMMY "AREXX" "Dieser Text ist in deiner Muttersprache!" "Ja, ich geb es zu"'
otherwise
'REQUESTER DUMMY "AREXX" "This message is in your mothertongue!" "How true"'
end
/* --------------------------- END OF YOUR CODE -------------------------- */
EXIT
SYNTAX:
select
when LANGUAGE='German' then
SAY "AREXX Fehler in Zeile" SIGL ":" ERRORTEXT(RC)
otherwise
SAY "AREXX error at line" SIGL ":" ERRORTEXT(RC)
end
EXIT
ERROR:
select
when LANGUAGE='German' then
SAY "YACDP Fehler in Zeile" SIGL ":" ERR
otherwise
SAY "YACDP error at line" SIGL ":" ERR
end
EXIT