forked from drizzt/GaiaManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.h
45 lines (38 loc) · 1.23 KB
/
i18n.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef _I18N_H
#define _I18N_H
#ifdef __cplusplus
extern "C" {
#endif
extern int region;
extern const char *const text_delfailed[];
extern const char *const text_nosplit[];
extern const char *const text_wantcopy[];
extern const char *const text_to[];
extern const char *const text_eboot[];
extern const char *const text_launcher[];
extern const char *const text_notfound[];
//extern const char *const text_wantexit[];
extern const char *const text_wantdel[];
extern const char *const text_wantuse[];
extern const char *const text_toinstall[];
extern const char *const text_cover_msg[];
extern const char *const text_fix_permission[];
// Graphics
extern const char *const text_launch[];
extern const char *const text_copy[];
extern const char *const text_download[];
extern const char *const text_delete[];
extern const char *const text_refresh[];
extern const char *const text_check[];
extern const char *const text_discless[];
extern const char *const text_mempatch[];
extern const char *const text_directboot[];
extern const char *const text_ftpserver[];
extern const char *const text_ommode[];
extern const char *const text_homebrew[];
extern const char *const text_game[];
#ifdef __cplusplus
}
#endif
#endif
/* vim: set ts=4 sw=4 sts=4 tw=120 */