update patch for openssl to 1.1.0h
[AROS-Contrib.git] / dopus / DOpus_Print / strings.c
bloba9f8b949831094ce8e8e8754d7dba6e24d2de204
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 "print.h"
33 char **string_table;
35 struct DefaultString
36 default_strings[]={
37 {STR_SELECT_FILE,
38 "Select file"},
40 {STR_ABORT,
41 "Abort"},
43 {STR_CONTINUE,
44 "Continue"},
46 {STR_OKAY,
47 "Okay"},
49 {STR_CANCEL,
50 "Cancel"},
52 {STR_FILE,
53 "File"},
55 {STR_TOP_MARGIN,
56 "Top Margin"},
58 {STR_BOTTOM_MARGIN,
59 "Bottom Margin"},
61 {STR_LEFT_MARGIN,
62 "Left Margin"},
64 {STR_RIGHT_MARGIN,
65 "Right Margin"},
67 {STR_TAB_SIZE,
68 "Tab size"},
70 {STR_PRINT_PITCH,
71 "Print pitch"},
73 {STR_QUALITY,
74 "Quality"},
76 {STR_EJECT,
77 "Eject final page"},
79 {STR_CONFIGURATION,
80 "configuration..."},
82 {STR_TITLE,
83 "Title"},
85 {STR_DATE,
86 "Date"},
88 {STR_PAGE_NUMBER,
89 "Page no."},
91 {STR_TEXT_STYLE,
92 "Text style"},
94 {STR_PRINTER,
95 "Printer"},
97 {STR_PRINT,
98 "Print"},
100 {STR_EXIT,
101 "Exit"},
103 {STR_OUTPUT_TO,
104 "Output to..."},
106 {STR_PICA,
107 "Pica"},
109 {STR_ELITE,
110 "Elite"},
112 {STR_FINE,
113 "Fine"},
115 {STR_NORMAL,
116 "Normal"},
118 {STR_BOLD,
119 "Bold"},
121 {STR_ITALICS,
122 "Italics"},
124 {STR_UNDERLINED,
125 "UnLined"},
127 {STR_DOUBLESTRIKE,
128 "DbStrik"},
130 {STR_SHADOW,
131 "Shadow"},
133 {STR_DRAFT,
134 "Draft"},
136 {STR_LETTER,
137 "Letter"},
139 {STR_HEADER,
140 "Header"},
142 {STR_FOOTER,
143 "Footer"},
145 {STR_SIZE,
146 "Size"},
148 {STR_PROTECTION,
149 "Protection"},
151 {STR_COMMENT,
152 "Comment"},
154 {STR_FILETYPE,
155 "File type"},
157 {STR_PRINT_DOT,
158 "Print..."},
160 {STR_PRINTDIR,
161 "Printdir"},
163 {STR_UNABLE_TO_OPEN_FILE,
164 "Unable to open file. Try again?"},
166 {STR_UNABLE_TO_OPEN_OUTPUT,
167 "Unable to open output file. Try again?"},
169 {STR_UNABLE_TO_OPEN_PRINTER,
170 "Unable to open printer. Try again?"},
172 {STR_ERROR_PRINTING_DIR,
173 "Error printing directory. Try again?"},
175 {STR_INCORRECT_PASSWORD,
176 "Incorrect password entered. Try again?"},
178 {STR_PRINT_ERROR,
179 "Print error! Try again?"},
181 {STR_REALLY_ABORT,
182 "Really abort print operation?"},
184 {STR_CREATING_FILE,
185 "Creating file"},
187 {STR_OPENING_PRINTER,
188 "Opening printer"},
190 {STR_LOADING_FILE,
191 "Loading file.."},
193 {STR_PRINTING_FILE,
194 "Printing file..."},
196 {STR_PRESS_ESCAPE,
197 "Press ESC to abort"},
199 {STR_PAGE,
200 "Page"},
202 {STR_COMPLETE,
203 "complete"},
205 {STR_STRING_COUNT,
206 NULL}};
208 #ifdef STRINGS_ONLY
209 char string_type[]="DOpus_Print strings";
210 char *string_save="DM_Print_%s.STR";
211 #endif