update patch for openssl to 1.1.0h
[AROS-Contrib.git] / dopus / DOpus_Disk / strings.c
blobdb0ffb53c0f86b97fb4ee14fb5198ea7ff1b5672
1 /*
3 Directory Opus 4
4 Original GPL release version 4.12
5 Copyright 1993-2000 Jonathan Potter
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; either version 2
10 of the License, or (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 All users of Directory Opus 4 (including versions distributed
22 under the GPL) are entitled to upgrade to the latest version of
23 Directory Opus version 5 at a reduced price. Please see
24 http://www.gpsoft.com.au for more information.
26 The release of Directory Opus 4 under the GPL in NO WAY affects
27 the existing commercial status of Directory Opus 5.
31 #include "diskop.h"
33 char **string_table;
35 struct DefaultString
36 default_strings[]={
37 {STR_FORMAT_NAME,
38 "_Name"},
40 {STR_FORMAT_FFS,
41 "_Fast File System"},
43 {STR_FORMAT_INTERNATIONAL,
44 "_International Mode"},
46 {STR_FORMAT_CACHING,
47 "_Directory Caching"},
49 {STR_FORMAT_TRASHCAN,
50 "_Put Trashcan"},
52 {STR_FORMAT_VERIFY,
53 "_Verify"},
55 {STR_FORMAT_FORMAT,
56 "Format"},
58 {STR_FORMAT_QUICKFORMAT,
59 "Quick Format"},
61 {STR_FORMAT_EXIT,
62 "Exit"},
64 {STR_FORMAT_EMPTY,
65 "Empty"},
67 {STR_FORMAT_INFODISPLAY,
68 "%ld tracks, %ld bytes/trk, %s"},
70 {STR_FORMAT_FORMATTING,
71 "Formatting %ld, %ld to go"},
73 {STR_FORMAT_VERIFYING,
74 "Verifying %ld, %ld to go"},
76 {STR_FORMAT_INITIALISING,
77 "Initialising disk..."},
79 {STR_FORMAT_FORMATERROR,
80 "Format error on track %ld"},
82 {STR_FORMAT_ERRORVERIFYING,
83 "Error verifying track %ld"},
85 {STR_FORMAT_VERIFYERROR,
86 "Verify error on track %ld"},
88 {STR_SUCCESS,
89 "Operation successful"},
91 {STR_FAILED_ERROR,
92 "Operation failed"},
94 {STR_MEMORY_ERROR,
95 "Not enough memory"},
97 {STR_BITMAP_ERROR,
98 "Bitmap error"},
100 {STR_DEVICE_ERROR,
101 "Device error"},
103 {STR_NODEVICE_ERROR,
104 "Couldn't open device"},
106 {STR_RETRY,
107 "Retry"},
109 {STR_NODISKPRESENT,
110 "No disk present in %s"},
112 {STR_DISKWRITEPROTECTED,
113 "Disk in %s is write protected"},
115 {STR_ABORTED,
116 "Aborted..."},
118 {STR_FORMAT_MAKINGTRASHCAN,
119 "Creating Trashcan..."},
121 {STR_DISK_NOT_BLANK,
122 "Disk in drive %s is not blank!\n\nVolume \"%s\" contains %s.\n\n"
123 "All data will be erased.\nChoose Proceed to continue the %s."},
125 {STR_PROCEED,
126 "Proceed"},
128 {STR_CHECKING_DESTINATION,
129 "Checking destination disk..."},
131 {STR_DISKCOPY_DISKCOPY,
132 "Diskcopy"},
134 {STR_DISKCOPY_FROM,
135 "From..."},
137 {STR_DISKCOPY_TO,
138 "To..."},
140 {STR_DISKCOPY_INFODISPLAY,
141 "%s, %s used"},
143 {STR_DISKCOPY_NODISK,
144 "No disk info available"},
146 {STR_CHECKING_DISKS,
147 "Checking disk(s)..."},
149 {STR_DISKCOPY_READING,
150 "Reading %ld, %ld to go"},
152 {STR_DISKCOPY_WRITING,
153 "Writing %ld, %ld to go"},
155 {STR_DISKCOPY_READERROR,
156 "Read error on track %ld"},
158 {STR_DISKCOPY_WRITEERROR,
159 "Write error on track %ld"},
161 {STR_DISKCOPY_INSERTSOURCE,
162 "Insert source disk in %s"},
164 {STR_DISKCOPY_INSERTDEST,
165 "Insert destination disk in %s"},
167 {STR_INSTALL_INSTALL,
168 "Install"},
170 {STR_INSTALL_NOBOOT,
171 "No Boot"},
173 {STR_INSTALL_NOINFO,
174 "Bootblock info unavailable"},
176 {STR_INSTALL_NOTBOOTABLE,
177 "Disk is not bootable"},
179 {STR_INSTALL_NORMAL,
180 "Normal %s %s bootblock"},
182 {STR_INSTALL_NONSTANDARD,
183 "Non-standard bootblock"},
185 {STR_INSTALL_ERRORWRITING,
186 "Error writing bootblock!"},
188 {STR_INVALID_DISK,
189 "Disk is unsuitable for installing"},
191 {STR_INSTALL_INSTALLINGDISK,
192 "Installing disk..."},
194 {STR_CANCEL,
195 "Cancel"},
197 {STR_BUMP_NAMES,
198 "_Bump name"},
200 {STR_BUMPING_NAME,
201 "Bumping disk name..."},
203 {STR_DISKCOPY_CHECK,
204 "Check"},
206 {STR_STRING_COUNT,NULL}};
208 #ifdef STRINGS_ONLY
209 char string_type[]="DOpus_Disk strings";
210 char *string_save="DM_Disk_%s.STR";
211 #endif