home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga MA Magazine 1998 #6
/
amigamamagazinepolishissue1998.iso
/
opus
/
v5
/
compare_source
/
source
/
compare.module.cd
< prev
next >
Wrap
Text File
|
1977-12-31
|
2KB
|
90 lines
; *************************************************
; Catalog description file for compare.module
; *************************************************
;
; This is the title for requesters
MSG_TITLE (1000//)
Compare
;
; This is the title for the progress window
MSG_PROGTITLE (//)
Comparing files...
;
; The description line displayed in the list of commands
MSG_COMPARE_DESC (//)
Compare the contents of two files
;
MSG_OK_GAD (//)
OK
;
MSG_VERSREQ_FMT (//)
Error: dopus5.library version %u or higher required.
;
; There are various sanity checks in the program which may catch a bug in the code
; itself. When one of these checks fails a requester appears with the string below.
MSG_INTERNAL_ERROR (//)
Internal error!
;
MSG_EXAMFAIL (//)
Error: Couldn't examine file.
;
MSG_OPENFAIL (//)
Error: Couldn't open file.
;
MSG_READFAIL (//)
Error: Couldn't read file.
;
MSG_DIFFSIZES_FMT (//)
Warning: Files are different sizes.\nOnly the first %ld bytes will be compared.
;
; This message reports the number of bytes which are different.
; This is only shown when there are more than TWO differences (PLURAL FORM).
MSG_NUMDIFFSP_FMT (//)
There were %ld differences.
;
; As above, but when exactly one byte is different.
MSG_NUMDIFFS1_FMT (//)
There was %ld difference.
;
; As above, but when there were no differences.
MSG_NUMDIFFS0 (//)
There were no differences.
;
; These are like those above but shown in the progress window during the compare.
; The %s is replaced with the name of the second file.
MSG_DIFFPROGP_FMT (//)
%s; %ld differences...
;
MSG_DIFFPROG1_FMT (//)
%s; %ld difference...
;
MSG_DIFFPROG0_FMT (//)
%s; %ld differences...
;
MSG_OUTOFMEM (//)
Error: Out of memory.
;
MSG_DISPLAY_GAD (//)
Display
;
MSG_NODISPLAY_GAD (//)
Don't Display
;
; This string should not be longer than 30 characters.
MSG_GENERATING (//30)
Generating report...
;
MSG_ERRWRITE (//)
Couldn't write report.\n(Probably out of memory)
;
; This string is used to identify which file is on which side of the
; report's output. The first %s is replaced with the name of the left-hand
; file while the second is replaced with that of the right-hand file.
; You should make them the "Left:" and "Right:" strings the same length (pad
; with spaces on the left if you need to) for the best results.
MSG_LEFTRIGHT (//)
Left:
%s\n
Right:
%s
\n\n
;
MSG_CMPBUFFAIL (//)
Error: Couldn't allocate comparison buffers.