summaryrefslogtreecommitdiff
path: root/starmath/source/smres.src
blob: a0a51268acdaa588c3db9c3b13114a46cfc6944e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include <sfx2/sfx.hrc>
#include "starmath.hrc"

String RID_FONTREGULAR
{
    Text [ en-US ] = "Standard" ;
};
String RID_FONTITALIC
{
    Text [ en-US ] = "Italic" ;
};
String RID_FONTBOLD
{
    Text [ en-US ] = "Bold" ;
};
String RID_UNDOFORMATNAME
{
    Text = "Format" ;
};
String GID_MATH
{
    Text = "StarMath" ;
};

String STR_BLACK
{
    Text [ en-US ] = "black" ;
};
String STR_BLUE
{
    Text [ en-US ] = "blue" ;
};
String STR_GREEN
{
    Text [ en-US ] = "green" ;
};
String STR_RED
{
    Text [ en-US ] = "red" ;
};
String STR_CYAN
{
    Text [ en-US ] = "cyan" ;
};
String STR_MAGENTA
{
    Text [ en-US ] = "magenta" ;
};
String STR_AQUA
{
    Text [ en-US ] = "aqua" ;
};
String STR_FUCHSIA
{
    Text [ en-US ] = "fuchsia" ;
};
String STR_GRAY
{
    Text [ en-US ] = "gray" ;
};
String STR_LIME
{
    Text [ en-US ] = "lime" ;
};
String STR_MAROON
{
    Text [ en-US ] = "maroon" ;
};
String STR_NAVY
{
    Text [ en-US ] = "navy" ;
};
String STR_OLIVE
{
    Text [ en-US ] = "olive" ;
};
String STR_PURPLE
{
    Text [ en-US ] = "purple" ;
};
String STR_SILVER
{
    Text [ en-US ] = "silver" ;
};
String STR_TEAL
{
    Text [ en-US ] = "teal" ;
};

String STR_YELLOW
{
    Text [ en-US ] = "yellow" ;
};
String STR_HIDE
{
    Text [ en-US ] = "hide" ;
};
String STR_SIZE
{
    Text [ en-US ] = "size" ;
};
String STR_FONT
{
    Text [ en-US ] = "font" ;
};

String STR_ALIGN_LEFT
{
    Text [ en-US ] = "left" ;
};
String STR_ALIGN_CENTER
{
    Text [ en-US ] = "center" ;
};
String STR_ALIGN_RIGHT
{
    Text [ en-US ] = "right" ;
};

String STR_CMDBOXWINDOW
{
    Text [ en-US ] = "Commands" ;
};

String RID_DOCUMENTSTR
{
    Text [ en-US ] = "Formula" ;
};

String STR_STATSTR_READING
{
    Text [ en-US ] = "Loading document..." ;
};

String STR_STATSTR_WRITING
{
    Text [ en-US ] = "Saving document..." ;
};

String STR_MATH_DOCUMENT_FULLTYPE_CURRENT
{
    Text [ en-US ] = "%PRODUCTNAME %PRODUCTVERSION Formula";
};

String RID_ERR_IDENT
{
    Text [ en-US ] = "ERROR : " ;
};

String RID_ERR_UNKNOWN
{
    Text [ en-US ] = "Unknown error occurred" ;
};

String RID_ERR_UNEXPECTEDCHARACTER
{
    Text [ en-US ] = "Unexpected character" ;
};

String RID_ERR_LGROUPEXPECTED
{
    Text [ en-US ] = "'{' expected" ;
};

String RID_ERR_RGROUPEXPECTED
{
    Text [ en-US ] = "'}' expected" ;
};

String RID_ERR_LBRACEEXPECTED
{
    Text [ en-US ] = "'(' expected" ;
};

String RID_ERR_RBRACEEXPECTED
{
    Text [ en-US ] = "')' expected" ;
};

String RID_ERR_FUNCEXPECTED
{
    Text [ en-US ] = "Function expected" ;
};

String RID_ERR_UNOPEREXPECTED
{
    Text [ en-US ] = "Unary operator expected" ;
};

String RID_ERR_BINOPEREXPECTED
{
    Text [ en-US ] = "Binary operator expected" ;
};

String RID_ERR_SYMBOLEXPECTED
{
    Text [ en-US ] = "Symbol expected" ;
};

String RID_ERR_IDENTEXPECTED
{
    Text [ en-US ] = "Identifier expected" ;
};

String RID_ERR_POUNDEXPECTED
{
    Text [ en-US ] = "'#' expected" ;
};

String RID_ERR_COLOREXPECTED
{
    Text [ en-US ] = "Color required" ;
};

String RID_ERR_LPARENTEXPECTED
{
    Text [ en-US ] = "Left limit expected" ;
};

String RID_ERR_RPARENTEXPECTED
{
    Text [ en-US ] = "Right limit expected" ;
};

String RID_ERR_RIGHTEXPECTED
{
    Text [ en-US ] = "'RIGHT' expected" ;
};

StringArray RID_PRINTUIOPTIONS
{
    ItemList [en-US] =
    {
        < "%PRODUCTNAME %s"; >;
        < "Contents"; >;
        < "~Title"; >;
        < "~Formula text"; >;
        < "B~orders"; >;
        < "Size"; >;
        < "O~riginal size"; >;
        < "Fit to ~page"; >;
        < "~Scaling"; >;
    };
};

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */