Subversion Repositories SvarDOS

Rev

Rev 1023 | Rev 1031 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1023 Rev 1028
Line 1... Line 1...
1
#
1
#
2
# SvarCOM translation file
2
# SvarCOM language file
3
# Lang: ENGLISH
-
 
4
#
3
#
-
 
4
# Language...: English
5
# Autor: Mateusz Viste
5
# Authors....: Mateusz Viste, Robert Riebisch
-
 
6
# Last update: 05 Mar 2022
6
#
7
#
7
 
8
 
8
# GENERIC MESSAGES USED BY MULTIPLE INTERNAL COMMANDS
9
# GENERIC MESSAGES USED BY MULTIPLE INTERNAL COMMANDS
9
0.1:Invalid syntax
10
0.1:Invalid syntax
10
0.2:Invalid switch
11
0.2:Invalid switch
Line 83... Line 84...
83
17.10:Label not found
84
17.10:Label not found
84
 
85
 
85
# FOR
86
# FOR
86
18.0:Runs a specified command for each file in a set of files.
87
18.0:Runs a specified command for each file in a set of files.
87
18.1:FOR %variable IN (set) DO command [parameters]
88
18.1:FOR %variable IN (set) DO command [parameters]
88
18.2:%variable    a replaceable parameter name.
89
18.2:%variable   A replaceable parameter name. (single letter)
89
18.3:(set)        a set of one of more space-separated files. Wildcards allowed.
90
18.3:(set)       A set of one of more space-separated files. Wildcards allowed.
90
18.4:command      the command to carry out for each matched file.
91
18.4:command     The command to carry out for each matched file.
91
18.5:parameters   parameters or switches for the specified command.
92
18.5:parameters  Parameters or switches for the specified command.
92
18.6:To use FOR in a batch program, use %%variable instead of %variable.
93
18.6:To use FOR in a batch program, use %%variable instead of %variable.
93
18.7:FOR cannot be nested
94
18.7:FOR cannot be nested
94
 
95
 
95
# VERIFY
96
# VERIFY
96
19.0:Tells DOS whether to verify that files are written correctly to disk.
97
19.0:Tells DOS whether to verify that files are written correctly to disk.
Line 133... Line 134...
133
 
134
 
134
# REN / RENAME
135
# REN / RENAME
135
25.0:Renames a file
136
25.0:Renames a file
136
25.1:RENAME [drive:][path]filename1 filename2
137
25.1:RENAME [drive:][path]filename1 filename2
137
25.2:REN [drive:][path]filename1 filename2
138
25.2:REN [drive:][path]filename1 filename2
138
25.3:Note that you cannot specify a new drive or path for your destination file.\r\nUse MOVE to rename a directory, or to move files from one directory to another.
139
25.3:Note that you cannot specify a new drive or path for filename2.\r\nUse MOVE to rename a directory, or to move files from one directory to another.
139
 
140
 
140
# REM
141
# REM
141
26.0:Records comments (remarks) in a batch file or CONFIG.SYS
142
26.0:Records comments (remarks) in a batch file or CONFIG.SYS
142
26.1:REM [comment]
143
26.1:REM [comment]
143
 
144
 
Line 196... Line 197...
196
35.2:IF [NOT] string1==string2 command
197
35.2:IF [NOT] string1==string2 command
197
35.3:IF [NOT] EXIST filename command
198
35.3:IF [NOT] EXIST filename command
198
35.4:NOT               command is executed only if condition is NOT met
199
35.4:NOT               command is executed only if condition is NOT met
199
35.5:ERRORLEVEL num    condition: last program returned an exit code >= num
200
35.5:ERRORLEVEL num    condition: last program returned an exit code >= num
200
35.6:string1==string2  condition: both strings must be equal
201
35.6:string1==string2  condition: both strings must be equal
201
35.7:EXIST filename    condition: filename exists (wildcards accepted)
202
35.7:EXIST filename    condition: file filename exists (wildcards accepted)
202
35.8:command           command to carry out if condition is met
203
35.8:command           command to carry out if condition is met
203
 
204
 
204
# DEL
205
# DEL
205
36.0:Deletes one or more files.
206
36.0:Deletes one or more files.
206
36.1:DEL [drive:][path]filename [/P]
207
36.1:DEL [drive:][path]filename [/P]
Line 211... Line 212...
211
36.6:Are you sure?
212
36.6:Are you sure?
212
36.7:Delete?
213
36.7:Delete?
213
 
214
 
214
# DIR
215
# DIR
215
37.0:Displays a list of files and subdirectories in a directory.
216
37.0:Displays a list of files and subdirectories in a directory.
216
37.1:DIR [drive:][path][filename] [/P] [/W] [/A[:]attributes] [/O[[:]sortorder]] [/S] [/B] [/L]
217
37.1:DIR [drive:][path][filename] [/P] [/W] [/A[:]attributes] [/O[[:]sortorder]]\r\n    [/S] [/B] [/L]
217
37.2:/P Pauses after each screenful of information
218
37.2:/P Pauses after each screenful of information
218
37.3:/W Uses wide list format
219
37.3:/W Uses wide list format
219
37.4:/A Displays files with specified attributes:
220
37.4:/A Displays files with specified attributes:
220
37.5:    D Directories            R Read-only files        H Hidden files
221
37.5:    D Directories            R Read-only files        H Hidden files
221
37.6:    A Ready for archiving    S System files           - prefix meaning "not"
222
37.6:    A Ready for archiving    S System files           - prefix meaning "not"
222
37.7:/O List files in sorted order:
223
37.7:/O List files in sorted order:
223
37.8:    N by name                S by size                E by extension
224
37.8:    N by name                S by size                E by extension
224
37.9:    D by date                G group dirs first       - prefix to reverse order"
225
37.9:    D by date                G group dirs first       - prefix to reverse order
225
37.10:/S Displays files in specified directory and all subdirectories
226
37.10:/S Displays files in specified directory and all subdirectories
226
37.11:/B Uses bare format (no heading information or summary)
227
37.11:/B Uses bare format (no heading information or summary)
227
37.12:/L Uses lowercases
228
37.12:/L Uses lowercases
228
37.20:Directory of %s
229
37.20:Directory of %s
229
37.21:<DIR>
230
37.21:<DIR>
Line 238... Line 239...
238
38.3:/A           Indicates an ASCII text file
239
38.3:/A           Indicates an ASCII text file
239
38.4:/B           Indicates a binary file
240
38.4:/B           Indicates a binary file
240
38.5:destination  Specifies the directory and/or filename for the new file(s)
241
38.5:destination  Specifies the directory and/or filename for the new file(s)
241
38.6:/V           Verifies that new files are written correctly
242
38.6:/V           Verifies that new files are written correctly
242
38.7:To append files, specify a single file for destination, but multiple files\r\nfor source (using wildcards or file1+file2+file3 format).
243
38.7:To append files, specify a single file for destination, but multiple files\r\nfor source (using wildcards or file1+file2+file3 format).
243
38.8:NOTE: /A and /B are no-ops (ignored), provided only for compatibility reasons.
244
38.8:NOTE: /A and /B are no-ops (ignored), provided only for compatibility reasons.\r\nCOPY assumes binary always.
244
38.9:%u file(s) copied
245
38.9:%u file(s) copied
245
 
246
 
246
# DOS ERRORS
247
# DOS ERRORS
247
255.1:Function number invalid
248
255.1:Function number invalid
248
255.2:File not found
249
255.2:File not found