This repository was archived by the owner on Jun 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathlang.h
51 lines (44 loc) · 1.46 KB
/
lang.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
46
47
48
49
50
51
#ifndef LANG_H
#define LANG_H
struct Lang {
int toolbar_bitmap_id;
const char *about_spacemonger;
const char *freeware;
const char *warranty;
const char *email;
const char *ok, *cancel;
const char *bytes, *kb, *mb, *gb;
const char *freespace_format;
const char *zoomin, *zoomout, *zoomfull, *run, *del;
const char *opendrive, *rescandrive, *showfreespace;
const char *percent_format, *size_format;
const char *total, *free, *files_total, *folders_total, *files_found, *folders_found;
char digitpt, digitcomma;
const char **densitynames;
const char **colornames;
const char **monthnames;
const char **attribnames;
const char *deleting;
const char *selectdrive;
const char *scanning;
const char *settings;
const char *layout, *density, *bias, *horz, *equal, *vert;
const char *displaycolors, *files, *folders;
const char *tooltips, *shownametips, *showinfotips, *delay, *msec;
const char *fullpath, *filename, *smallicon, *icon, *datetime, *filesize, *attrib;
const char *miscoptions;
const char *autorescan, *disabledelete, *animatedzoom, *savepos;
const char *showrolloverbox;
const char *properties;
};
struct LangEntry {
const char *abbrev;
const char *name;
Lang *text;
};
extern Lang *CurLang; // Current language
extern Lang LangUs; // English (US)
extern Lang LangUk; // English (UK/Aust.)
extern Lang LangFr; // Français (Nationale)
extern LangEntry Langs[]; // List of languages
#endif