mirror of
https://github.com/arcan1s/netctl-gui.git
synced 2025-04-24 23:47:21 +00:00
15 lines
354 B
C
15 lines
354 B
C
#ifndef LANGUAGE_CONFIG_H
|
|
#define LANGUAGE_CONFIG_H
|
|
|
|
|
|
// put your languages here comma separated
|
|
// the first language is default language
|
|
#define LANGUAGES "en,ja,ru"
|
|
// 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 */
|