Module: Locale::System
- Included in:
- SystemPosix, SystemWin32
- Defined in:
- ext/gettext/locale_system.c
Constant Summary collapse
- ALL =
INT2NUM(LC_ALL)
- COLLATE =
INT2NUM(LC_COLLATE)
- CTYPE =
INT2NUM(LC_CTYPE)
- MESSAGES =
INT2NUM(LC_MESSAGES)
- MONETARY =
INT2NUM(LC_MONETARY)
- NUMERIC =
INT2NUM(LC_NUMERIC)
- TIME =
INT2NUM(LC_TIME)
Class Method Summary collapse
Class Method Details
.codeset ⇒ Object
48 49 50 |
# File 'ext/gettext/locale_system.c', line 48 static VALUE gt_codeset(self) VALUE self; |
.locale_id ⇒ Object
28 29 30 |
# File 'ext/gettext/locale_system.c', line 28 static VALUE gt_locale_id_win32(self) VALUE self; |
.set ⇒ Object
35 36 37 |
# File 'ext/gettext/locale_system.c', line 35 static VALUE gt_setlocale(self, type, locale) VALUE self, type, locale; |