mirror of
https://github.com/arcan1s/qtadds-language.git
synced 2025-04-24 15:37:19 +00:00
17 lines
403 B
C
17 lines
403 B
C
// this is an example config
|
|
// put this file into ../
|
|
#ifndef LANGUAGE_CONFIG_H
|
|
#define LANGUAGE_CONFIG_H
|
|
|
|
|
|
// put your languages here comma separated
|
|
// the first language is default language
|
|
#define LANGUAGES "en"
|
|
// language key in the configuration file
|
|
#define LANGUAGE_KEY "LANGUAGE"
|
|
// name of config section in the file if any
|
|
#define LANGUAGE_SECTION "Common"
|
|
|
|
|
|
#endif /* LANGUAGE_CONFIG_H */
|