[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / class / System.Windows.Forms / Assembly / Locale.cs
blobb34eb64f7a83c9f6c2beff7c33814968333a3eaf
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 //
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 // Copyright (c) 2001-2005 Novell, Inc.
22 // Authors:
23 // Miguel de Icaza (miguel@ximian.com)
24 // Andreas Nahr (ClassDevelopment@A-SoftTech.com)
25 // Peter Bartok (pbartok@novell.com)
29 // This class is basically disabled until we decide we are going to
30 // translate winforms. There are only a handful of places where we
31 // actually use this. The GetText method has been kept so those
32 // continue to work and people can still add new ones if they choose.
33 // At any rate, we really don't need to localize images (or at least
34 // any of the ones we had).
36 using System;
37 using System.Globalization;
38 using System.Reflection;
39 using System.Resources;
41 namespace System.Windows.Forms {
42 internal static class Locale {
43 #region Local Variables
44 private static ResourceManager rm;
45 #endregion // Local Variables
47 #region Constructors
48 static Locale () {
49 rm = new ResourceManager("System.Windows.Forms", Assembly.GetExecutingAssembly());
51 #endregion
53 #region Static Properties
54 public static ResourceManager ResourceManager {
55 get {
56 return rm;
59 #endregion // Static Properties
61 #region Static Methods
62 public static string GetText (string msg) {
63 string ret = ResourceManager.GetString (msg);
64 if (ret != null)
65 return ret;
66 return msg;
68 // string ret;
70 //// This code and behaviour may change without notice. It's a placeholder until I
71 //// understand how Miguels wants localization of strings done.
72 // ret = (string)rm.GetObject(msg);
73 // if (ret != null) {
74 // return ret;
75 // }
76 // return msg;
79 public static string GetText (string msg, params object [] args) {
80 return String.Format (GetText (msg), args);
83 //public static object GetResource(string name) {
84 // return rm.GetObject(name);
85 //}
86 #endregion // Static Methods