GNU.Gettext.GettextResourceManager Class
public class GettextResourceManager: System.Resources.ResourceManager Base Types
System.Resources.ResourceManager
  GettextResourceManager
Library
GNU.Gettext
Summary
Each instance of this class can be used to lookup translations for a
given resource name. For each 
CultureInfo, it performs the lookup
in several assemblies, from most specific over territory-neutral to
language-neutral.
See Also
GNU_Gettext.htmlGNU.Gettext Namespace Members
GettextResourceManager Constructors
#GettextResourceManager(System.String) ConstructorGettextResourceManager(System.String) Constructor #GettextResourceManager(System.String, System.Reflection.Assembly) ConstructorGettextResourceManager(System.String, System.Reflection.Assembly) Constructor GettextResourceManager Methods
#GettextResourceManager.GetPluralString(System.String, System.String, long, System.Globalization.CultureInfo) MethodGettextResourceManager.GetPluralString(System.String, System.String, long, System.Globalization.CultureInfo) Method #GettextResourceManager.GetPluralString(System.String, System.String, long) MethodGettextResourceManager.GetPluralString(System.String, System.String, long) Method #GettextResourceManager.GetString(System.String, System.Globalization.CultureInfo) MethodGettextResourceManager.GetString(System.String, System.Globalization.CultureInfo) Method #GettextResourceManager.GetString(System.String) MethodGettextResourceManager.GetString(System.String) Method GettextResourceManager(System.String) Constructor
public GettextResourceManager(System.String baseName); Summary
Constructor.
Parameters
baseNamethe resource name, also the assembly base
                       name
See Also
GNU_Gettext_GettextResourceManager.htmlGNU.Gettext.GettextResourceManager Class , GNU_Gettext.htmlGNU.Gettext Namespace GettextResourceManager(System.String, System.Reflection.Assembly) Constructor
public GettextResourceManager(System.String baseName, System.Reflection.Assembly assembly); Summary
Constructor.
Parameters
baseNamethe resource name, also the assembly base
                       name
See Also
GNU_Gettext_GettextResourceManager.htmlGNU.Gettext.GettextResourceManager Class , GNU_Gettext.htmlGNU.Gettext Namespace GettextResourceManager.GetPluralString(System.String, System.String, long, System.Globalization.CultureInfo) Method
public virtual System.String GetPluralString(System.String msgid, System.String msgidPlural, long n, System.Globalization.CultureInfo culture); Summary
Returns the translation of 
msgid and
msgidPlural in a given culture, choosing the right
plural form depending on the number 
n.
Parameters
msgidthe key string to be translated, an ASCII
                    string
msgidPluralthe English plural of msgid,
                          an ASCII string
nthe number, should be >= 0Return Value
the translation, or 
msgid or
         
msgidPlural if none is found
See Also
GNU_Gettext_GettextResourceManager.htmlGNU.Gettext.GettextResourceManager Class , GNU_Gettext.htmlGNU.Gettext Namespace GettextResourceManager.GetPluralString(System.String, System.String, long) Method
public virtual System.String GetPluralString(System.String msgid, System.String msgidPlural, long n); Summary
Returns the translation of 
msgid and
msgidPlural in the current culture, choosing the
right plural form depending on the number 
n.
Parameters
msgidthe key string to be translated, an ASCII
                    string
msgidPluralthe English plural of msgid,
                          an ASCII string
nthe number, should be >= 0Return Value
the translation, or 
msgid or
         
msgidPlural if none is found
See Also
GNU_Gettext_GettextResourceManager.htmlGNU.Gettext.GettextResourceManager Class , GNU_Gettext.htmlGNU.Gettext Namespace GettextResourceManager.GetString(System.String, System.Globalization.CultureInfo) Method
public override System.String GetString(System.String msgid, System.Globalization.CultureInfo culture); Summary
Returns the translation of 
msgid in a given culture.
Parameters
msgidthe key string to be translated, an ASCII
                    string
Return Value
the translation of 
msgid, or
         
msgid if none is found
See Also
GNU_Gettext_GettextResourceManager.htmlGNU.Gettext.GettextResourceManager Class , GNU_Gettext.htmlGNU.Gettext Namespace GettextResourceManager.GetString(System.String) Method
public override System.String GetString(System.String msgid); Summary
Returns the translation of 
msgid in the current
culture.
Parameters
msgidthe key string to be translated, an ASCII
                    string
Return Value
the translation of 
msgid, or
         
msgid if none is found
See Also
GNU_Gettext_GettextResourceManager.htmlGNU.Gettext.GettextResourceManager Class , GNU_Gettext.htmlGNU.Gettext Namespace 