Hello guys, I'm new to gettext and have two questions. Given the "requirements" described below:
1) How would instantiation of gettext look like?
2) Where will gettext search for files?
- When changing locale, I want that to affect everything. So category is
LC_ALL
- I want to set Serbian (
sr_RS
) with character UTF8 character encoding locale -a
returnssr_RS.utf8
To clarify my question, please write an example of how would you instantiate Gettext adapter given above requirements and where will Gettext look for files given that configuration.
Thank you!