logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

reload_config_texts - Reloads translated strings returned by get_config_text(). Allegro game programming

Description

       Reloads the translated strings returned by  get_config_text().  This  is  useful  to  switch  to  another
       language in your program at runtime. If you want to modify the `[system]' language configuration variable
       yourself,  or  you  have switched configuration files, you will want to pass NULL to just reload whatever
       language is currently selected. Or you can pass a string containing the two letter code of  the  language
       you  desire  to  switch  to,  and  the  function  will  modify the language variable. After you call this
       function, the previously returned pointers of get_config_text() will be invalid. Example:

          ...
          /* The user selects French from a language choice menu. */
          reload_config_texts("FR");

Name

       reload_config_texts  - Reloads translated strings returned by get_config_text(). Allegro game programming
       library.

See Also

get_config_text(3alleg4), get_config_string(3alleg4)

Allegro                                           version 4.4.3                     reload_config_texts(3alleg4)

Synopsis

#include<allegro.h>voidreload_config_texts(constchar*new_language);

See Also