Add %l format specifier and SetTranslationTarget() native

This commit is contained in:
Arkshine
2015-03-26 16:40:39 +01:00
parent 4d97a24dd8
commit 8831166705
3 changed files with 36 additions and 4 deletions

View File

@ -60,3 +60,16 @@ native AddTranslation(const lang[3], TransKey:key, const phrase[]);
* or LANG_SERVER
*/
native LookupLangKey(Output[], OutputSize, const Key[], &id);
/**
* Sets the global language target.
*
* @note This is useful for creating functions
* that will be compatible with the %l format specifier. Note that invalid
* indexes can be specified but the error will occur during translation,
* not during this function call.
*
* @param client Client index or LANG_SERVER
* @noreturn
*/
native SetGlobalTransTarget(client);