Copyright © 2003 Torbjörn Törnkvist
Authors: Torbjörn Törnkvist (tobbe@tornkvist.org).
| all_lang/0 | |
| all_lcs/0 | Returns the list of languages used on the server. |
| all_lcs/1 | |
| callback_mod/0 | |
| change_gettext_dir/1 | Changes the data directory used by the server and re-reads all server data from the new location. |
| change_gettext_dir/2 | |
| charset/0 | |
| copyright/0 | |
| create_date/0 | |
| default_lang/0 | Returns the default language used by the server. |
| default_lang/1 | |
| fixed_last_translator/0 | |
| fixed_revision_date/0 | |
| get_app_key/2 | |
| get_language_name/1 | |
| gettext_dir/0 | Returns the current data directory used by the server. |
| gettext_dir/1 | |
| key2str/1 | Get the translation string for a key using the current language. |
| key2str/2 | Get the translation string for a key and a specific language and/or using a named gettext server. |
| key2str/3 | Get the translation string for a key and a specific language using the named gettext server. |
| lang2cset/1 | Returns the character set used for a language. |
| lang2cset/2 | |
| lc2lang/1 | |
| mk_polish_style_header/1 | |
| org_name/0 | |
| parse_po/1 | Read and parse a PO-file. |
| parse_po_bin/1 | Parse a PO-file given as a binary. |
| recreate_db/0 | Recreates the database file from scratch. |
| recreate_db/1 | |
| reload_custom_lang/1 | Reloads the PO-file for a language. |
| reload_custom_lang/2 | |
| store_pofile/2 | Stores a binary as the new PO-file for a language. |
| store_pofile/3 | |
| team/0 | |
| unload_custom_lang/1 | Clears the data for a language from the server. |
| unload_custom_lang/2 | |
| write_pretty/2 | Pretty print PO strings. |
all_lang() -> any()
all_lcs() -> any()
Returns the list of languages used on the server
all_lcs(Server) -> any()
callback_mod() -> any()
change_gettext_dir(Dir) -> any()
Changes the data directory used by the server and re-reads all server data from the new location.
change_gettext_dir(Server, Dir) -> any()
charset() -> any()
copyright() -> any()
create_date() -> any()
default_lang() -> any()
Returns the default language used by the server.
default_lang(Server) -> any()
fixed_last_translator() -> any()
fixed_revision_date() -> any()
get_app_key(Key, Default) -> any()
get_language_name(LC) -> any()
gettext_dir() -> any()
Returns the current data directory used by the server.
gettext_dir(Server) -> any()
key2str(Key) -> any()
Get the translation string for a key using the current language.
This is usually not called directly, but via the?TXT(Key) macro.
key2str(Key, Lang) -> any()
Get the translation string for a key and a specific language and/or using a named gettext server. If no server is specified, the default server is used. If no language is specified, the current language is used.
This is usually not called directly, but via the?TXT2(Key,Lang)
macro.
key2str(Server, Key, Lang) -> any()
Get the translation string for a key and a specific language using the named gettext server.
lang2cset(Lang) -> any()
Returns the character set used for a language.
lang2cset(Server, Lang) -> any()
lc2lang(LC) -> any()
mk_polish_style_header(LC) -> any()
org_name() -> any()
parse_po(Fname) -> any()
Read and parse a PO-file.
parse_po_bin(Bin) -> any()
Parse a PO-file given as a binary.
recreate_db() -> any()
Recreates the database file from scratch.
recreate_db(Server) -> any()
reload_custom_lang(Lang) -> any()
Reloads the PO-file for a language.
reload_custom_lang(Server, Lang) -> any()
store_pofile(Lang, Binary) -> any()
Stores a binary as the new PO-file for a language.
store_pofile(Server, Lang, Binary) -> any()
team() -> any()
unload_custom_lang(Lang) -> any()
Clears the data for a language from the server.
unload_custom_lang(Server, Lang) -> any()
write_pretty(Str, Fd) -> any()
Pretty print PO strings.
Generated by EDoc