-
Notifications
You must be signed in to change notification settings - Fork 2
/
lang.c
executable file
·130 lines (129 loc) · 3.45 KB
/
lang.c
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
static const char *DefaultLanguageStringTable[SYS_UI_MSG_COUNT] = {
"System initialization error.",
"Proceed?",
"Cancel input?",
"Please fill the full game title!",
"Please fill OSD title 1!",
"Change game icon?",
"Unable to load selected icon. Continue with default icon?",
"Failed to install OSD files.",
"No harddisk drive was detected.",
"Harddisk drive not formatted. Format?\nWarning: All data will be erased.",
"Quit program?",
"Game updated successfully!",
"An error occurred while updating the game.",
"Delete game?",
"Please wait...",
"This game was already installed.\nOverwrite old installation?",
"Game installed successfully!",
"Unsupported disc inserted.\nPlease insert a Playstation 2 game disc.",
"Please insert a disc.",
"Reading disc...",
"An error occurred while reading the disc.",
"An error occurred while parsing SYSTEM.CNF.\nPlease insert another disc.",
"Cancel game installation?",
"A read fault occurred.\nPlease check the condition of your disc.",
"A write fault occurred.\nPlease send your disk for repair.",
"Lack of memory.\nPlease restart the installer.",
"Game installation canceled.",
"Failed to access partition.",
"A computer is connected to this console.\n\nPlease do not disconnect or switch off the console.",
"No icons found.",
"Error: there is no network connection.",
"Connecting to network. Please wait.",
"Error: failed to acquire an IP address from the DHCP server.",
"There is insufficient space on the HardDisk Drive (HDD) unit.",
"Saving. Please do not switch off or disconnect your console.",
"Error: failed to save settings.",
};
static const char *DefaultLanguageLabelStringTable[SYS_UI_LBL_COUNT] = {
"OK",
"Cancel",
"Yes",
"No",
"Next",
"Back",
"Enabled",
"Disabled",
"Toggle option",
"Select field",
"Select game",
"Game options",
"Delete game",
"Install game",
"Select key",
"Move cursor",
"Toggle keyboard",
"Enter",
"Backspace",
"Insert space",
"Quit program",
"Select icon",
"Select device",
"Warning",
"Error",
"Information",
"Confirmation",
"Please wait",
"Remote administration mode",
"Icon source:",
"Now installing...",
"Title:",
"Disc ID:",
"Disc type:",
"Rate:",
"Time\nremaining:",
"Full title (Max 80 characters):",
"OSD title line 1 (Max 16 characters):",
"OSD title line 2 (Max 16 characters):",
"Accurate reading:",
"Synchronous reading:",
"Unhook syscalls:",
"Disable PSS videos:",
"Emulate DVD9 support:",
"Disable IGR:",
"Unused:",
"Hide DEV9 module:",
"Use MWDMA0:",
"Memory card",
"Slot 1",
"Slot 2",
"USB mass storage",
"Default",
"Game save",
"External icon",
"Network Status",
"MAC Address",
"IP Address",
"Netmask",
"Gateway",
"Link State",
"Link Mode",
"Up",
"Down",
"Unknown",
"10Mbps HDX",
"10Mbps FDX",
"100Mbps HDX",
"100Mbps FDX",
"Flow-Control",
"Dropped Tx Frames",
"Dropped Rx Frames",
"Tx LOSSCR",
"Rx Overrun",
"Tx EDEFER",
"Rx Bad Length",
"Tx Collision",
"Rx Bad FCS",
"Tx Underrun",
"Rx Bad Alignment",
"Auto Negotiation",
"Options",
"Network Options",
"Advanced Settings",
"Use DHCP",
"Address Type",
"Sort Titles",
"Static",
"DHCP",
};