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_en.cpp
109 lines (97 loc) · 3.81 KB
/
lang_en.cpp
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#include "stdafx.h"
#include "SpaceMonger.h"
#include "lang.h"
LangEntry Langs[] = {
{ "us", "English (US)", &LangUs },
{ "uk", "English (UK/Aust.)", &LangUk },
{ "fr", "Français (Nationale)", &LangFr },
{ NULL, NULL, NULL },
};
Lang *CurLang = &LangUs;
/////////////////////////////////////////////////////////////////////////////
static const char *densitynames[] = {
"Too Few Files", "Very Few Files", "Normal", "Lots of Files",
"Very Many Files", "Too Many Files",
};
static const char *uscolornames[] = {
"Rainbow", "Windows Colors", "White", "Light Gray", "Dark Gray",
"Red", "Orange", "Yellow", "Green", "Aqua", "Blue", "Violet",
};
static const char *monthnames[] = {
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
};
static const char *attribnames[] = {
"Arch", "Compress", "Folder", "Encrypt", "Hidden", "Offline",
"Read-Only", "Reparse-Pt", "Sparse", "System", "Temp",
};
Lang LangUs = {
IDR_TOOLBAR_EN,
"About SpaceMonger",
"THIS PROGRAM IS FREEWARE.",
"You may distribute this program freely. Because this program is"
" free, the author cannot and will not assume responsibility"
" for this program's behavior. There are no warranties of any"
" kind, expressed or implied, on this product.",
"Have questions? Found a bug? Want a feature?\n"
"E-mail to <[email protected]>.",
"OK", "Cancel",
"bytes", "Kb", "Mb", "Gb",
"<Free Space: %d.%d%%>",
"Zoom &In", "Zoom &Out", "Zoom &Full", "&Run / Open", "&Delete",
"&Open Drive...", "&Rescan Drive", "&Show Free Space",
"%lu.%01lu%%", "%lu.%01lu %s",
"Total", "Free", "Files Total:", "Folders Total:", "Files Found:", "Folders Found:",
'.', ',',
densitynames, uscolornames, monthnames, attribnames,
"Deleting...",
"Select Drive to View",
"Scanning Disk...",
"SpaceMonger Settings",
"File Layout", "Density:", "Bias:", "Horz", "Equal", "Vert",
"Display Colors", "Files", "Folders",
"ToolTips", "Show file-name-tips", "Show file-info-tips", "Delay:", "msec",
"Full Path", "Filename", "Small Icon", "Icon", "Date / Time", "File Size", "Attributes",
"Miscellaneous Options",
"Auto Rescan on Delete", "Disable \"Delete\" Command",
"Animated Zoom In / Zoom Out", "Remember Window Position",
"Show Rollover Boxes",
"Properties...",
};
static const char *ukcolornames[] = {
"Rainbow", "Windows Colours", "White", "Light Gray", "Dark Gray",
"Red", "Orange", "Yellow", "Green", "Aqua", "Blue", "Violet",
};
Lang LangUk = {
IDR_TOOLBAR_EN,
"About SpaceMonger",
"THIS PROGRAM IS FREEWARE.",
"You may distribute this program freely. Because this program is"
" free, the author cannot and will not assume responsibility"
" for this program's behavior. There are no warranties of any"
" kind, expressed or implied, on this product.",
"Have questions? Found a bug? Want a feature?\n"
"E-mail to <[email protected]>.",
"OK", "Cancel",
"bytes", "Kb", "Mb", "Gb",
"<Free Space: %d.%d%%>",
"Zoom &In", "Zoom &Out", "Zoom &Full", "&Run / Open", "&Delete",
"&Open Drive...", "&Rescan Drive", "&Show Free Space",
"%lu.%01lu%%", "%lu.%01lu %s",
"Total", "Free", "Files Total:", "Folders Total:", "Files Found:", "Folders Found:",
'.', ',',
densitynames, ukcolornames, monthnames, attribnames,
"Deleting...",
"Select Drive to View",
"Scanning Disk...",
"SpaceMonger Settings",
"File Layout", "Density:", "Bias:", "Horz", "Equal", "Vert",
"Display Colours", "Files", "Folders",
"ToolTips", "Show file-name-tips", "Show file-info-tips", "Delay:", "msec",
"Full Path", "Filename", "Small Icon", "Icon", "Date / Time", "File Size", "Attributes",
"Miscellaneous Options",
"Auto Rescan on Delete", "Disable \"Delete\" Command",
"Animated Zoom In / Zoom Out", "Remember Window Position",
"Show Rollover Boxes",
"Properties...",
};