-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathRes.cs
473 lines (428 loc) · 15.3 KB
/
Res.cs
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Drawing;
using System.ComponentModel;
using System.Diagnostics;
using System.Reflection;
using System.Globalization;
using Microsoft.Win32;
namespace FastReport.Utils
{
/// <summary>
/// Used to get localized values from the language resource file.
/// </summary>
/// <remarks>
/// The resource file used by default is english. To load another locale, call
/// the <see cref="Res.LoadLocale(string)"/> method. It should be done at application start
/// before you use any FastReport classes.
/// </remarks>
public static partial class Res
{
private static Dictionary<CultureInfo, XmlDocument> LocalesCache { get; }
internal static CultureInfo CurrentCulture { get; private set; }
private static XmlDocument FLocale;
private static XmlDocument FBuiltinLocale;
private const string FBadResult = "NOT LOCALIZED!";
/// <summary>
/// Gets or set the folder that contains localization files (*.frl).
/// </summary>
public static string LocaleFolder
{
get
{
Report.EnsureInit();
string folder = Config.Root.FindItem("Language").GetProp("Folder");
// check the registry
#if !CROSSPLATFORM
if (String.IsNullOrEmpty(folder) && !Config.WebMode)
{
RegistryKey key = Registry.CurrentUser.OpenSubKey("Software").OpenSubKey("FastReports");
if (key != null)
{
key = key.OpenSubKey("FastReport.Net");
if (key != null)
folder = (string)key.GetValue("LocalizationFolder", "");
}
}
#endif
// get application folder
if (String.IsNullOrEmpty(folder))
folder = Config.ApplicationFolder;
return folder;
}
set
{
Config.Root.FindItem("Language").SetProp("Folder", value);
}
}
/// <summary>
/// Returns the current UI locale name, for example "en".
/// </summary>
public static string LocaleName
{
get
{
return FLocale.Root.GetProp("Name");
}
}
internal static string DefaultLocaleName
{
get { return Config.Root.FindItem("Language").GetProp("Name"); }
set { Config.Root.FindItem("Language").SetProp("Name", value); }
}
private static void LoadBuiltinLocale()
{
FLocale = new XmlDocument();
FBuiltinLocale = FLocale;
using (Stream stream = ResourceLoader.GetStream("en.xml"))
{
FLocale.Load(stream);
CultureInfo enCulture;
try
{
enCulture = CultureInfo.GetCultureInfo("en");
}
catch // InvariantGlobalization mod fix (#939)
{
enCulture = CultureInfo.InvariantCulture;
}
CurrentCulture = enCulture;
if (!LocalesCache.ContainsKey(enCulture))
LocalesCache.Add(enCulture, FLocale);
}
}
private static void SetCurrentCulture()
{
try
{
CurrentCulture = CultureInfo.GetCultureInfo(LocaleName);
}
catch
{
}
}
/// <summary>
/// Loads the locale from a file.
/// </summary>
/// <param name="fileName">The name of the file that contains localized strings.</param>
public static void LoadLocale(string fileName)
{
Report.EnsureInit();
if (File.Exists(fileName))
{
FLocale = new XmlDocument();
FLocale.Load(fileName);
SetCurrentCulture();
}
else
LoadEnglishLocale();
}
/// <summary>
/// Loads and caches the locale from <see cref="CultureInfo"/> information.
/// Notes: *.frl the localization file is looked for in <see cref="LocaleFolder"/>
/// To work correctly, it is recommended to install FastReport.Localization package
/// </summary>
/// <param name="culture"></param>
public static void LoadLocale(CultureInfo culture)
{
if (culture == CultureInfo.InvariantCulture)
{
CurrentCulture = culture;
FLocale = FBuiltinLocale;
return;
}
if (LocalesCache.ContainsKey(culture))
{
CurrentCulture = culture;
FLocale = LocalesCache[culture];
return;
}
// if culture not found, we try find parent culture
var parent = culture.Parent;
if (parent != CultureInfo.InvariantCulture)
{
if (LocalesCache.ContainsKey(parent))
{
CurrentCulture = parent;
FLocale = LocalesCache[parent];
return;
}
// in some cultures, parent have self parent
if (parent.Parent != CultureInfo.InvariantCulture)
if (LocalesCache.ContainsKey(parent.Parent))
{
CurrentCulture = parent.Parent;
FLocale = LocalesCache[parent.Parent];
return;
}
}
string localeFolder = LocaleFolder;
string localeFile = string.Empty;
if (Directory.Exists(localeFolder))
{
localeFile = FindLocaleFile(ref culture, localeFolder);
}
// Find 'Localization' directory from FastReport.Localization package
if (string.IsNullOrEmpty(localeFile))
{
localeFolder = Path.Combine(Config.ApplicationFolder, "Localization");
if (Directory.Exists(localeFolder))
{
localeFile = FindLocaleFile(ref culture, localeFolder);
}
}
if (!string.IsNullOrEmpty(localeFile))
{
Report.EnsureInit();
var newLocale = new XmlDocument();
newLocale.Load(localeFile);
CurrentCulture = culture;
FLocale = newLocale;
LocalesCache.Add(culture, newLocale);
}
}
private static string FindLocaleFile(ref CultureInfo culture, string localeFolder)
{
var files = Directory.GetFiles(localeFolder, "*.frl");
CultureInfo parent = culture.Parent;
foreach (var file in files)
{
var filename = Path.GetFileNameWithoutExtension(file);
if (filename == culture.EnglishName)
{
return file;
}
else
{
if (filename == parent.EnglishName)
{
culture = parent;
return file;
}
}
}
return null;
}
/// <summary>
/// Loads the locale from a stream.
/// </summary>
/// <param name="stream">The stream that contains localized strings.</param>
public static void LoadLocale(Stream stream)
{
Report.EnsureInit();
FLocale = new XmlDocument();
FLocale.Load(stream);
SetCurrentCulture();
}
/// <summary>
/// Loads the english locale.
/// </summary>
public static void LoadEnglishLocale()
{
CurrentCulture = CultureInfo.GetCultureInfo("en");
FLocale = FBuiltinLocale;
}
internal static void LoadDefaultLocale()
{
if (!Directory.Exists(LocaleFolder))
return;
if (String.IsNullOrEmpty(DefaultLocaleName))
{
// locale is set to "Auto"
CultureInfo currentCulture = CultureInfo.CurrentCulture;
LoadLocale(currentCulture);
}
else
{
// locale is set to specific name
LoadLocale(Path.Combine(LocaleFolder, DefaultLocaleName + ".frl"));
}
}
/// <summary>
/// Gets a string with specified ID.
/// </summary>
/// <param name="id">The resource ID.</param>
/// <returns>The localized string.</returns>
/// <remarks>
/// Since the locale file is xml-based, it may contain several xml node levels. For example,
/// the file contains the following items:
/// <code>
/// <Objects>
/// <Report Text="Report"/>
/// <Bands Text="Bands">
/// <ReportTitle Text="Report Title"/>
/// </Bands>
/// </Objects>
/// </code>
/// To get the localized "ReportTitle" value, you should pass the following ID
/// to this method: "Objects,Bands,ReportTitle".
/// </remarks>
public static string Get(string id)
{
string result = Get(id, FLocale);
// if no item found, try built-in (english) locale
if (string.IsNullOrEmpty(result))
{
if (FLocale != FBuiltinLocale)
{
result = Get(id, FBuiltinLocale);
if (string.IsNullOrEmpty(result))
result = id + " " + FBadResult;
}
else
result = id + " " + FBadResult;
}
return result;
}
private static string Get(string id, XmlDocument locale)
{
string[] categories = id.Split(',');
XmlItem xi = locale.Root;
foreach (string category in categories)
{
int i = xi.Find(category);
if (i == -1)
return null;
xi = xi[i];
}
return xi.GetProp("Text");
}
/// <summary>
/// Get builtin string.
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
public static string GetBuiltin(string id)
{
return Get(id, FBuiltinLocale);
}
/// <summary>
/// Replaces the specified locale string with the new value.
/// </summary>
/// <param name="id">Comma-separated path to the existing locale string.</param>
/// <param name="value">The new string.</param>
/// <remarks>
/// Use this method if you want to replace some existing locale value with the new one.
/// </remarks>
/// <example>
/// <code>
/// Res.Set("Messages,SaveChanges", "My text that will appear when you close the designer");
/// </code>
/// </example>
public static void Set(string id, string value)
{
string[] categories = id.Split(',');
XmlItem xi = FLocale.Root;
foreach (string category in categories)
{
xi = xi.FindItem(category);
}
xi.SetProp("Text", value);
}
/// <summary>
/// Tries to get a string with specified ID.
/// </summary>
/// <param name="id">The resource ID.</param>
/// <returns>The localized value, if specified ID exists; otherwise, the ID itself.</returns>
public static string TryGet(string id)
{
string result = Get(id);
if (result.IndexOf(FBadResult) != -1)
result = id;
return result;
}
/// <summary>
/// Tries to get builtin string with specified ID.
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
public static string TryGetBuiltin(string id)
{
string result = GetBuiltin(id);
if (string.IsNullOrEmpty(result))
result = id;
return result;
}
/// <summary>
/// Checks if specified ID exists.
/// </summary>
/// <param name="id">The resource ID.</param>
/// <returns><b>true</b> if specified ID exists.</returns>
public static bool StringExists(string id)
{
return Get(id).IndexOf(FBadResult) == -1;
}
static Res()
{
LocalesCache = new Dictionary<CultureInfo, XmlDocument>();
LoadBuiltinLocale();
ResDesignExt();
}
static partial void ResDesignExt();
}
/// <summary>
/// Used to access to resource IDs inside the specified branch.
/// </summary>
/// <remarks>
/// Using the <see cref="Res.Get(string)"/> method, you have to specify the full path to your resource.
/// Using this class, you can shorten the path:
/// <code>
/// // using the Res.Get method
/// miKeepTogether = new ToolStripMenuItem(Res.Get("ComponentMenu,HeaderBand,KeepTogether"));
/// miResetPageNumber = new ToolStripMenuItem(Res.Get("ComponentMenu,HeaderBand,ResetPageNumber"));
/// miRepeatOnEveryPage = new ToolStripMenuItem(Res.Get("ComponentMenu,HeaderBand,RepeatOnEveryPage"));
///
/// // using MyRes.Get method
/// MyRes res = new MyRes("ComponentMenu,HeaderBand");
/// miKeepTogether = new ToolStripMenuItem(res.Get("KeepTogether"));
/// miResetPageNumber = new ToolStripMenuItem(res.Get("ResetPageNumber"));
/// miRepeatOnEveryPage = new ToolStripMenuItem(res.Get("RepeatOnEveryPage"));
///
/// </code>
/// </remarks>
public class MyRes
{
private string category;
/// <summary>
/// Gets a string with specified ID inside the main branch.
/// </summary>
/// <param name="id">The resource ID.</param>
/// <returns>The localized value.</returns>
public string Get(string id)
{
if (id != "")
return Res.Get(category + "," + id);
else
return Res.Get(category);
}
/// <summary>
/// Initializes a new instance of the <see cref="MyRes"/> class with spevified branch.
/// </summary>
/// <param name="category">The main resource branch.</param>
public MyRes(string category)
{
this.category = category;
}
}
/// <summary>
/// Localized CategoryAttribute class.
/// </summary>
public class SRCategory : CategoryAttribute
{
/// <inheritdoc/>
protected override string GetLocalizedString(string value)
{
return Res.TryGet("Properties,Categories," + value);
}
/// <summary>
/// Initializes a new instance of the SRCategory class.
/// </summary>
/// <param name="value">The category name.</param>
public SRCategory(string value)
: base(value)
{
}
}
}