Hi, I would like to know how can I get language keys for every language.
For example I want to hook a "dictionary" to the plugin:
(The language keys are for example [en], [fr]...)
Here is an example:
Code:
// This is the part of the plugin where i register my "dictionary".
register_dictionary("somefile.txt");
Here is the example content of somefile.txt:
Code:
[en]
something1 = This is in english.
something2 = This is also in english.
[fr]
something1 = This should be in french :P
something2 = This should also be in french.
Now how can I found out keys for the other languages?