Difference between revisions of "locale.name"
Jump to navigation
Jump to search
(→Syntax) |
|||
Line 13: | Line 13: | ||
== Example == | == Example == | ||
− | <source lang="lua"> | + | <source lang="lua">lang = locale.name() --Puts the current locale name in lang</source> |
<br> | <br> | ||
[[Category:locale]] | [[Category:locale]] |
Revision as of 11:43, 25 May 2011
locale.name is a function that is part of the Locale Library.
The function returns the name of the current locale.
Syntax
locale.name()
returns the name of the current local. It normally returns a two-letter language code, but in some cases it also contains a two-letter country code (ISO-639).
For instance: en, fr, it, nl_be, fr_be
Example
lang = locale.name() --Puts the current locale name in lang