diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/language.h | 4 | ||||
-rw-r--r-- | inc/main.h | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/inc/language.h b/inc/language.h new file mode 100644 index 0000000..1150946 --- /dev/null +++ b/inc/language.h @@ -0,0 +1,4 @@ +#include <libintl.h> + +#define POWER_ON_SIGN_TEXT dgettext(PACKAGE, "CONV_SETTING_APP_POWER_ON") +#define POWER_OFF_SIGN_TEXT dgettext(PACKAGE, "CONV_SETTING_APP_POWER_OFF")
\ No newline at end of file @@ -8,6 +8,7 @@ #include <dlog.h> #include <glib.h> #include "convergence.h" +#include "language.h" #ifdef LOG_TAG #undef LOG_TAG @@ -21,7 +22,8 @@ typedef enum state POWER_OFF = 0, POWER_ON, SCAN_START, - SCAN_STOP + SCAN_STOP, + CHANGE_LANGUAGE } state_e; |