Chameleon

Chameleon Commit Details

Date:2011-10-23 10:06:52 (12 years 6 months ago)
Author:blackosx
Commit:1653
Parents: 1652
Message:Merge latest trunk chnages in to my branch.
Changes:
M/branches/blackosx/package/Resources/pt-PT.lproj/Localizable.strings
M/branches/blackosx/i386/boot2/boot.h
M/branches/blackosx/package/Resources/mk.lproj/Localizable.strings
M/branches/blackosx/package/Resources/fr.lproj/Localizable.strings
M/branches/blackosx/package/Resources/es.lproj/Localizable.strings
M/branches/blackosx/package/Resources/hr.lproj/Localizable.strings
M/branches/blackosx/package/Resources/pl.lproj/Localizable.strings
M/branches/blackosx/package/Resources/it.lproj/Localizable.strings
M/branches/blackosx/i386/modules/Keylayout/layouts/cham-mklayout.c
M/branches/blackosx/i386/libsaio/fake_efi.c
M/branches/blackosx/package/Resources/zh_TW.lproj/Welcome.rtfd/TXT.rtf
M/branches/blackosx/package/Resources/sr.lproj/Localizable.strings
M/branches/blackosx/package/Resources/pt-BR.lproj/Localizable.strings
M/branches/blackosx/package/Resources/ru.lproj/Localizable.strings
M/branches/blackosx/i386/boot2/options.c
M/branches/blackosx/package/Resources/de.lproj/Localizable.strings
M/branches/blackosx/package/Resources/zh_CN.lproj/Welcome.rtfd/TXT.rtf
M/branches/blackosx/package/Resources/zh_TW.lproj/Localizable.strings
M/branches/blackosx/package/Resources/id.lproj/Localizable.strings
M/branches/blackosx
M/branches/blackosx/i386/boot2/boot.c
M/branches/blackosx/package/Resources/zh_CN.lproj/Localizable.strings

File differences

branches/blackosx/i386/libsaio/fake_efi.c
620620
621621
622622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
623638
624639
625640
......
683698
684699
685700
701
702
703
686704
687705
688706
}
/*
* Populate the chosen node
*/
void setupChosenNode()
{
Node *chosenNode;
chosenNode = DT__FindNode("/chosen", false);
if (chosenNode == 0)
stop("Couldn't get chosen node");
int bootUUIDLength = strlen(gBootUUIDString);
if (bootUUIDLength)
DT__AddProperty(chosenNode, "boot-uuid", bootUUIDLength + 1, gBootUUIDString);
}
/*
* Load the smbios.plist override config file if any
*/
static void setupSmbiosConfigFile(const char *filename)
gST64->Hdr.CRC32 = 0;
gST64->Hdr.CRC32 = crc32(0L, gST64, gST64->Hdr.HeaderSize);
}
// Setup the chosen node
setupChosenNode();
}
void saveOriginalSMBIOS(void)
branches/blackosx/i386/boot2/boot.c
7272
7373
7474
75
75
7676
7777
7878
static chargCacheNameAdler[64 + 256];
char*gPlatformName = gCacheNameAdler;
chargRootDevice[512];
chargRootDevice[ROOT_DEVICE_SIZE];
chargMKextName[512];
chargMacOSVersion[8];
intbvCount = 0, gDeviceCount = 0;
branches/blackosx/i386/boot2/boot.h
147147
148148
149149
150
150151
151152
152153
......
224225
225226
226227
227
228
229
228
229
230
231
232
230233
231234
232235
* A global set by boot() to record the device that the booter
* was loaded from.
*/
#define ROOT_DEVICE_SIZE 512
extern int gBIOSDev;
extern long gBootMode;
extern bool sysConfigValid;
/*
* options.c
*/
extern int getBootOptions(bool firstRun);
extern int processBootOptions();
extern int selectAlternateBootDevice(int bootdevice);
extern char gBootUUIDString[];
extern int getBootOptions(bool firstRun);
extern int processBootOptions();
extern int selectAlternateBootDevice(int bootdevice);
extern bool promptForRescanOption(void);
void showHelp();
branches/blackosx/i386/boot2/options.c
10631063
10641064
10651065
1066
10661067
10671068
10681069
......
10711072
10721073
10731074
1075
1076
1077
10741078
10751079
10761080
......
10811085
10821086
10831087
1084
10851088
1089
10861090
10871091
10881092
......
11021106
11031107
11041108
1105
1109
1110
11061111
11071112
11081113
......
11191124
11201125
11211126
1122
1123
1124
1127
1128
11251129
11261130
11271131
......
11311135
11321136
11331137
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1138
1139
1140
1141
1142
1143
1144
1145
1146
11451147
11461148
11471149
......
12211223
12221224
12231225
1224
1225
1226
1227
1228
1229
1226
1227
1228
12301229
12311230
12321231
12331232
1234
1235
1236
1233
1234
1235
12371236
1238
1239
1240
1241
1237
1238
1239
1240
12421241
12431242
1244
1245
1246
1247
1248
1243
1244
1245
12491246
1250
1247
1248
1249
1250
12511251
1252
1252
1253
12531254
12541255
12551256
......
12571258
12581259
12591260
1260
1261
12611262
12621263
12631264
......
12761277
12771278
12781279
1279
1280
1281
12801282
12811283
12821284
//==========================================================================
char gBootUUIDString[32+4+1] = ""; // UUID of the boot volume e.g. 5EB1869F-C4FA-3502-BDEB-3B8ED5D87292
extern unsigned char chainbootdev;
extern unsigned char chainbootflag;
int argLen = argName ? strlen(argName) : 0;
int len = argLen + cnt + 1; // +1 to account for space
if (argName)
len++; // +1 to account for '='
if (len > *cntRemainingP) {
error("Warning: boot arguments too long, truncating\n");
return false;
*argP += argLen;
*argP[0] = '=';
(*argP)++;
len++; // +1 to account for '='
}
strncpy( *argP, val, cnt );
*argP += cnt;
*argP[0] = ' ';
const char *configTable,
char **argP, // Output value
int *cntRemainingP, // Output count
char *foundVal // found value
char *foundVal, // found value
int foundValSize // max found value size
)
{
const char *val;
copyArgument(argName, val, cnt, argP, cntRemainingP);
found = true;
}
if (found && foundVal) {
strlcpy(foundVal, val, cnt+1);
}
if (found && foundVal)
strlcpy(foundVal, val, foundValSize);
return found;
}
int
processBootOptions()
{
const char * cp = gBootArgs;
const char * val = 0;
const char * kernel;
int cnt;
int userCnt;
int cntRemaining;
char * argP;
char uuidStr[64];
bool uuidSet = false;
char * configKernelFlags;
char * valueBuffer;
const char *cp = gBootArgs;
const char *val = 0;
const char *kernel;
int cnt;
int userCnt;
int cntRemaining;
char *argP;
char *configKernelFlags;
char *valueBuffer;
valueBuffer = malloc(VALUE_SIZE);
configKernelFlags = malloc(cnt + 1);
strlcpy(configKernelFlags, val, cnt + 1);
if (processBootArgument(kBootUUIDKey, cp, configKernelFlags, bootInfo->config, &argP, &cntRemaining, 0)) {
// boot-uuid was set either on the command-line
// or in the config file.
uuidSet = true;
} else {
// boot-uuid can be set either on the command-line or in the config file
if (!processBootArgument(kBootUUIDKey, cp, configKernelFlags, bootInfo->config,
&argP, &cntRemaining, gBootUUIDString, sizeof(gBootUUIDString))) {
//
// Try an alternate method for getting the root UUID on boot helper partitions.
//
if (gBootVolume->flags & kBVFlagBooter)
{
if((loadHelperConfig(&bootInfo->helperConfig) == 0)
&& getValueForKey(kHelperRootUUIDKey, &val, &cnt, &bootInfo->helperConfig) )
{
// Load the configuration store in the boot helper partition
if (loadHelperConfig(&bootInfo->helperConfig) == 0)
{
getValueForKey(kHelperRootUUIDKey, &val, &cnt, &bootInfo->helperConfig);
copyArgument(kBootUUIDKey, val, cnt, &argP, &cntRemaining);
uuidSet = true;
}
val = getStringForKey(kHelperRootUUIDKey, &bootInfo->helperConfig);
if (val != NULL)
strlcpy(gBootUUIDString, val, sizeof(gBootUUIDString));
}
}
if (!uuidSet && gBootVolume->fs_getuuid && gBootVolume->fs_getuuid (gBootVolume, uuidStr) == 0) {
verbose("Setting boot-uuid to: %s\n", uuidStr);
copyArgument(kBootUUIDKey, uuidStr, strlen(uuidStr), &argP, &cntRemaining);
uuidSet = true;
}
// Try to get the volume uuid string
if (!strlen(gBootUUIDString) && gBootVolume->fs_getuuid)
gBootVolume->fs_getuuid(gBootVolume, gBootUUIDString);
}
// If we have the volume uuid add it to the commandline arguments
if (strlen(gBootUUIDString))
copyArgument(kBootUUIDKey, gBootUUIDString, strlen(gBootUUIDString), &argP, &cntRemaining);
}
if (!processBootArgument(kRootDeviceKey, cp, configKernelFlags, bootInfo->config, &argP, &cntRemaining, gRootDevice)) {
if (!processBootArgument(kRootDeviceKey, cp, configKernelFlags, bootInfo->config,
&argP, &cntRemaining, gRootDevice, ROOT_DEVICE_SIZE)) {
cnt = 0;
if ( getValueForKey( kBootDeviceKey, &val, &cnt, &bootInfo->chameleonConfig)) {
valueBuffer[0] = '*';
strlcpy(valueBuffer + 1, val, cnt);
val = valueBuffer;
} else {
if (uuidSet) {
if (strlen(gBootUUIDString)) {
val = "*uuid";
cnt = 5;
} else {
/*
* Removed. We don't need this anymore.
*
if (!processBootArgument(kPlatformKey, cp, configKernelFlags, bootInfo->config, &argP, &cntRemaining, gPlatformName)) {
if (!processBootArgument(kPlatformKey, cp, configKernelFlags, bootInfo->config,
&argP, &cntRemaining, gPlatformName, sizeof(gCacheNameAdler))) {
getPlatformName(gPlatformName);
copyArgument(kPlatformKey, gPlatformName, strlen(gPlatformName), &argP, &cntRemaining);
}
branches/blackosx/i386/modules/Keylayout/layouts/cham-mklayout.c
1414
1515
1616
17
17
1818
1919
2020
#include <errno.h>
#include "stdint.h"
#include "term.h"
#include "keylayout.h"
#include "Keylayout.h"
#define PACKAGE_NAME"chameleon"
#define PROGRAM_VERSION"1.0"
branches/blackosx/package/Resources/zh_TW.lproj/Welcome.rtfd/TXT.rtf
2525
2626
2727
28
28
2929
3030
3131
......
4141
4242
4343
44
44
\f0 : %DEVELOP%\
\
\f1 \'b7\'50\'c1\'c2\'a8\'f3\'a7\'55
\f1 \'b7\'50\'c1\'c2
\f0 : %CREDITS%\
\pard\tx360\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural
\fs26 \cf0 Copyright \'a9 2011
\f2\b \'b7\'ad\'d7\'67
\f0 : crazybirdy, ultimate}
\f0 : crazybirdy, Ulimate}
branches/blackosx/package/Resources/id.lproj/Localizable.strings
1
1
2
3
4
5
6
7
8
9
10
11
12
13
214
315
416
517
618
719
8
20
921
1022
1123
......
1527
1628
1729
30
31
1832
19
33
2034
2135
2236
......
4256
4357
4458
45
59
60
61
4662
47
4863
4964
5065
......
5570
5671
5772
73
74
5875
76
77
5978
6079
6180
6281
6382
6483
65
66
84
85
6786
6887
6988
7089
71
90
91
92
93
94
95
7296
7397
7498
75
76
99
100
77101
102
103
104
105
106
107
78108
79109
80110
81111
82112
83113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
84137
85138
86139
87
88
140
141
89142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
90157
91158
92159
93
94
95
96
97
98
99160
100161
101162
......
105166
106167
107168
108
109
110
169
170
111171
112
113
172
173
114174
115
116
175
117176
118
119
177
178
120179
121
122
180
181
123182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
124215
125216
126217
127218
128219
129220
130
131
132
133
134
135
136
137
138
139221
140222
141223
142
143
224
225
226
144227
145
146
228
229
147230
148
149
231
232
150233
151
152
234
235
153236
154
155
237
238
156239
157
158
240
241
159242
160
161
162243
163
164
244
245
246
165247
166
167
168
169
170
171
172
173
174
175248
176249
177250
......
190263
191264
192265
193
194
195
196266
197
198
267
268
269
199270
200
201
271
272
202273
203
204
274
275
205276
206
207
277
278
208279
209
210
280
281
211282
212
213
214283
215
216
284
285
286
287
288
217289
218
219
290
291
220292
221
222
293
294
295
223296
224
225
297
298
299
226300
227
228
301
302
303
229304
305
306
307
308
309
310
311
312
313
314
315
316
230317
231318
232319
233320
234321
235
236
237322
238
239
323
324
325
326
327
328
329
240330
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
331
332
257333
// Error strings
// ----------------------------------------------------------------------------
"ERROR_BOOTVOL" = "Perangkat lunak ini harus dipasang pada media boot.";
"ERROR_INSTALL" = "Media ini tidak memenuhi syarat untuk pembaruan.";
"Newer_Package_Installed_message" = "Versi terbaru dari Chameleon sudah terpasang.";
"Intel_Mac_message" = "Perangkat lunak ini tidak dapat dipasang di komputer ini.";
// ============================================================================
// Bootloader
// ----------------------------------------------------------------------------
"Chameleon_title" = "Chameleon";
"Chameleon_description" = "Chameleon memerlukan tiga berkas penting. (dalam kondisi sederhana)
boot0 (Pada drive MBR) bertanggung jawab dalam memuat boot1.
boot1 (Pada boot-sector partisi) untuk menemukan boot2.
boot2 (Pada root-folder partisi) untuk memuat kernel, dll.";
"Standard_title" = "Chameleon Standar";
"Standard_title" = "Chameleon Standard";
"Standard_description" = "Opsi pemasangan ini memasang ketiga berkas penting dan membuat berkas boot0 ke 440 bytes pertama dari MBR, jadi tidak akan merusak bagian Sistem Operasi Windows. Kemudian boot0 mencari berkas boot1h pada partisi pertama yang aktif.
* Metode pemasangan ini mengaktifasi pilihan partisi yang anda sudah pilih.";
"noboot_title" = "Nihil";
"noboot_description" = "Tidak memasang Chameleon (berguna jika Anda hanya ingin memasang komponen tambahan)";
// ============================================================================
// Modules
// ----------------------------------------------------------------------------
"Module_title" = "Modul Chameleon";
"Module_description" = "Sistem modul terintegrasi dalam Chameleon memungkinkan pengguna atau programmer untuk memperluas fungsionalitas dasar Chameleon tanpa perlu mengganti file master boot tersebut.";
Sumber: http://www.kernel.org/pub/linux/libs/klibc/";
"AutoReso_title" = "Resolusi";
"AutoReso_description" = "Modul ini membaca informasi EDID dari monitor terpasang ke tampilan utama. Modul tidak langsung terintegrasi ke dalam bagasi 'trunk' dan telah digunakan seminimal mungkin pada saat dijalankan. Selain itu, modul akan patch mode vesa tersedia dalam pra intel hd kartu grafis untuk memberikan resolusi yang tepat saat booting.";
"AutoReso_description" = "Modul ini membaca informasi EDID dari monitor terpasang ke tampilan utama.
Modul tidak langsung terintegrasi ke dalam bagasi 'trunk' dan telah digunakan seminimal mungkin pada saat dijalankan.
Selain itu, modul akan patch mode vesa tersedia dalam pra intel hd kartu grafis untuk memberikan resolusi yang tepat saat booting.";
"uClibc_title" = "uClibc++";
"uClibc_description" = "Modul ini menyediakan minimalisme librari runtime c++ untunk digunakan pada modul lainnya.
Modul ini tidak menyediakan fungsionalitas dengan sendirinya, melainkan digunakan untuk memungkinkan untuk bahasa c + + untuk dipakai dalam modul lainnya.
"Keylayout_title" = "Keylayout";
"Keylayout_description" = "This module permits the user to define the keyboard key mappings.";
// ============================================================================
// Utility
// These are currently unused!!!
// ----------------------------------------------------------------------------
"Utility_title" = "Utility";
"Utility_description" = "Berkas tambahan untuk membantu pemasangan";
"PrefPanel_title" = "Preference Panel";
"PrefPanel_description" = "Memasang Panel Preferensi untuk Chameleon.";
"SMBIOSDefault_title" = "SMBIOS.plist";
"SMBIOSDefault_description" = "Menyalin contoh berkas smbios.plist di /Extra/Configuration.";
"SMBIOS_title" = "SMBIOS.plist";
"SMBIOS_description" = "Menyalin contoh berkas smbios.plist di /Extra/Configuration.";
"Documentation_title" = "Dokumentasi";
"Documentation_description" = "Dokumentasi untuk pemasangan manual dan pemakaian Chameleon";
// Options
// ============================================================================
// Boot Options - The follow options are split to match the layout OptionalSettings text files.
// but they can be changed to suit however anyone wants to do it.
// ----------------------------------------------------------------------------
"Options_title" = "Opsi Boot";
"Options_description" = "Membuat berkas /Extra/com.apple.Boot.plist dan memilih pilihan anda untuk mengontrol pengaturan Chameleon anda.";
"arch_title" = "arch=i386";
"arch_description" = "Jalankan kernel dalam mode 32bit daripada mode biasanya (mode 64bit).";
"BootBanner_title" = "BootBanner=No";
"BootBanner_description" = "Menyembunyikan Judul pada tampilan awal Chameleon pada modus GUI.";
"GUI_title" = "GUI=No";
"GUI_description" = "Menonaktifkan GUI.";
"LegacyLogo_title" = "LegacyLogo=Yes";
"LegacyLogo_description" = "Menggunakan logo asli apple (abu-abu pada latar belakang putih) pada saat proses booting daripada berkas boot.png yang ada pada tema.";
"InstantMenu_title" = "InstantMenu=Yes";
"InstantMenu_description" = "Menampilkan pilihan partisi tanpa adanya waktu time-out.";
"QuietBoot_title" = "QuietBoot=Yes";
"QuietBoot_description" = "Mengaktifkan mode 'sunyi' (tanpa pesan ataupun pertanyaan).";
"ShowInfo_title" = "ShowInfo=Yes
"ShowInfo_description" = "Menon-aktifkan rincian resolusi layar dan partisi.";
"Wait_title" = "Wait=Yes";
"Wait_description" = "Memberhentikan sejenak proses boot setelah Chameleon selesai mengatur konfigurasinya dan menunggu untuk tombol untuk ditekan sebelum memulai mach kernel. Berguna pada saat dikombinasikan dengan 'verbose boot' untuk memecahkan masalah.";
// ----------------------------------------------------------------------------
"arch_title" = "arch=i386";
"arch_description" = "Jalankan kernel dalam mode 32bit daripada mode biasanya (mode 64bit).";
"EHCIacquire_title" = "EHCIacquire=Yes";
"EHCIacquire_description" = "Mengaktifkan opsi untuk membetulkan semua isu kepemilikan EHCI yang dikarenakan BIOS yang rusak.";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"EthernetBuiltIn_description" = "Mengaktifkan opsi dalam menambah integrasi (built-in) ke perangkat ethernet anda.";
"ForceHPET_title" = "ForceHPET=Yes";
"ForceHPET_description" = "Menghidupkan HPET pada chipset Intel, untuk BIOS yang tidak menyertakan opsi ini.";
"ForceWake_title" = "ForceWake=Yes";
"ForceWake_description" = "Opsi ini mengizinkan anda untuk melewati 'bad sleep images'.";
"RestartFix_title" = "RestartFix=No";
"RestartFix_description" = "Menonaktifkan perbaikan pada 'proses mulai-ulang secara otomatis.' ";
"ShowInfo_title" = "ShowInfo=No";
"ShowInfo_description" = "Menon-aktifkan rincian resolusi layar dan partisi.";
"UHCIreset_title" = "UHCIreset=Yes";
"UHCIreset_description" = "Mengaktifkan opsi untuk mengatur-ulang pengontrol UHCI sebelum menyalakan OSX.";
"UseMemDetect_title" = "UseMemDetect=No";
"UseMemDetect_description" = "Mematikan opsi pengenalan RAM yang secara otomatis dinyalakan.";
"UseKernelCache_title" = "UseKernelCache=Yes";
"UseKernelCache_description" = "For Lion only. Enables loading of the pre-linked kernel. This will ignore /E/E and /S/L/E. ONLY use this is you have know it contains everything you need.";
"Wake_title" = "Wake=Yes";
"Wake_description" = "Mencoba untuk memuat sleep image yang telah disimpan.";
// ----------------------------------------------------------------------------
"CSTUsingSystemIO_title" = "New - Generate C-States=Yes";
"CSTUsingSystemIO_description" = "C-State Baru! Metode generasi CST dengan menggunakan registrasi SystemIO daripada FixedHW.";
"DropSSDT_title" = "DropSSDT=Yes";
"DropSSDT_description" = "Menghiraukan tabel SSDT motherboard yang terintegrasi.";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"EthernetBuiltIn_description" = "Mengaktifkan opsi dalam menambah integrasi (built-in) ke perangkat ethernet anda.";
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"GraphicsEnabler_description" = "Mengaktifkan opsi untuk mendeteksi otomatis GPU berbasis NVIDIA dan memasukkan info-info yang benar.";
"EnableC2State_title" = "EnableC2State=Yes";
"EnableC2State_description" = "Mengaktifkan bagian spesifik power Prosesor tertentu, C2.";
"EnableC4State_title" = "EnableC4State=Yes";
"EnableC4State_description" = "Mengaktifkan bagian spesifik power Prosesor tertentu,C4.";
// Advanced
"Advanced_title" = "Opsi Boot lanjutan";
"Advanced_description" = "Membuat berkas /Extra/com.apple.Boot.plist dan memilih pilihan lanjutan anda untuk mengontrol pengaturan Chameleon anda.";
"GenerateCStates_title" = "Generate C-States=Yes";
"GenerateCStates_description" = "Mengaktifkan secara otomatis processor C-States.";
"Npci_title" = "npci=0x2000";
"Npci_description" = "Mengatur bootflag npci=0x2000 pada Kernel Flags";
"GeneratePStates_title" = "Generate P-States=Yes";
"GeneratePStates_description" = "Mengaktifkan secara otomatis processor P-States.";
"BootBanner_title" = "BootBanner=No";
"BootBanner_description" = "Menyembunyikan Judul pada tampilan awal Chameleon pada modus GUI.";
// ----------------------------------------------------------------------------
"LegacyLogo_title" = "LegacyLogo=Yes";
"LegacyLogo_description" = "Menggunakan logo asli apple (abu-abu pada latar belakang putih) pada saat proses booting daripada berkas boot.png yang ada pada tema.";
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "Set Graphics Mode to 1024x600x32";
"SMBIOSdefaults_title" = "SMBIOSdefaults=Yes";
"SMBIOSdefaults_description" = "Mengaktifkan opsi standar SMBIOS.";
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "Set Graphics Mode to 1024x768x32";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "Set Graphics Mode to 1280x768x32";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "Set Graphics Mode to 1280x800x32";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "Set Graphics Mode to 1280x1024x32";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "Set Graphics Mode to 1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "Set Graphics Mode to 1440x900x32";
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "Set Graphics Mode to 1600x900x32";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "Set Graphics Mode to 1680x1050x32";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "Set Graphics Mode to 1920x1080x32";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "Set Graphics Mode to 1920x1200x32";
// ----------------------------------------------------------------------------
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"GraphicsEnabler_description" = "Mengaktifkan opsi untuk mendeteksi otomatis GPU berbasis NVIDIA dan memasukkan info-info yang benar.";
"UseAtiROM_title" = "UseAtiROM=Yes";
"UseAtiROM_description" = "Mengaktifkan opsi 'Gunakan ROM ATi'.";
"UseNvidiaROM_title" = "UseNvidiaROM=Yes";
"UseNvidiaROM_description" = "Mengaktifkan opsi 'Gunakan ROM nVidia'.";
"Wait_title" = "Wait=Yes";
"Wait_description" = "Memberhentikan sejenak proses boot setelah Chameleon selesai mengatur konfigurasinya dan menunggu untuk tombol untuk ditekan sebelum memulai mach kernel. Berguna pada saat dikombinasikan dengan 'verbose boot' untuk memecahkan masalah.";
"Wake_title" = "Wake=Yes";
"Wake_description" = "Mencoba untuk memuat sleep image yang telah disimpan.";
"GUI_title" = "GUI=No";
"GUI_description" = "Menonaktifkan GUI.";
"VBIOS_title" = "VBIOS=Yes";
"VBIOS_description" = "Mengaktifkan opsi VBIOS.";
"GenerateCStates_title" = "Generate C-States=Yes";
"GenerateCStates_description" = "Mengaktifkan secara otomatis processor C-States.";
// ----------------------------------------------------------------------------
// Boot options - KERNEL FLAGS
// ----------------------------------------------------------------------------
"GeneratePStates_title" = "Generate P-States=Yes";
"GeneratePStates_description" = "Mengaktifkan secara otomatis processor P-States.";
"Verbose_title" = "Verbose Mode";
"Verbose_description" = "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting.";
"CSTUsingSystemIO_title" = "New - Generate C-States=Yes";
"CSTUsingSystemIO_description" = "C-State Baru! Metode generasi CST dengan menggunakan registrasi SystemIO daripada FixedHW.";
"Singleusermode_title" = "Single User Mode";
"Singleusermode_description" = "A troubleshooting option used for booting into OS X's BSD/Unix command line.";
"ForceHPET_title" = "ForceHPET=Yes";
"ForceHPET_description" = "Menghidupkan HPET pada chipset Intel, untuk BIOS yang tidak menyertakan opsi ini.";
"Ignorecaches_title" = "Ignore Caches";
"Ignorecaches_description" = "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches.";
"ForceWake_title" = "ForceWake=Yes";
"ForceWake_description" = "Opsi ini mengizinkan anda untuk melewati 'bad sleep images'.";
"Npci_title" = "npci=0x2000";
"Npci_description" = "Mengatur bootflag npci=0x2000 pada Kernel Flags";
"EHCIacquire_title" = "EHCIacquire=Yes";
"EHCIacquire_description" = "Mengaktifkan opsi untuk membetulkan semua isu kepemilikan EHCI yang dikarenakan BIOS yang rusak.";
"Darkwake_title" = "darkwake=0";
"Darkwake_description" = "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep.";
"UHCIreset_title" = "UHCIreset=Yes";
"UHCIreset_description" = "Mengaktifkan opsi untuk mengatur-ulang pengontrol UHCI sebelum menyalakan OSX.";
"UseMemDetect_title" = "UseMemDetect=No";
"UseMemDetect_description" = "Mematikan opsi pengenalan RAM yang secara otomatis dinyalakan.";
// ----------------------------------------------------------------------------
// Boot options - KEYLAYOUTS
// ----------------------------------------------------------------------------
"UseKernelCache_title" = "UseKernelCache=Yes";
"UseKernelCache_description" = "Yes will load pre-linked kernel and will ignore /Extra/Extensions
and /System/Library/Extensions Extensions.mkext.
Default is No but Yes if you use Lion on a Raid partition.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Set keylayout to use";
"mac-de_title" = "German Mac Keyboard";
"mac-de_description" = "Use the keyboard layout for a German Mac keyboard";
"pc-fr_title" = "French PC Keyboard";
"pc-fr_description" = "Use the keyboard layout for a French PC keyboard";
// Resolution
"Resolution_title" = "Resolusi";
"Resolution_description" = "Mengatur resolusi layar anda";
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "1024x600x32";
// ----------------------------------------------------------------------------
// Boot options - THEMES
// ----------------------------------------------------------------------------
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "1024x768x32";
"Embed_title" = "Embed";
"Embed_description" = "Versi simple yang lebih kecil daripada tema dasar yang baru digunakan para seat membuat versi dari Chameleon yang dimana memerlukan sebuah tema yang 'embedded'. ";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "1280x768x32";
"Legacy_title" = "Legacy";
"Legacy_description" = "Tampilan dasar awal Chameleon";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "1280x800x32";
"Default_title" = "Standard";
"Default_description" = "Tampilan dasar baru Chameleon.";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "1280x1024x32";
"Bullet_title" = "Bullet";
"Bullet_description" = "A lovely simple theme by NoSmokingBandit from April 2009.";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "1440x900x32";
// ============================================================================
// The filenames from OptionalSettings text files' become sub menu headings.
// These sub menu headings need titles and descriptions.
// ----------------------------------------------------------------------------
// Control
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "1600x900x32";
"Control_title" = "Control Options";
"Control_description" = "Settings to control how Chameleon works.";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "1680x1050x32";
// General
"General_title" = "General Options";
"General_description" = "Choose from a selection of base options.";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "1920x1080x32";
// KernelFlags
"KernelFlags_title" = "Kernel Flags";
"KernelFlags_description" = "Choose from a selection of kernel flags.";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "1920x1200x32";
// PowerManagement
"PowerManagement_title" = "Power Management";
"PowerManagement_description" = "A selection of options that deal with power management and speedstep.";
// Resolution
"Resolution_title" = "Resolusi";
"Resolution_description" = "Mengatur resolusi layar anda";
// Video
"Video_title" = "Video";
"Video_description" = "A selection of options that deal with video.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Set one keylayout to use, or select 'None' if you don't want to select a keylayout.";
// Themes
"Themes_title" = "Tema";
"Themes_description" = "Koleksi dari tema bawaan
More themes can be found at http://forum.voodooprojects.org/index.php/board,7.0.html";
"Embed_title" = "Embed";
"Embed_description" = "Versi simple yang lebih kecil daripada tema dasar yang baru digunakan para seat membuat versi dari Chameleon yang dimana memerlukan sebuah tema yang 'embedded'. ";
"Legacy_title" = "Legacy";
"Legacy_description" = "Tampilan dasar awal Chameleon";
// ============================================================================
// Exclusive boot options string - These are added automatically by buildpkg
// Name to be used should be ChooseNone-xxxxxx
// Where xxxxx = the name of the BootOptions file (minus the .txt)
// ----------------------------------------------------------------------------
"ChooseNone-Resolution_title" = "None";
"ChooseNone-Resolution_description" = "Don't choose a resolution.";
"Default_title" = "Standard";
"Default_description" = "Tampilan dasar baru Chameleon.";
// Extras
"Extras_title" = "Extras";
"Extras_description" = "Koleksi dari beberapa perkakas yang berguna";
"SMBios_title" = "SMBIOS Override";
"SMBios_description" = "Pasang SMBIOS overrides dasar pada smbios.plist di Extra";
// Error strings
"ERROR_BOOTVOL" = "Perangkat lunak ini harus dipasang pada media boot.";
"ERROR_INSTALL" = "Media ini tidak memenuhi syarat untuk pembaruan.";
"Newer_Package_Installed_message" = "Versi terbaru dari Chameleon sudah terpasang.";
"Intel_Mac_message" = "Perangkat lunak ini tidak dapat dipasang di komputer ini.";
"ChooseNone-keylayout_title" = "None";
"ChooseNone-keylayout_description" = "Don't choose a keylayout.";
branches/blackosx/package/Resources/zh_CN.lproj/Welcome.rtfd/TXT.rtf
2525
2626
2727
28
28
2929
3030
3131
......
4141
4242
4343
44
44
\f0 : %DEVELOP%\
\
\f1 \'b7\'50\uc0\u35874 \u21327 \'a7\'55
\f1 \'b7\'50\uc0\u35874
\f0 : %CREDITS%\
\pard\tx360\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural
\fs26 \cf0 Copyright \'a9 2011
\f2\b \'b7\'ad\'d2\'eb
\f0 : crazybirdy, ultimate}
\f0 : crazybirdy, Ulimate}
branches/blackosx/package/Resources/pt-PT.lproj/Localizable.strings
1
1
2
3
4
5
6
7
8
9
10
11
12
13
214
315
416
......
1426
1527
1628
29
30
1731
18
32
1933
2034
2135
......
3751
3852
3953
40
54
4155
56
57
4258
59
60
4361
4462
4563
......
5270
5371
5472
55
73
74
75
76
77
78
5679
5780
5881
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
9982
10083
10184
85
86
87
10288
10389
10490
105
106
91
92
10793
108
109
94
95
11096
111
112
97
98
11399
114100
115101
116102
117
118
103
119104
120
121
105
106
122107
123
124
108
109
125110
126
127
111
112
128113
129
130
131
132
133
134
135114
136115
137116
138117
139118
140119
141
142
120
121
143122
144123
145124
......
148127
149128
150129
151
152
153
130
154131
155
156
157
132
133
158134
159
160
135
161136
162
163
137
138
164139
165
166
140
141
167142
168
169
143
144
170145
171
172
146
147
173148
174
175
149
150
176151
177
178
179
152
153
180154
155
156
157
158
159
181160
182
161
183162
184163
185
164
186165
187166
188
167
189168
190169
191
170
192171
193172
194
173
195174
196175
197
176
198177
199178
200
179
201180
202181
203
182
204183
205184
206
185
207186
208187
209
188
210189
211190
212
191
213192
214
215
216
217
193
218194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
219254
220255
221256
......
225260
226261
227262
228
229
230
263
264
231265
232
233
234266
235
236
237
267
268
269
270
271
238272
239
240
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
241316
// Error strings
// ----------------------------------------------------------------------------
// ============================================================================
// Bootloader
// ----------------------------------------------------------------------------
"Chameleon_title" = "Chameleon Bootloader";
// ============================================================================
// Modules
// ----------------------------------------------------------------------------
"Keylayout_title" = "Keylayout";
"Keylayout_description" = "This module permits the user to define the keyboard key mappings.";
// ============================================================================
// Utility
// These are currently unused!!!
// ----------------------------------------------------------------------------
// Options
// ============================================================================
// Boot Options - The follow options are split to match the layout OptionalSettings text files.
// but they can be changed to suit however anyone wants to do it.
// ----------------------------------------------------------------------------
"arch_title" = "arch=i386";
"InstantMenu_title" = "InstantMenu=Yes";
"QuietBoot_title" = "QuietBoot=Yes";
"RestartFix_title" = "RestartFix=No";
"ShowInfo_title" = "ShowInfo=No";
"DropSSDT_title" = "DropSSDT=Yes";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"EnableC2State_title" = "EnableC2State=Yes";
"EnableC3State_title" = "EnableC3State=Yes";
"EnableC4State_title" = "EnableC4State=Yes";
// Advanced
"Npci_title" = "npci=0x2000";
"BootBanner_title" = "BootBanner=No";
"GUI_title" = "GUI=No";
"LegacyLogo_title" = "LegacyLogo=Yes";
"SMBIOSdefaults_title" = "SMBIOSdefaults=Yes";
"InstantMenu_title" = "InstantMenu=Yes";
"UseAtiROM_title" = "UseAtiROM=Yes";
"QuietBoot_title" = "QuietBoot=Yes";
"UseNvidiaROM_title" = "UseNvidiaROM=Yes";
"ShowInfo_title" = "ShowInfo=Yes";
"Wait_title" = "Wait=Yes";
"Wake_title" = "Wake=Yes";
// ----------------------------------------------------------------------------
"GUI_title" = "GUI=No";
"arch_title" = "arch=i386";
"VBIOS_title" = "VBIOS=Yes";
"EHCIacquire_title" = "EHCIacquire=Yes";
"GenerateCStates_title" = "Generate C-States=Yes";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"GeneratePStates_title" = "Generate P-States=Yes";
"CSTUsingSystemIO_title" = "Novo - Generate C-States=Yes";
"ForceHPET_title" = "ForceHPET=Yes";
"ForceWake_title" = "ForceWake=Yes";
"EHCIacquire_title" = "EHCIacquire=Yes";
"RestartFix_title" = "RestartFix=No";
"UHCIreset_title" = "UHCIreset=Yes";
"UseKernelCache_title" = "UseKernelCache=Yes";
"UseKernelCache_description" = "Yes will load pre-linked kernel and will ignore /Extra/Extensions
and /System/Library/Extensions Extensions.mkext.
Default is No but Yes if you use Lion on a Raid partition.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Set keylayout to use";
"Wake_title" = "Wake=Yes";
"mac-de_title" = "German Mac Keyboard";
"mac-de_description" = "Use the keyboard layout for a German Mac keyboard";
// ----------------------------------------------------------------------------
"mac-es_title" = "Spanish Mac Keyboard";
"mac-es_description" = "Use the keyboard layout for a Spanish Mac keyboard";
"CSTUsingSystemIO_title" = "Novo - Generate C-States=Yes";
"mac-fr_title" = "French Mac Keyboard";
"mac-fr_description" = "Use the keyboard layout for a French Mac keyboard";
"DropSSDT_title" = "DropSSDT=Yes";
"mac-it_title" = "Italian Mac Keyboard";
"mac-it_description" = "Use the keyboard layout for an Italian Mac keyboard";
"EnableC2State_title" = "EnableC2State=Yes";
"mac-se_title" = "Swedish Mac Keyboard";
"mac-se_description" = "Use the keyboard layout for a Swedish Mac keyboard";
"EnableC3State_title" = "EnableC3State=Yes";
"pc-fr_title" = "French PC Keyboard";
"pc-fr_description" = "Use the keyboard layout for a French PC keyboard";
"EnableC4State_title" = "EnableC4State=Yes";
// Resolution
"GenerateCStates_title" = "Generate C-States=Yes";
"GeneratePStates_title" = "Generate P-States=Yes";
// ----------------------------------------------------------------------------
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "1024x600x32";
"1024x600x32_description" = "Set Graphics Mode to 1024x600x32";
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "1024x768x32";
"1024x768x32_description" = "Set Graphics Mode to 1024x768x32";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "1280x768x32";
"1280x768x32_description" = "Set Graphics Mode to 1280x768x32";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "1280x800x32";
"1280x800x32_description" = "Set Graphics Mode to 1280x800x32";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "1280x1024x32";
"1280x1024x32_description" = "Set Graphics Mode to 1280x1024x32";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "1280x960x32";
"1280x960x32_description" = "Set Graphics Mode to 1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "1440x900x32";
"1440x900x32_description" = "Set Graphics Mode to 1440x900x32";
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "1600x900x32";
"1600x900x32_description" = "Set Graphics Mode to 1600x900x32";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "1680x1050x32";
"1680x1050x32_description" = "Set Graphics Mode to 1680x1050x32";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "1920x1080x32";
"1920x1080x32_description" = "Set Graphics Mode to 1920x1080x32";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "1920x1200x32";
"1920x1200x32_description" = "Set Graphics Mode to 1920x1200x32";
// Themes
"Themes_title" = "Temas";
"Themes_description" = "Alguns exemplos de tema.
Mais temas podem ser encontrados em http://forum.voodooprojects.org/index.php/board,7.0.html";
// ----------------------------------------------------------------------------
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"UseAtiROM_title" = "UseAtiROM=Yes";
"UseNvidiaROM_title" = "UseNvidiaROM=Yes";
"VBIOS_title" = "VBIOS=Yes";
// ----------------------------------------------------------------------------
// Boot options - KERNEL FLAGS
// ----------------------------------------------------------------------------
"Verbose_title" = "Verbose Mode";
"Verbose_description" = "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting.";
"Singleusermode_title" = "Single User Mode";
"Singleusermode_description" = "A troubleshooting option used for booting into OS X's BSD/Unix command line.";
"Ignorecaches_title" = "Ignore Caches";
"Ignorecaches_description" = "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches.";
"Npci_title" = "npci=0x2000";
"Darkwake_title" = "darkwake=0";
"Darkwake_description" = "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep.";
// ----------------------------------------------------------------------------
// Boot options - KEYLAYOUTS
// ----------------------------------------------------------------------------
"mac-es_title" = "Teclado Mac Espanhol";
"mac-es_description" = "Usa o layout para teclado Mac Espanhol.";
"mac-it_title" = "Teclado Mac Italiano";
"mac-it_description" = "Usa o layout para teclado Mac Italiano.";
"mac-se_title" = "Teclado Mac Sueco";
"mac-se_description" = "Usa o layout para teclado Mac Sueco.";
// ----------------------------------------------------------------------------
// Boot options - THEMES
// ----------------------------------------------------------------------------
"Embed_title" = "Embed";
"Default_title" = "Standard";
// Extras
"Extras_title" = "Extras";
"Bullet_title" = "Bullet";
"Bullet_description" = "O tema Bullet por NoSmokingBandit";
"SMBios_title" = "Substituir SMBIOS";
// Error strings
// ============================================================================
// The filenames from OptionalSettings text files' become sub menu headings.
// These sub menu headings need titles and descriptions.
// ----------------------------------------------------------------------------
// Control
"Control_title" = "Control Options";
"Control_description" = "Settings to control how Chameleon works.";
// General
"General_title" = "General Options";
"General_description" = "Choose from a selection of base options.";
// KernelFlags
"KernelFlags_title" = "Kernel Flags";
"KernelFlags_description" = "Choose from a selection of kernel flags.";
// PowerManagement
"PowerManagement_title" = "Power Management";
"PowerManagement_description" = "A selection of options that deal with power management and speedstep.";
// Resolution
// Video
"Video_title" = "Video";
"Video_description" = "A selection of options that deal with video.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Configura o layout de teclado a ser usado.";
// Themes
"Themes_title" = "Temas";
"Themes_description" = "Alguns exemplos de tema.
Mais temas podem ser encontrados em http://forum.voodooprojects.org/index.php/board,7.0.html";
// ============================================================================
// Exclusive boot options string - These are added automatically by buildpkg
// Name to be used should be ChooseNone-xxxxxx
// Where xxxxx = the name of the BootOptions file (minus the .txt)
// ----------------------------------------------------------------------------
"ChooseNone-Resolution_title" = "None";
"ChooseNone-Resolution_description" = "Don't choose a resolution.";
"ChooseNone-keylayout_title" = "None";
"ChooseNone-keylayout_description" = "Don't choose a keylayout.";
branches/blackosx/package/Resources/es.lproj/Localizable.strings
1
1
2
3
4
5
6
7
8
9
10
11
12
213
314
415
516
17
18
619
7
820
......
114142
115143
144
145
116146
147
148
117149
118150
119151
120152
121
122
123153
......
140176
141177
142
178
179
180
181
182
143183
144184
145185
146
147
148186
187
188
189
190
191
192
149193
150194
151195
152196
153
154
155197
156
157
158198
159
160
199
200
161201
202
203
204
162205
163206
164207
165
166
167208
209
210
211
212
213
214
215
216
217
218
// Error strings+
// ----------------------------------------------------------------------------+
"ERROR_BOOTVOL" = "Este software debe ser instalado en el volumen de inicio.";+
+
"Intel_Mac_message" = "Este software no puede ser instalado en este ordenador.";+
+
+
// ============================================================================+
// Bootloader+
// ----------------------------------------------------------------------------+
"Chameleon_title" = "Bootloader Chameleon";
+
// ============================================================================+
// Modules
+// ----------------------------------------------------------------------------
+
// ============================================================================+
// Utility
// These are currently unused!!!+
// ----------------------------------------------------------------------------+
"Utility_title" = "Utilidades";
"SMBIOSDefault_title" = "SMBIOS.plist";+"SMBIOS_title" = "SMBIOS.plist";
"SMBIOSDefault_description" = "Copia un ejemplo de Perfil smbios.plist en /Extra/Configuration.";+"SMBIOS_description" = "Copia un ejemplo de Perfil smbios.plist en /Extra/Configuration.";
// Options+
// ============================================================================+
// Boot Options - The follow options are split to match the layout OptionalSettings text files.+
// but they can be changed to suit however anyone wants to do it.+
// ----------------------------------------------------------------------------+
+
"Options_title" = "Opciones de Arranque";
"arch_title" = "arch=i386";+"BootBanner_title" = "BootBanner=No";
"GUI_title" = "GUI=No";+
+
"LegacyLogo_title" = "LegacyLogo=Yes";+
"LegacyLogo_description" = "Usar el tradicional logo de Apple (gris sobre blanco) durante el arranque en pantalla, en vez de la imagen boot.png del tema.";+
+
"InstantMenu_title" = "InstantMenu=Yes";
"RestartFix_title" = "RestartFix=No";+"ShowInfo_title" = "ShowInfo=Yes";
"ShowInfo_title" = "ShowInfo=No";+"Wait_title" = "Wait=Yes";
"DropSSDT_title" = "DropSSDT=Yes";+// ----------------------------------------------------------------------------
"DropSSDT_description" = "Descarta las tablas SSDT anexas a la placa base.";+
"arch_title" = "arch=i386";+
"arch_description" = "Carga el kernel en modo 32bit, en vez de usar el modo por defecto de 64bit.";+
"EHCIacquire_title" = "EHCIacquire=Yes";+
+
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";+"ForceHPET_title" = "ForceHPET=Yes";
"ForceWake_title" = "ForceWake=Yes";+
+
"RestartFix_title" = "RestartFix=No";+
+
"UHCIreset_title" = "UHCIreset=Yes";+
"UHCIreset_description" = "Reconfigura los controladores UHCI antes de iniciar OS X.";+
+
"UseMemDetect_title" = "UseMemDetect=No";+
branches/blackosx/package/Resources/fr.lproj/Localizable.strings
1
1
2
3
4
5
6
7
8
9
10
11
12
13
214
315
416
......
1426
1527
1628
29
30
1731
18
32
1933
2034
2135
......
5670
5771
5872
73
74
5975
76
77
6078
6179
6280
......
6987
7088
7189
72
90
91
92
93
94
95
7396
7497
7598
76
77
99
100
78101
102
103
104
105
106
107
79108
80109
81110
82111
83112
84113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
85137
86138
87139
88
89
140
141
90142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
91157
92158
93159
94
95
96
97
98
99
100160
101161
102162
......
106166
107167
108168
109
110
111
169
170
112171
113
114
172
173
115174
116
117
175
118176
119
120
177
178
121179
122
123
180
181
124182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
125215
126216
127217
128218
129219
130220
131
132
133
134
135
136
137
138
139
140221
141222
142223
143
144
224
225
226
145227
146
147
228
229
148230
149
150
231
232
151233
152
153
234
235
154236
155
156
237
238
157239
158
159
240
241
160242
161
162
163243
164
165
244
245
246
166247
167
168
169
170
171
172
173
174
175
176248
177249
178250
251
252
253
179254
180255
181256
182
183
184
185257
186258
187259
......
191263
192264
193265
194
195
196
197266
198
199
267
268
269
200270
201
202
271
272
203273
204
205
274
275
206276
207
208
277
278
209279
210
211
280
281
212282
213
214
215283
216
217
284
285
286
287
288
218289
219
220
290
291
221292
222
223
293
294
295
224296
225
226
297
298
299
227300
228
229
301
302
303
230304
305
306
307
308
309
310
311
312
313
314
315
316
231317
232318
233319
234320
235321
236
237
238322
239
240
323
324
325
326
327
328
329
241330
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
331
332
258333
// Error strings
// ----------------------------------------------------------------------------
// ============================================================================
// Bootloader
// ----------------------------------------------------------------------------
"Chameleon_title" = "Chameleon";
"Chameleon_description" = "Chameleon requiert trois fichiers essentiels:
boot0 (Sur le MBR du disque) il est responsable du chargement de boot1.
"noboot_description" = "Utile si vous ne voulez installer que les Extras.";
// ============================================================================
// Modules
// ----------------------------------------------------------------------------
"Module_title" = "Modules Chameleon";
"Keylayout_title" = "Keylayout";
"Keylayout_description" = "Ce module permet de changer le plan de codage du clavier.";
// ============================================================================
// Utility
// These are currently unused!!!
// ----------------------------------------------------------------------------
"Utility_title" = "Utilitaires";
"Utility_description" = "Fichiers optionnels pour aider lors de l'installation";
"Documentation_title" = "Documentation";
"Documentation_description" = "Installe le manuel d'installation et d'utilisation de Chameleon";
// Options
// ============================================================================
// Boot Options - The follow options are split to match the layout OptionalSettings text files.
// but they can be changed to suit however anyone wants to do it.
// ----------------------------------------------------------------------------
"Options_title" = "Boot Options";
"Options_description" = "Create an /Extra/org.chameleon.Boot.plist and select your desired options to control Chameleon's settings.";
"arch_title" = "arch=i386";
"arch_description" = "Boots the kernel in 32bit mode rather than the default 64bit mode.";
"BootBanner_title" = "BootBanner=No";
"BootBanner_description" = "Hides Chameleon's boot banner in GUI.";
"GUI_title" = "GUI=No";
"LegacyLogo_title" = "LegacyLogo=Yes";
"LegacyLogo_description" = "Use the legacy (grey on white) apple logo on the boot screen rather than the boot.png in the theme.";
"InstantMenu_title" = "InstantMenu=Yes";
"InstantMenu_description" = "Display the partition selection screen without showing the timeout screen.";
"QuietBoot_title" = "QuietBoot=Yes";
"QuietBoot_description" = "Enable quiet boot mode (no messages or prompt).";
"ShowInfo_title" = "ShowInfo=Yes";
"ShowInfo_description" = "Enables display of partition and resolution details.";
"Wait_title" = "Wait=Yes";
"Wait_description" = "Pauses the boot process after Chameleon has finished it's setup then waits for a key press before it starts the mach kernel. Useful when combined with verbose boot for troubleshooting.";
// ----------------------------------------------------------------------------
"arch_title" = "arch=i386";
"arch_description" = "Boots the kernel in 32bit mode rather than the default 64bit mode.";
"EHCIacquire_title" = "EHCIacquire=Yes";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"EthernetBuiltIn_description" = "ajoute EthernetBuiltIn=y au fichier com.apple.Boot.plist, cette option ajoutera 'built-in' a votre carte ethernet.";
"ForceHPET_title" = "ForceHPET=Yes";
"ForceHPET_description" = "ajoute ForceHPET=y to com.apple.Boot.plist, Cette option active HPET sur les chipsets intel,(pour les bios qui n'ont pas cette options).";
"ForceWake_title" = "ForceWake=Yes";
"RestartFix_title" = "RestartFix=No";
"RestartFix_description" = "Disables the automatically enabled restart fix.";
"ShowInfo_title" = "ShowInfo=No";
"ShowInfo_description" = "Disables display of partition and resolution details.";
"UHCIreset_title" = "UHCIreset=Yes";
"UseMemDetect_title" = "UseMemDetect=No";
"UseMemDetect_description" = "Disables the automatically enabled RAM recognition.";
"UseKernelCache_title" = "UseKernelCache=Yes";
"UseKernelCache_description" = "For Lion only. Enables loading of the pre-linked kernel. This will ignore /E/E and /S/L/E. ONLY use this is you have know it contains everything you need.";
"Wake_title" = "Wake=Yes";
"Wake_description" = "Attempts to load the sleep image saved from last hibernation.";
// ----------------------------------------------------------------------------
"CSTUsingSystemIO_title" = "New - Generate C-States=Yes";
"CSTUsingSystemIO_description" = "New C-State _CST generation method using SystemIO registers instead of FixedHW.";
"DropSSDT_title" = "DropSSDT=Yes";
"DropSSDT_description" = "Discard the motherboard's built-in SSDT tables.";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"EthernetBuiltIn_description" = "ajoute EthernetBuiltIn=y au fichier com.apple.Boot.plist, cette option ajoutera 'built-in' a votre carte ethernet.";
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"GraphicsEnabler_description" = "Enables the option to autodetect NVIDIA based GPUs and inject the correct info.";
"EnableC2State_title" = "EnableC2State=Yes";
"EnableC2State_description" = "Enable specific Processor power state, C2.";
"EnableC4State_title" = "EnableC4State=Yes";
"EnableC4State_description" = "Enable specific Processor power state, C4.";
// Advanced
"Advanced_title" = "Advanced";
"Advanced_description" = "Select your advanced desired options to control Chameleon's settings.";
"GenerateCStates_title" = "Generate C-States=Yes";
"GenerateCStates_description" = "Enable auto generation of processor idle sleep states (C-States).";
"Npci_title" = "npci=0x2000";
"Npci_description" = "Set the flag npci=0x2000 for the Kernel Flags";
"GeneratePStates_title" = "Generate P-States=Yes";
"GeneratePStates_description" = "Enable auto generation of processor power performance states (P-States).";
"BootBanner_title" = "BootBanner=No";
"BootBanner_description" = "Hides Chameleon's boot banner in GUI.";
// ----------------------------------------------------------------------------
"LegacyLogo_title" = "LegacyLogo=Yes";
"LegacyLogo_description" = "Use the legacy (grey on white) apple logo on the boot screen rather than the boot.png in the theme.";
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "Set Graphics Mode to 1024x600x32";
"SMBIOSdefaults_title" = "SMBIOSdefaults=Yes";
"SMBIOSdefaults_description" = "Enables SMBIOSdefaults options.";
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "Set Graphics Mode to 1024x768x32";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "Set Graphics Mode to 1280x768x32";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "Set Graphics Mode to 1280x800x32";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "Set Graphics Mode to 1280x1024x32";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "Set Graphics Mode to 1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "Set Graphics Mode to 1440x900x32";
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "Set Graphics Mode to 1600x900x32";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "Set Graphics Mode to 1680x1050x32";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "Set Graphics Mode to 1920x1080x32";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "Set Graphics Mode to 1920x1200x32";
// ----------------------------------------------------------------------------
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"GraphicsEnabler_description" = "Enables the option to autodetect NVIDIA based GPUs and inject the correct info.";
"UseAtiROM_title" = "UseAtiROM=Yes";
"UseAtiROM_description" = "Enables UseAtiROM options.";
"UseNvidiaROM_title" = "UseNvidiaROM=Yes";
"UseNvidiaROM_description" = "Enables UseNvidiaROM options.";
"Wait_title" = "Wait=Yes";
"Wait_description" = "Pauses the boot process after Chameleon has finished it's setup then waits for a key press before it starts the mach kernel. Useful when combined with verbose boot for troubleshooting.";
"Wake_title" = "Wake=Yes";
"Wake_description" = "Attempts to load the sleep image saved from last hibernation.";
"GUI_title" = "GUI=No";
"VBIOS_title" = "VBIOS=Yes";
"VBIOS_description" = "Enables VBIOS option";
"GenerateCStates_title" = "Generate C-States=Yes";
"GenerateCStates_description" = "Enable auto generation of processor idle sleep states (C-States).";
// ----------------------------------------------------------------------------
// Boot options - KERNEL FLAGS
// ----------------------------------------------------------------------------
"GeneratePStates_title" = "Generate P-States=Yes";
"GeneratePStates_description" = "Enable auto generation of processor power performance states (P-States).";
"Verbose_title" = "Verbose Mode";
"Verbose_description" = "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting.";
"CSTUsingSystemIO_title" = "New - Generate C-States=Yes";
"CSTUsingSystemIO_description" = "New C-State _CST generation method using SystemIO registers instead of FixedHW.";
"Singleusermode_title" = "Single User Mode";
"Singleusermode_description" = "A troubleshooting option used for booting into OS X's BSD/Unix command line.";
"ForceHPET_title" = "ForceHPET=Yes";
"ForceHPET_description" = "ajoute ForceHPET=y to com.apple.Boot.plist, Cette option active HPET sur les chipsets intel,(pour les bios qui n'ont pas cette options).";
"Ignorecaches_title" = "Ignore Caches";
"Ignorecaches_description" = "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches.";
"ForceWake_title" = "ForceWake=Yes";
"Npci_title" = "npci=0x2000";
"Npci_description" = "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code.";
"EHCIacquire_title" = "EHCIacquire=Yes";
"Darkwake_title" = "darkwake=0";
"Darkwake_description" = "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep.";
"UHCIreset_title" = "UHCIreset=Yes";
"UseMemDetect_title" = "UseMemDetect=No";
"UseMemDetect_description" = "Disables the automatically enabled RAM recognition.";
// ----------------------------------------------------------------------------
// Boot options - KEYLAYOUTS
// ----------------------------------------------------------------------------
"UseKernelCache_title" = "UseKernelCache=Yes";
"UseKernelCache_description" = "Yes will load pre-linked kernel and will ignore /Extra/Extensions
and /System/Library/Extensions Extensions.mkext.
Default is No but Yes if you use Lion on a Raid partition.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"mac-de_title" = "Clavier Mac Allemand";
"mac-de_description" = "Utilise le plan de codage pour un clavier Mac Allemand";
"mac-es_title" = "Clavier Mac Espagnol";
"mac-es_description" = "Utilise le plan de codage pour un clavier Mac Espagnol";
"mac-es_title" = "Clavier Mac Espagnol";
"mac-es_description" = "Utilise le plan de codage pour un clavier Mac Espagnol";
"mac-it_title" = "Clavier Mac Italien";
"mac-it_description" = "Utilise le plan de codage pour un clavier Mac Italien";
"pc-fr_title" = "Clavier PC Keyboard";
// Resolution
"Resolution_title" = "Resolution";
"Resolution_description" = "Set the screen resolution of your display";
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "1024x600x32";
// ----------------------------------------------------------------------------
// Boot options - THEMES
// ----------------------------------------------------------------------------
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "1024x768x32";
"Embed_title" = "Embed";
"Embed_description" = "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme. ";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "1280x768x32";
"Legacy_title" = "Legacy";
"Legacy_description" = "Chameleon's previous default theme";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "1280x800x32";
"Default_title" = "Standard";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "1280x1024x32";
"Bullet_title" = "Bullet";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "1440x900x32";
// ============================================================================
// The filenames from OptionalSettings text files' become sub menu headings.
// These sub menu headings need titles and descriptions.
// ----------------------------------------------------------------------------
// Control
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "1600x900x32";
"Control_title" = "Control Options";
"Control_description" = "Settings to control how Chameleon works.";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "1680x1050x32";
// General
"General_title" = "General Options";
"General_description" = "Choose from a selection of base options.";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "1920x1080x32";
// KernelFlags
"KernelFlags_title" = "Kernel Flags";
"KernelFlags_description" = "Choose from a selection of kernel flags.";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "1920x1200x32";
// PowerManagement
"PowerManagement_title" = "Power Management";
"PowerManagement_description" = "A selection of options that deal with power management and speedstep.";
// Resolution
"Resolution_title" = "Resolution";
"Resolution_description" = "Set one resolution to use, or select 'None' if you don't want to select a resolution.";
// Video
"Video_title" = "Video";
"Video_description" = "A selection of options that deal with video.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
// Themes
"Themes_title" = "Themes";
More themes can be found at http://forum.voodooprojects.org/index.php/board,7.0.html";
"Embed_title" = "Embed";
"Embed_description" = "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme. ";
"Legacy_title" = "Legacy";
"Legacy_description" = "Chameleon's previous default theme";
// ============================================================================
// Exclusive boot options string - These are added automatically by buildpkg
// Name to be used should be ChooseNone-xxxxxx
// Where xxxxx = the name of the BootOptions file (minus the .txt)
// ----------------------------------------------------------------------------
"ChooseNone-Resolution_title" = "None";
"ChooseNone-Resolution_description" = "Don't choose a resolution.";
"Default_title" = "Standard";
// Extras
"Extras_title" = "Extras";
"Extras_description" = "une collection d'addons utiles";
"SMBios_title" = "SMBIOS Override";
"SMBios_description" = "Installe le fichier de configuration SMBIOS smbios.plist into Extra";
// Error strings
"ChooseNone-keylayout_title" = "None";
"ChooseNone-keylayout_description" = "Don't choose a keylayout.";
branches/blackosx/package/Resources/pl.lproj/Localizable.strings
1
2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
315
416
517
......
1527
1628
1729
30
31
1832
19
20
33
34
2135
2236
2337
......
5771
5872
5973
74
75
6076
77
78
6179
6280
6381
6482
6583
6684
67
68
85
86
6987
7088
7189
7290
73
91
92
93
94
95
96
7497
7598
7699
77
78
100
101
79102
103
104
105
106
107
108
80109
81110
82111
83112
84113
85114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
86138
87139
88140
89
90
141
142
91143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
92158
93159
94160
95
96
97
98
99
100
101161
102162
103163
......
107167
108168
109169
110
111
112
170
171
113172
114
115
173
174
116175
117
118
176
119177
120
121
178
179
122180
123
124
181
182
125183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
126216
127217
128218
129219
130220
131221
132
133
134
135
136
137
138
139
140
141222
142223
143224
144
145
225
226
227
146228
147
148
229
230
149231
150
151
232
233
152234
153
154
235
236
155237
156
157
238
239
158240
159
160
241
242
161243
162
163
164244
165
166
245
246
247
167248
168
169
170
171
172
173
174
175
176
177249
178250
179251
......
192264
193265
194266
195
196
197
198267
199
200
268
269
270
201271
202
203
272
273
204274
205
206
275
276
207277
208
209
278
279
210280
211
212
281
282
213283
214
215
216284
217
218
285
286
287
288
289
219290
220
221
291
292
222293
223
224
294
295
296
225297
226
227
298
299
300
228301
229
230
302
303
304
231305
306
307
308
309
310
311
312
313
314
315
316
317
232318
233319
234320
235321
236322
237
238
239323
240
241
324
325
326
327
328
329
330
242331
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
332
333
259334
"Chameleon_title" = "Chameleon";
// Error strings
// ----------------------------------------------------------------------------
"ERROR_BOOTVOL" = "To oprogramowanie musi by zainstalowane na woluminie startowym.";
"ERROR_INSTALL" = "Ten wolumin nie speBnia wymagaD dla tego uaktualnienia.";
"Intel_Mac_message" = "To oprogramowanie nie mo|e by zainstalowane na tym komputerze.";
// ============================================================================
// Bootloader
// ----------------------------------------------------------------------------
"Chameleon_title" = "Chameleon Bootloader";
boot0 (Na MBR dysku) odpowiedzialne za Badowanie boot1.
boot1 (Na boot-sektorze partycji) za znalezienie boot2.
"noboot_title" = "Nic";
// ============================================================================
// Modules
"Module_title" = "Chameleon Modules";
// ----------------------------------------------------------------------------
"Module_title" = "Modules";
"Module_description" = "The modules system incorporated in chameleon allows for a user or developer to extend the core functionality of chameleon without replacing the main boot file. ";
"AMDGraphicsEnabler_title" = "AMDGraphicsEnabler";
"Keylayout_title" = "Keylayout";
"Keylayout_description" = "This module permits the user to define the keyboard key mappings.";
// ============================================================================
// Utility
// These are currently unused!!!
// ----------------------------------------------------------------------------
"Utility_title" = "Narzdzia";
"Utility_description" = "Opcjonalne pliki przydatne w konfiguracji.";
"PrefPanel_title" = "Panel Preferencji";
"PrefPanel_description" = "Instaluje Panel Preferencji dla Chameleona.";
"SMBIOSDefault_title" = "SMBIOS.plist";
"SMBIOSDefault_description" = "Kopiuje domy[lne smbios.plist w /Extra/Configuration.";
"SMBIOS_title" = "SMBIOS.plist";
"SMBIOS_description" = "Kopiuje domy[lne smbios.plist w /Extra/Configuration.";
"Documentation_title" = "Dokumentacja";
"Documentation_description" = "Dokumentacja dla u|ytkowania i instalacji rcznej Chameleona.";
// Options
// ============================================================================
// Boot Options - The follow options are split to match the layout OptionalSettings text files.
// but they can be changed to suit however anyone wants to do it.
// ----------------------------------------------------------------------------
"Options_title" = "Opcje Bootowania";
"arch_title" = "arch=i386";
"arch_description" = "Uruchamia kernela w trybie 32 bitowym zamiast domy[lnego 64 bitowego.";
"BootBanner_title" = "BootBanner=No";
"BootBanner_description" = "Ukrywa boot banner Chameleona w GUI.";
"GUI_title" = "GUI=No";
"GUI_description" = "WyBcza domy[lnie wBczony Graficzny Interfejs U|ytkownika.";
"LegacyLogo_title" = "LegacyLogo=Yes";
"LegacyLogo_description" = "U|ywa oryginalnego logo Apple (szare na biaBym) w ekranie Badowania, zamiast boot.png.";
"InstantMenu_title" = "InstantMenu=Yes";
"InstantMenu_description" = "Wy[wietla ekran wyboru partycji od razu, bez pokazywania odliczania.";
"QuietBoot_title" = "QuietBoot=Yes";
"ShowInfo_title" = "ShowInfo=Yes";
"ShowInfo_description" = "Enables display of partition and resolution details.";
"Wait_title" = "Wait=Yes";
// ----------------------------------------------------------------------------
"arch_title" = "arch=i386";
"arch_description" = "Uruchamia kernela w trybie 32 bitowym zamiast domy[lnego 64 bitowego.";
"EHCIacquire_title" = "EHCIacquire=Yes";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"EthernetBuiltIn_description" = "WBcza opcj dodania: 'wbudowany' ('built-in') do twoich urzdzeD Ethernetowych.";
"ForceHPET_title" = "ForceHPET=Yes";
"ForceWake_title" = "ForceWake=Yes";
"ForceWake_description" = "Ta opcja pozwala obej[ zBe zrzuty pamici hibernacji (sleep images).";
"RestartFix_title" = "RestartFix=No";
"ShowInfo_title" = "ShowInfo=No";
"ShowInfo_description" = "Disables display of partition and resolution details.";
"UHCIreset_title" = "UHCIreset=Yes";
"UseMemDetect_title" = "UseMemDetect=No";
"UseMemDetect_description" = "WyBcza domy[lnie wBczone rozpoznawanie pamici RAM.";
"UseKernelCache_title" = "UseKernelCache=Yes";
"UseKernelCache_description" = "For Lion only. Enables loading of the pre-linked kernel. This will ignore /E/E and /S/L/E. ONLY use this is you have know it contains everything you need.";
"Wake_title" = "Wake=Yes";
// ----------------------------------------------------------------------------
"CSTUsingSystemIO_title" = "Nowa - Generate C-States=Yes";
"DropSSDT_title" = "DropSSDT=Yes";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"EthernetBuiltIn_description" = "WBcza opcj dodania: 'wbudowany' ('built-in') do twoich urzdzeD Ethernetowych.";
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"GraphicsEnabler_description" = "WBcza opcj automatycznego wykrywania GPU NVIDII i umieszczania odpowiednich informacji.";
"EnableC2State_title" = "EnableC2State=Yes";
"EnableC4State_title" = "EnableC4State=Yes";
// Advanced
"Advanced_title" = "Zaawansowane Opcje Uruchamiania";
"GenerateCStates_title" = "Generate C-States=Yes";
"Npci_title" = "npci=0x2000";
"GeneratePStates_title" = "Generate P-States=Yes";
"BootBanner_title" = "BootBanner=No";
"BootBanner_description" = "Ukrywa boot banner Chameleona w GUI.";
// ----------------------------------------------------------------------------
"LegacyLogo_title" = "LegacyLogo=Yes";
"LegacyLogo_description" = "U|ywa oryginalnego logo Apple (szare na biaBym) w ekranie Badowania, zamiast boot.png.";
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "Set Graphics Mode to 1024x600x32";
"SMBIOSdefaults_title" = "SMBIOSdefaults=Yes";
"SMBIOSdefaults_description" = "WBcza opcj SMBIOSdefaults.";
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "Set Graphics Mode to 1024x768x32";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "Set Graphics Mode to 1280x768x32";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "Set Graphics Mode to 1280x800x32";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "Set Graphics Mode to 1280x1024x32";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "Set Graphics Mode to 1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "Set Graphics Mode to 1440x900x32";
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "Set Graphics Mode to 1600x900x32";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "Set Graphics Mode to 1680x1050x32";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "Set Graphics Mode to 1920x1080x32";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "Set Graphics Mode to 1920x1200x32";
// ----------------------------------------------------------------------------
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"GraphicsEnabler_description" = "WBcza opcj automatycznego wykrywania GPU NVIDII i umieszczania odpowiednich informacji.";
"UseAtiROM_title" = "UseAtiROM=Yes";
"UseAtiROM_description" = "WBcza opcj UseAtiROM.";
"UseNvidiaROM_title" = "UseNvidiaROM=Yes";
"UseNvidiaROM_description" = "WBcza opcj UseNvidiaROM.";
"Wait_title" = "Wait=Yes";
"Wake_title" = "Wake=Yes";
"GUI_title" = "GUI=No";
"GUI_description" = "WyBcza domy[lnie wBczony Graficzny Interfejs U|ytkownika.";
"VBIOS_title" = "VBIOS=Yes";
"VBIOS_description" = "WBcza opcj VBIOS.";
"GenerateCStates_title" = "Generate C-States=Yes";
// ----------------------------------------------------------------------------
// Boot options - KERNEL FLAGS
// ----------------------------------------------------------------------------
"GeneratePStates_title" = "Generate P-States=Yes";
"Verbose_title" = "Verbose Mode";
"Verbose_description" = "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting.";
"CSTUsingSystemIO_title" = "Nowa - Generate C-States=Yes";
"Singleusermode_title" = "Single User Mode";
"Singleusermode_description" = "A troubleshooting option used for booting into OS X's BSD/Unix command line.";
"ForceHPET_title" = "ForceHPET=Yes";
"Ignorecaches_title" = "Ignore Caches";
"Ignorecaches_description" = "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches.";
"ForceWake_title" = "ForceWake=Yes";
"ForceWake_description" = "Ta opcja pozwala obej[ zBe zrzuty pamici hibernacji (sleep images).";
"Npci_title" = "npci=0x2000";
"EHCIacquire_title" = "EHCIacquire=Yes";
"Darkwake_title" = "darkwake=0";
"Darkwake_description" = "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep.";
"UHCIreset_title" = "UHCIreset=Yes";
"UseMemDetect_title" = "UseMemDetect=No";
"UseMemDetect_description" = "WyBcza domy[lnie wBczone rozpoznawanie pamici RAM.";
// ----------------------------------------------------------------------------
// Boot options - KEYLAYOUTS
// ----------------------------------------------------------------------------
"UseKernelCache_title" = "UseKernelCache=Yes";
"UseKernelCache_description" = "Yes will load pre-linked kernel and will ignore /Extra/Extensions
and /System/Library/Extensions Extensions.mkext.
Default is No but Yes if you use Lion on a Raid partition.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Set keylayout to use";
"mac-de_title" = "German Mac Keyboard";
"mac-de_description" = "Use the keyboard layout for a German Mac keyboard";
"pc-fr_title" = "French PC Keyboard";
"pc-fr_description" = "Use the keyboard layout for a French PC keyboard";
// Resolution
"Resolution_title" = "Rozdzielczo[";
"Resolution_description" = "Ustaw rozdzielczo[ ekranu dla twojego monitora.";
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "1024x600x32";
// ----------------------------------------------------------------------------
// Boot options - THEMES
// ----------------------------------------------------------------------------
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "1024x768x32";
"Embed_title" = "Embed";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "1280x768x32";
"Legacy_title" = "Legacy";
"Legacy_description" = "Poprzedni domy[lny temat Chameleona.";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "1280x800x32";
"Default_title" = "Standard";
"Default_description" = "Nowy domy[lny temat Chameleona.";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "1280x1024x32";
"Bullet_title" = "Bullet";
"Bullet_description" = "A lovely simple theme by NoSmokingBandit from April 2009.";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "1440x900x32";
// ============================================================================
// The filenames from OptionalSettings text files' become sub menu headings.
// These sub menu headings need titles and descriptions.
// ----------------------------------------------------------------------------
// Control
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "1600x900x32";
"Control_title" = "Control Options";
"Control_description" = "Settings to control how Chameleon works.";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "1680x1050x32";
// General
"General_title" = "General Options";
"General_description" = "Choose from a selection of base options.";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "1920x1080x32";
// KernelFlags
"KernelFlags_title" = "Kernel Flags";
"KernelFlags_description" = "Choose from a selection of kernel flags.";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "1920x1200x32";
// PowerManagement
"PowerManagement_title" = "Power Management";
"PowerManagement_description" = "A selection of options that deal with power management and speedstep.";
// Resolution
"Resolution_title" = "Rozdzielczo[";
"Resolution_description" = "Ustaw rozdzielczo[ ekranu dla twojego monitora.";
// Video
"Video_title" = "Video";
"Video_description" = "A selection of options that deal with video.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Set one keylayout to use, or select 'None' if you don't want to select a keylayout.";
// Themes
"Themes_title" = "Tematy";
"Embed_title" = "Embed";
"Legacy_title" = "Legacy";
"Legacy_description" = "Poprzedni domy[lny temat Chameleona.";
// ============================================================================
// Exclusive boot options string - These are added automatically by buildpkg
// Name to be used should be ChooseNone-xxxxxx
// Where xxxxx = the name of the BootOptions file (minus the .txt)
// ----------------------------------------------------------------------------
"ChooseNone-Resolution_title" = "None";
"ChooseNone-Resolution_description" = "Don't choose a resolution.";
"Default_title" = "Standard";
"Default_description" = "Nowy domy[lny temat Chameleona.";
// Extras
"Extras_title" = "Dodatki";
"SMBios_title" = "Zastpienie SMBIOS";
"SMBios_description" = "Isntaluje domy[lny SMBIOS zastpujc smbios.plist w Extra.";
// Error strings
"ERROR_BOOTVOL" = "To oprogramowanie musi by zainstalowane na woluminie startowym.";
"ERROR_INSTALL" = "Ten wolumin nie speBnia wymagaD dla tego uaktualnienia.";
"Intel_Mac_message" = "To oprogramowanie nie mo|e by zainstalowane na tym komputerze.";
"ChooseNone-keylayout_title" = "None";
"ChooseNone-keylayout_description" = "Don't choose a keylayout.";
branches/blackosx/package/Resources/it.lproj/Localizable.strings
1
1
2
3
4
5
6
7
8
9
10
11
12
13
214
315
416
......
921
1022
1123
12
24
1325
1426
1527
1628
17
1829
30
31
32
1933
2034
2135
2236
23
37
2438
2539
2640
......
3953
4054
4155
42
56
57
58
59
60
4361
4462
4563
4664
4765
4866
49
50
67
68
5169
5270
5371
5472
55
73
74
75
76
77
78
5679
5780
5881
59
60
82
83
6184
85
86
87
88
89
90
6291
6392
6493
6594
6695
6796
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
68120
69121
70122
71
72
123
124
73125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
74140
75141
76142
77
78
79
80
81
82
83143
84144
85145
......
89149
90150
91151
92
93
94
152
153
95154
96
97
155
156
98157
99
100
158
101159
102
103
160
161
104162
105
106
163
164
107165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
108198
109199
110200
111201
112202
113203
114
115
116
117
118
119
120
121
122
123204
124205
125206
126
127
207
208
209
128210
129
130
211
212
131213
132
133
214
215
134216
135
136
217
218
137219
138
139
220
221
140222
141
142
223
224
143225
144
145
146226
147
148
227
228
229
149230
150
151
152
153
231
232
154233
155
156
157
234
235
158236
159
160
161
162
163
164
165237
166
238
167239
168240
169
241
170242
171243
172
244
173245
174246
175247
176248
177
178
179
180249
181
182
250
251
252
183253
184
185
254
255
186256
187
188
257
258
189259
190
191
260
261
192262
193
194
263
264
195265
196
197
198266
199
200
267
268
269
270
271
201272
202
203
273
274
204275
205
206
276
277
278
207279
208
209
280
281
282
210283
211
212
284
285
286
213287
288
289
290
291
292
293
294
295
296
297
298
299
214300
215301
216302
217303
218304
219
220
221305
222
223
306
307
308
309
310
311
312
224313
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
314
315
241316
// Error strings
// ----------------------------------------------------------------------------
"ERROR_BOOTVOL" = "Questo software deve essere installato sul volume di avvio.";
"ERROR_INSTALL" = "Questo volume non risponde ai requisiti per questo aggiornamento.";
// ============================================================================
// Bootloader
// ----------------------------------------------------------------------------
"Chameleon_title" = "Chameleon";
"Chameleon_description" = "Elementi base per l'installazione di Chameleon
boot0 (Sul disco MBR) responsabile del caricamento del boot1.
"Standard_description" = "Installare Chameleon";
"EFI_title" = "EFI";
"EFI_description" = "Install Chameleon's files to the normally hidden EFI partition using either boot0 or boot0md depending on your system and without destroying any existing Windows installation if you have one.";
"EFI_description" = "Install Chameleon's files to the normally hidden EFI system partition using either boot0 or boot0md depending on your system and without destroying any existing Windows installation if you have one.";
"noboot_title" = "Non installare il Bootloader";
"noboot_description" = "Utile se vuoi solo installare i componenti aggiuntivi";
// Modules
// ============================================================================
// Moduli
// ----------------------------------------------------------------------------
"Module_title" = "Moduli per Chameleon";
"klibc_title" = "klibc";
"klibc_description" = "Questo modulo fornisce una libreria c standard ai moduli oer collegarli alla libreria fornita da chameleon nel caso essa non sia sufficiente.
"klibc_description" = "Questo modulo fornisce una libreria c standard ai moduli per collegarli alla libreria fornita da chameleon nel caso essa non sia sufficiente.
Fonte: http://www.kernel.org/pub/linux/libs/klibc/";
"Keylayout_title" = "Mappatura tastiera";
"Keylayout_description" = "Questo modulo permette all'utente di definire la mappatura della propria tastiera.";
// Utility
// ============================================================================
// Non sono attualmente utilizzate!!!
// ----------------------------------------------------------------------------
"PrefPanel_title" = "Pannello Preferenze";
"PrefPanel_description" = "Installa il Pannello preferenze di Chameleon.";
"SMBIOSDefault_title" = "SMBIOS Esempio";
"SMBIOSDefault_description" = "Copia o sovrascrive il file smbios.plist in /Extra/Configuration con uno di esempio";
"SMBIOS_title" = "SMBIOS.plist";
"SMBIOS_description" = "Copia o sovrascrive il file smbios.plist in /Extra/Configuration con uno di esempio";
"Documentation_title" = "Documentazione";
"Documentation_description" = "Documenti per l'installazione e l'uso di Chameleon";
// Options
// ============================================================================
// Boot Options - The follow options are split to match the layout OptionalSettings text files.
// but they can be changed to suit however anyone wants to do it.
// ----------------------------------------------------------------------------
"Options_title" = "Opzioni di avvio";
"Options_description" = "Imposta opzioni predefinite di avvio";
"arch_title" = "Architettura (arch=i386)";
"BootBanner_title" = "BootBanner=No";
"GUI_title" = "GUI=No";
"GUI_description" = "Disabilita l'interfaccia grafica, aggiunge GUI=n al com.apple.Boot.plist";
"LegacyLogo_title" = "LegacyLogo=Yes";
"LegacyLogo_description" = "Utilizza mela aple originale (nera) al caricamento";
"InstantMenu_title" = "InstantMenu=Yes";
"InstantMenu_description" = "Carica subito il menu di selezione dei dischi";
"QuietBoot_title" = "QuietBoot=Yes";
"QuietBoot_description" = "Carica immediatamente il disco predefinito";
"ShowInfo_title" = "ShowInfo=Yes";
"ShowInfo_description" = "Abilita le informazioni all'avvio di partizioni e risoluzioni.";
"Wait_title" = "Wait=Yes";
"Wait_description" = "Attende la pressione di un tasto prima di caricare il kernel";
// ----------------------------------------------------------------------------
"arch_title" = "Architettura (arch=i386)";
"EHCIacquire_title" = "EHCIacquire=Yes";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"ForceHPET_title" = "ForceHPET=Yes";
"ForceHPET_description" = "Aggiunge ForceHPET=y al org.chameleon.Boot.plist, Questa opzione abilita l'HPET sui chipset Intel, per BIOS che non includono questa opzione.";
"ForceWake_title" = "ForceWake=Yes";
"RestartFix_title" = "RestartFix=No";
"RestartFix_description" = "Disabilita la correzione automatica per il riavvio";
"ShowInfo_title" = "ShowInfo=No";
"ShowInfo_description" = "Disabilita le informazioni all'avvio di partizioni e risoluzioni.";
"UHCIreset_title" = "UHCIreset=Yes";
"UseMemDetect_title" = "UseMemDetect=No";
"UseMemDetect_description" = "Disattiva il riconoscimento della RAM automatico.";
"UseKernelCache_title" = "UseKernelCache=Yes";
"Wake_title" = "Wake=Yes";
"Wake_description" = "Carica dall'immagine dell'ibernazione";
// ----------------------------------------------------------------------------
"CSTUsingSystemIO_title" = "CSTUsingSystemIO=Yes";
"CSTUsingSystemIO_description" = "Nuovo generatore di C-State, usa il registro SystemIO invece del FixedHW.";
"DropSSDT_title" = "DropSSDT=Yes";
"DropSSDT_description" = "Non carica le tabelle SSDT dal BIOS.";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"GraphicsEnabler_description" = "Aggiunge GraphicsEnabler=y al org.chameleon.Boot.plist, Questa opzione abilita il riconoscimento automatico delle schede grafiche iniettanto le informazioni corrette.";
"EnableC2State_title" = "EnableC2State=Yes";
"EnableC2State_description" = "Abilita i C2State";
"EnableC4State_title" = "EnableC4State=Yes";
"EnableC4State_description" = "Abilita i C4State";
// Advanced
"Advanced_title" = "Opzioni Avanzate";
"Advanced_description" = "Imposta opzioni predefinite di avvio avanzate";
"GenerateCStates_title" = "Genera C-States=Yes";
"GenerateCStates_description" = "Attiva C-State automatici";
"Npci_title" = "npci=0x2000";
"Npci_description" = "Imposta la flag npci=0x2000 per la key Kernel Flags";
"GeneratePStates_title" = "Genera P-States=Yes";
"GeneratePStates_description" = "Attiva P-State automatici";
"BootBanner_title" = "BootBanner=No";
// ----------------------------------------------------------------------------
"LegacyLogo_title" = "LegacyLogo=Yes";
"LegacyLogo_description" = "Utilizza mela aple originale (nera) al caricamento";
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "Setta il Graphics Mode a 1024x600x32";
"SMBIOSdefaults_title" = "SMBIOSdefaults=Yes";
"SMBIOSdefaults_description" = "Attiva opzione SMBIOSdefaults";
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "Setta il Graphics Mode a 1024x768x32";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "Setta il Graphics Mode a 1280x768x32";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "Setta il Graphics Mode a 1280x800x32";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "Setta il Graphics Mode a 1280x1024x32";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "Setta il Graphics Mode a 1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "Setta il Graphics Mode a 1440x900x32";
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "Setta il Graphics Mode a 1600x900x32";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "Setta il Graphics Mode a 1680x1050x32";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "Setta il Graphics Mode a 1920x1080x32";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "Setta il Graphics Mode a 1920x1200x32";
// ----------------------------------------------------------------------------
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"GraphicsEnabler_description" = "Aggiunge GraphicsEnabler=y al org.chameleon.Boot.plist, Questa opzione abilita il riconoscimento automatico delle schede grafiche iniettanto le informazioni corrette.";
"UseAtiROM_title" = "UseAtiROM=Yes";
"UseAtiROM_description" = "Attiva opzione UseAtiROM";
"UseNvidiaROM_title" = "UseNvidiaROM=Yes";
"UseNvidiaROM_description" = "Attiva opzione UseNvidiaROM";
"Wait_title" = "Wait=Yes";
"Wait_description" = "Attende la pressione di un tasto prima di caricare il kernel";
"Wake_title" = "Wake=Yes";
"Wake_description" = "Carica dall'immagine dell'ibernazione";
"GUI_title" = "GUI=No";
"GUI_description" = "Disabilita l'interfaccia grafica, aggiunge GUI=n al com.apple.Boot.plist";
"VBIOS_title" = "VBIOS=Yes";
"VBIOS_description" = "Attiva opzione VBIOS";
"GenerateCStates_title" = "Genera C-States=Yes";
"GenerateCStates_description" = "Attiva C-State automatici";
// ----------------------------------------------------------------------------
// Boot options - KERNEL FLAGS
// ----------------------------------------------------------------------------
"GeneratePStates_title" = "Genera P-States=Yes";
"GeneratePStates_description" = "Attiva P-State automatici";
"Verbose_title" = "Verbose Mode";
"Verbose_description" = "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting.";
"CSTUsingSystemIO_title" = "Nuovo - Generate C-States=Yes";
"CSTUsingSystemIO_description" = "Nuovo generatore di C-State, usa il registro SystemIO invece del FixedHW.";
"Singleusermode_title" = "Single User Mode";
"Singleusermode_description" = "A troubleshooting option used for booting into OS X's BSD/Unix command line.";
"ForceHPET_title" = "ForceHPET=Yes";
"ForceHPET_description" = "Aggiunge ForceHPET=y al org.chameleon.Boot.plist, Questa opzione abilita l'HPET sui chipset Intel, per BIOS che non includono questa opzione.";
"Ignorecaches_title" = "Ignora Caches";
"Ignorecaches_description" = "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches.";
"ForceWake_title" = "ForceWake=Yes";
"Npci_title" = "npci=0x2000";
"Npci_description" = "Imposta la flag npci=0x2000 per la key Kernel Flags";
"EHCIacquire_title" = "EHCIacquire=Yes";
"Darkwake_title" = "darkwake=0";
"Darkwake_description" = "Solo per Lion. Disabilita il 'low power wake' che a volte lascia lo schermo nero dopo il risveglio dallo Sleep/Stop.";
"UHCIreset_title" = "UHCIreset=Yes";
"UseMemDetect_title" = "UseMemDetect=No";
"UseMemDetect_description" = "Disattiva il riconoscimento della RAM automatico.";
// ----------------------------------------------------------------------------
// Boot options - KEYLAYOUTS
// ----------------------------------------------------------------------------
"UseKernelCache_title" = "UseKernelCache=Yes";
e /System/Library/Extensions
"mac-de_title" = "Mappatura tastiera Tedesca Mac";
"mac-de_description" = "Usa la mappatura della tastiera Tedesca per Mac";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Seleziona la mappatura da utilizzare";
"mac-es_title" = "Mappatura tastiera Spagnola Mac";
"mac-es_description" = "Usa la mappatura della tastiera Spagnola per Mac";
"mac-de_title" = "Mappatura tastiera Tedesca MAC";
"mac-de_description" = "Usa la mappatura della tastiera Tedesca per MAC";
"mac-es_title" = "Mappatura tastiera Spagnola MAC";
"mac-es_description" = "Usa la mappatura della tastiera Spagnola per MAC";
"mac-fr_title" = "Mappatura tastiera Francese Mac";
"mac-fr_description" = "Usa la mappatura della tastiera Francese per MAC";
"mac-fr_description" = "Usa la mappatura della tastiera Francese per Mac";
"mac-it_title" = "Mappatura tastiera Italiana Mac";
"mac-it_description" = "Usa la mappatura della tastiera Italiana per MAC";
"mac-it_description" = "Usa la mappatura della tastiera Italiana per Mac";
"mac-se_title" = "Mappatura tastiera Svedese Mac";
"mac-se_description" = "Usa la mappatura della tastiera Svedese per MAC";
"mac-se_description" = "Usa la mappatura della tastiera Svedese per Mac";
"pc-fr_title" = "Mappatura tastiera Francese PC";
"pc-fr_description" = "Usa la mappatura della tastiera Francese per PC";
// Resolution
"Resolution_title" = "Risoluzioni";
"Resolution_description" = "Imposta la risoluzione del tuo monitor";
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "1024x600x32";
// ----------------------------------------------------------------------------
// Boot options - THEMES
// ----------------------------------------------------------------------------
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "1024x768x32";
"Embed_title" = "Embed";
"Embed_description" = "Tema integrato in chameleon (Standard ridotto)";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "1280x768x32";
"Legacy_title" = "Legacy";
"Legacy_description" = "Il vecchio tema Standard di chameleon";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "1280x800x32";
"Default_title" = "Standard";
"Default_description" = "Il tema standard usato dal bootloader, aggiunto qui per essere personalizzato.";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "1280x1024x32";
"Bullet_title" = "Bullet";
"Bullet_description" = "Un tema The Bullet by NoSmokingBandit";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "1440x900x32";
// ============================================================================
// The filenames from OptionalSettings text files' become sub menu headings.
// These sub menu headings need titles and descriptions.
// ----------------------------------------------------------------------------
// Control
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "1600x900x32";
"Control_title" = "Opzioni di Controllo";
"Control_description" = "Settaggi per controllare come Chameleon lavora.";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "1680x1050x32";
// General
"General_title" = "Opzioni Generali";
"General_description" = "Seleziona una opzione base.";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "1920x1080x32";
// KernelFlags
"KernelFlags_title" = "Flags del Kernel";
"KernelFlags_description" = "Scegli le possibili flag del kernel.";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "1920x1200x32";
// PowerManagement
"PowerManagement_title" = "Gestione Energetica";
"PowerManagement_description" = "Selezione di opzioni pre la gestione energetica e speedstep.";
// Resolution
"Resolution_title" = "Risoluzioni";
"Resolution_description" = "Imposta la risoluzione del tuo monitor, o seleziona 'Nessuna' se non vuoi impostare la risoluzione.";
// Video
"Video_title" = "Video";
"Video_description" = "Selezione di opzioni per il video.";
// KeyLayout
"KeyLayout_title" = "Mappatura tastiera";
"KeyLayout_description" = "Seleziona la mappatura da utilizzare";
// Themes
"Themes_title" = "Temi";
"Themes_description" = "Una raccolta di temi campione.
Molti altri sono reperibili su http://forum.voodooprojects.org/index.php/board,7.0.html";
"Embed_title" = "Embed";
"Embed_description" = "Tema integrato in chameleon (Standard ridotto)";
"Legacy_title" = "Legacy";
"Legacy_description" = "Il vecchio tema Standard di chameleon";
// ============================================================================
// Exclusive boot options string - These are added automatically by buildpkg
// Name to be used should be ChooseNone-xxxxxx
// Where xxxxx = the name of the BootOptions file (minus the .txt)
// ----------------------------------------------------------------------------
"ChooseNone-Resolution_title" = "Nessuna";
"ChooseNone-Resolution_description" = "Non utilizzare nessuna risoluzione.";
"Default_title" = "Standard";
"Default_description" = "Il tema standard usato dal bootloader, aggiunto qui per essere personalizzato.";
// Extras
"Extras_title" = "Extra";
"Extras_description" = "Una collezione di strumenti aggiuntivi";
"SMBios_title" = "SMBIOS Override";
"SMBios_description" = "Abilita la sovrascrittura dell'SMBIOS di default con l'smbios.plist presente in Extra";
// Error strings
"ERROR_BOOTVOL" = "Questo software deve essere installato sul volume di avvio.";
"ERROR_INSTALL" = "Questo volume non risponde ai requisiti per questo aggiornamento.";
"ChooseNone-keylayout_title" = "Nessuna";
"ChooseNone-keylayout_description" = "Non scegliere nessuna mappatura tastiera.";
branches/blackosx/package/Resources/pt-BR.lproj/Localizable.strings
1
1
2
3
4
5
6
7
8
9
10
11
12
13
214
315
416
......
1426
1527
1628
29
30
1731
18
32
1933
2034
2135
......
3751
3852
3953
40
54
4155
56
57
4258
59
60
4361
4462
4563
4664
4765
4866
49
50
67
68
5169
5270
5371
5472
55
73
74
75
76
77
78
5679
5780
5881
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
9982
10083
10184
85
86
87
10288
10389
10490
105
106
91
92
10793
108
109
94
95
11096
111
112
97
98
11399
114100
115101
116102
117
118
103
119104
120
121
105
106
122107
123
124
108
109
125110
126
127
111
112
128113
129
130
131
132
133
134
135114
136115
137116
138117
139118
140119
141
142
120
121
143122
144123
145124
......
148127
149128
150129
151
152
153
130
154131
155
156
157
132
133
158134
159
160
135
161136
162
163
137
138
164139
165
166
140
141
167142
168
169
143
144
170145
171
172
146
147
173148
174
175
149
150
176151
177
178
179
152
153
180154
155
156
157
158
159
181160
182
161
183162
184163
185
164
186165
187166
188
167
189168
190169
191
170
192171
193172
194
173
195174
196175
197
176
198177
199178
200
179
201180
202181
203
182
204183
205184
206
185
207186
208187
209
188
210189
211190
212
191
213192
214
215
216
217
193
218194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
219254
220255
221256
......
225260
226261
227262
228
229
230
263
264
231265
232
233
234266
235
236
237
267
268
269
270
271
238272
239
240
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
241316
// Error strings
// ----------------------------------------------------------------------------
// ============================================================================
// Bootloader
// ----------------------------------------------------------------------------
"Chameleon_title" = "Chameleon Bootloader";
// ============================================================================
// Modules
// ----------------------------------------------------------------------------
"Keylayout_title" = "Keylayout";
"Keylayout_description" = "This module permit to define the mapping of keyboard keys.";
// ============================================================================
// Utility
// These are currently unused!!!
// ----------------------------------------------------------------------------
"SMBIOSDefault_title" = "SMBIOS.plist";
"SMBIOSDefault_description" = "Copia um exemplo de smbios.plist para /Extra/Configuration.";
"SMBIOS_title" = "SMBIOS.plist";
"SMBIOS_description" = "Copia um exemplo de smbios.plist para /Extra/Configuration.";
// Options
// ============================================================================
// Boot Options - The follow options are split to match the layout OptionalSettings text files.
// but they can be changed to suit however anyone wants to do it.
// ----------------------------------------------------------------------------
"arch_title" = "arch=i386";
"InstantMenu_title" = "InstantMenu=Yes";
"QuietBoot_title" = "QuietBoot=Yes";
"RestartFix_title" = "RestartFix=No";
"ShowInfo_title" = "ShowInfo=No";
"DropSSDT_title" = "DropSSDT=Yes";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"EnableC2State_title" = "EnableC2State=Yes";
"EnableC3State_title" = "EnableC3State=Yes";
"EnableC4State_title" = "EnableC4State=Yes";
// Advanced
"Npci_title" = "npci=0x2000";
"BootBanner_title" = "BootBanner=No";
"GUI_title" = "GUI=No";
"LegacyLogo_title" = "LegacyLogo=Yes";
"SMBIOSdefaults_title" = "SMBIOSdefaults=Yes";
"InstantMenu_title" = "InstantMenu=Yes";
"UseAtiROM_title" = "UseAtiROM=Yes";
"QuietBoot_title" = "QuietBoot=Yes";
"UseNvidiaROM_title" = "UseNvidiaROM=Yes";
"ShowInfo_title" = "ShowInfo=Yes";
"Wait_title" = "Wait=Yes";
"Wake_title" = "Wake=Yes";
// ----------------------------------------------------------------------------
"GUI_title" = "GUI=No";
"arch_title" = "arch=i386";
"VBIOS_title" = "VBIOS=Yes";
"EHCIacquire_title" = "EHCIacquire=Yes";
"GenerateCStates_title" = "Generate C-States=Yes";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"GeneratePStates_title" = "Generate P-States=Yes";
"CSTUsingSystemIO_title" = "Novo - Generate C-States=Yes";
"ForceHPET_title" = "ForceHPET=Yes";
"ForceWake_title" = "ForceWake=Yes";
"EHCIacquire_title" = "EHCIacquire=Yes";
"RestartFix_title" = "RestartFix=No";
"UHCIreset_title" = "UHCIreset=Yes";
"UseKernelCache_title" = "UseKernelCache=Yes";
"UseKernelCache_description" = "Yes will load pre-linked kernel and will ignore /Extra/Extensions
and /System/Library/Extensions Extensions.mkext.
Default is No but Yes if you use Lion on a Raid partition.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Set keylayout to use";
"Wake_title" = "Wake=Yes";
"mac-de_title" = "German Mac Keyboard";
"mac-de_description" = "Use the keyboard layout for a German Mac keyboard";
// ----------------------------------------------------------------------------
"mac-es_title" = "Spanish Mac Keyboard";
"mac-es_description" = "Use the keyboard layout for a Spanish Mac keyboard";
"CSTUsingSystemIO_title" = "Novo - Generate C-States=Yes";
"mac-fr_title" = "French Mac Keyboard";
"mac-fr_description" = "Use the keyboard layout for a French Mac keyboard";
"DropSSDT_title" = "DropSSDT=Yes";
"mac-it_title" = "Italian Mac Keyboard";
"mac-it_description" = "Use the keyboard layout for an Italian Mac keyboard";
"EnableC2State_title" = "EnableC2State=Yes";
"mac-se_title" = "Swedish Mac Keyboard";
"mac-se_description" = "Use the keyboard layout for a Swedish Mac keyboard";
"EnableC3State_title" = "EnableC3State=Yes";
"pc-fr_title" = "French PC Keyboard";
"pc-fr_description" = "Use the keyboard layout for a French PC keyboard";
"EnableC4State_title" = "EnableC4State=Yes";
// Resolution
"GenerateCStates_title" = "Generate C-States=Yes";
"GeneratePStates_title" = "Generate P-States=Yes";
// ----------------------------------------------------------------------------
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "1024x600x32";
"1024x600x32_description" = "Set Graphics Mode to 1024x600x32";
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "1024x768x32";
"1024x768x32_description" = "Set Graphics Mode to 1024x768x32";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "1280x768x32";
"1280x768x32_description" = "Set Graphics Mode to 1280x768x32";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "1280x800x32";
"1280x800x32_description" = "Set Graphics Mode to 1280x800x32";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "1280x1024x32";
"1280x1024x32_description" = "Set Graphics Mode to 1280x1024x32";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "1280x960x32";
"1280x960x32_description" = "Set Graphics Mode to 1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "1440x900x32";
"1440x900x32_description" = "Set Graphics Mode to 1440x900x32";
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "1600x900x32";
"1600x900x32_description" = "Set Graphics Mode to 1600x900x32";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "1680x1050x32";
"1680x1050x32_description" = "Set Graphics Mode to 1680x1050x32";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "1920x1080x32";
"1920x1080x32_description" = "Set Graphics Mode to 1920x1080x32";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "1920x1200x32";
"1920x1200x32_description" = "Set Graphics Mode to 1920x1200x32";
// Themes
"Themes_title" = "Temas";
"Themes_description" = "Alguns exemplos de tema.
Mais temas podem ser encontrados em http://forum.voodooprojects.org/index.php/board,7.0.html";
// ----------------------------------------------------------------------------
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"UseAtiROM_title" = "UseAtiROM=Yes";
"UseNvidiaROM_title" = "UseNvidiaROM=Yes";
"VBIOS_title" = "VBIOS=Yes";
// ----------------------------------------------------------------------------
// Boot options - KERNEL FLAGS
// ----------------------------------------------------------------------------
"Verbose_title" = "Verbose Mode";
"Verbose_description" = "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting.";
"Singleusermode_title" = "Single User Mode";
"Singleusermode_description" = "A troubleshooting option used for booting into OS X's BSD/Unix command line.";
"Ignorecaches_title" = "Ignore Caches";
"Ignorecaches_description" = "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches.";
"Npci_title" = "npci=0x2000";
"Darkwake_title" = "darkwake=0";
"Darkwake_description" = "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep.";
// ----------------------------------------------------------------------------
// Boot options - KEYLAYOUTS
// ----------------------------------------------------------------------------
"mac-es_title" = "Teclado Mac Espanhol";
"mac-es_description" = "Usa o layout para teclado Mac Espanhol.";
"mac-it_title" = "Teclado Mac Italiano";
"mac-it_description" = "Usa o layout para teclado Mac Italiano.";
"mac-se_title" = "Teclado Mac Sueco";
"mac-se_description" = "Usa o layout para teclado Mac Sueco.";
// ----------------------------------------------------------------------------
// Boot options - THEMES
// ----------------------------------------------------------------------------
"Embed_title" = "Embed";
"Default_title" = "Standard";
// Extras
"Extras_title" = "Extras";
"Bullet_title" = "Bullet";
"Bullet_description" = "O tema Bullet por NoSmokingBandit";
"SMBios_title" = "Substituir SMBIOS";
// Error strings
// ============================================================================
// The filenames from OptionalSettings text files' become sub menu headings.
// These sub menu headings need titles and descriptions.
// ----------------------------------------------------------------------------
// Control
"Control_title" = "Control Options";
"Control_description" = "Settings to control how Chameleon works.";
// General
"General_title" = "General Options";
"General_description" = "Choose from a selection of base options.";
// KernelFlags
"KernelFlags_title" = "Kernel Flags";
"KernelFlags_description" = "Choose from a selection of kernel flags.";
// PowerManagement
"PowerManagement_title" = "Power Management";
"PowerManagement_description" = "A selection of options that deal with power management and speedstep.";
// Resolution
// Video
"Video_title" = "Video";
"Video_description" = "A selection of options that deal with video.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Configura o layout de teclado a ser usado.";
// Themes
"Themes_title" = "Temas";
"Themes_description" = "Alguns exemplos de tema.
Mais temas podem ser encontrados em http://forum.voodooprojects.org/index.php/board,7.0.html";
// ============================================================================
// Exclusive boot options string - These are added automatically by buildpkg
// Name to be used should be ChooseNone-xxxxxx
// Where xxxxx = the name of the BootOptions file (minus the .txt)
// ----------------------------------------------------------------------------
"ChooseNone-Resolution_title" = "None";
"ChooseNone-Resolution_description" = "Don't choose a resolution.";
"ChooseNone-keylayout_title" = "None";
"ChooseNone-keylayout_description" = "Don't choose a keylayout.";
branches/blackosx/package/Resources/sr.lproj/Localizable.strings
1
1
2
3
4
5
6
7
8
9
10
11
12
13
214
315
......
1831
1932
2033
34
35
2136
22
37
2338
2439
2540
......
6681
6782
6883
84
85
6986
87
88
7089
7190
7291
......
82101
83102
84
103
104
105
106
107
108
85109
86110
87111
88
89
112
113
90114
115
116
117
118
119
120
91121
92122
93123
94124
95125
96126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
97150
98151
99152
100
101
153
154
102155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
103170
104171
105172
106
107
108
109
110
111
112173
113174
......
127199
128200
129
130
131
201
202
132203
133
134
204
205
135206
136
137
207
138208
139
140
209
210
141211
142
143
212
213
144214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
145247
146248
......
154255
155256
156
157
158
159
160
161
162
163
164
165257
166258
167259
168
169
260
261
262
170263
171
172
264
265
173266
174
175
267
268
176269
177
178
270
271
179272
180
181
273
274
182275
183
184
276
277
185278
186
187
188279
189
190
280
281
282
191283
192
193
194
195
196
197
198
199
200
201284
202285
203286
......
229301
230302
231303
232
233
234
235304
236
237
305
306
307
238308
239
240
309
310
241311
242
243
312
313
244314
245
246
315
316
247317
248
249
318
319
250320
251
252
253321
254
255
322
323
324
325
326
256327
257
258
328
329
259330
260
261
331
332
333
262334
263
264
335
336
337
265338
266
267
339
340
341
268342
343
344
345
346
347
348
349
350
351
352
353
354
269355
270356
271357
272358
273359
274
275
276360
277
278
361
362
363
364
365
366
367
279368
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
369
370
296371
// Error strings
// ----------------------------------------------------------------------------
"ERROR_BOOTVOL" = "Ovaj softver mora biti instaliran na volumen sa kojeg se pokree.";
"ERROR_INSTALL" = "Ovaj volumen ne ispunjava uslove za ovu nadogradnju.";
"Newer_Package_Installed_message" = "Nova verzija Chameleona ve je instalirana";
"Intel_Mac_message" = "Ovaj softver ne mo~e biti instaliran na ovom ra+unaru";
// ============================================================================
// Bootloader
// ----------------------------------------------------------------------------
"Chameleon_title" = "Chameleon";
"Chameleon_description" = "Chameleon zahtjeva tri bitna fajla. (pojednostavljeno re eno)
"noboot_title" = "Ne instaliraj Bootloader";
"noboot_description" = "Korisno ukoliko ~elite instalirati samo extra.";
// ============================================================================
// Modules
// ----------------------------------------------------------------------------
"Module_title" = "Chameleon Moduli";
"Module_description" = "Moduli ugraeni u sistem Cameleona omoguavaju korisniku ili programeru proairenje funkcionalnosti Cameleon jezgre bez zamijene glavnog boot fajla. ";
"Keylayout_title" = "Keylayout";
"Keylayout_description" = "This module permits the user to define the keyboard key mappings.";
// ============================================================================
// Utility
// These are currently unused!!!
// ----------------------------------------------------------------------------
"Utility_title" = "Korisno";
"Utility_description" = "Menij fajlovi za pomo pri instalaciji";
"Documentation_description" = "Dokumentacija za Chameleon priru nik, instaliranje i koriatenje";
// Options
// ============================================================================
// Boot Options - The follow options are split to match the layout OptionalSettings text files.
// but they can be changed to suit however anyone wants to do it.
// ----------------------------------------------------------------------------
"Options_title" = "Boot Opcije";
"Options_description" = "Kreira /Extra/org.chameleon.Boot.plist i omogu ava izbor ~eljene opcije za kontrolu Chameleon postavki.";
"arch_title" = "arch=i386";
"arch_description" = "Pokree jezgru (kernel) u 32bitnom modu radije nego u zadanom 64bitnom modu.";
"BootBanner_title" = "BootBanner=No";
"BootBanner_description" = "Skriva Cameleon boot banner u grafi+kom korisni+kom inferfejsu (GUI).";
"GUI_title" = "GUI=No";
"GUI_description" = "Onemoguava uklju+eni zadani korisni+ki grafi+ki interfejs.";
"LegacyLogo_title" = "LegacyLogo=Yes";
"LegacyLogo_description" = "Koristite legacy (sivi i bijeli) apple logo prilikom podizanja radije nego boot.png sliku iz teme";
"InstantMenu_title" = "InstantMenu=Yes";
"InstantMenu_description" = "Prikaz zaslona za odabir particije bez prikazivanja timeout ekrana.";
"QuietBoot_title" = "QuietBoot=Yes";
"QuietBoot_description" = "Omoguava mod mirnog pokretanja (bez poruka ili redaka).";
"ShowInfo_title" = "ShowInfo=Yes";
"ShowInfo_description" = "Onemoguava prikaz detalja o particiji i rezoluciji.";
"Wait_title" = "Wait=Yes";
"Wait_description" = "Pauzira boot proces nakon ato je Cameleon zavraio postavljanje, onda +eka na pritisak tipke prije nego se pokrene mach kernel. Korisno u kombinaciji sa verbose podizanjem za rijeaavanje problema.";
// ----------------------------------------------------------------------------
"arch_title" = "arch=i386";
"arch_description" = "Pokree jezgru (kernel) u 32bitnom modu radije nego u zadanom 64bitnom modu.";
"EHCIacquire_title" = "EHCIacquire=Yes";
"EHCIacquire_description" = "Omoguava opciju za popravak bilo kojih EHCI vlasni+kih prava zbog loaeg biosa.";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"EthernetBuiltIn_description" = "Omoguava mogunost dodavanja "ugraeno" na vaae Ethernet ureaje.";
"ForceHPET_title" = "ForceHPET=Yes";
"ForceHPET_description" = "Omoguava HPET na Intel +ipsetima, za biose koje ne uklju+uju ovu opciju.";
"ForceWake_title" = "ForceWake=Yes";
"ForceWake_description" = "Ova opcija omoguava vam da zaobiete loae uspavane slike (sleep images).";
"RestartFix_title" = "RestartFix=No";
"RestartFix_description" = "Isklju uje automatsko omoguavanje restart fix opcije";
"ShowInfo_title" = "ShowInfo=No";
"ShowInfo_description" = "Onemoguava prikaz detalja o particiji i rezoluciji.";
"UHCIreset_title" = "UHCIreset=Yes";
"UHCIreset_description" = "Omoguava opciju za reset UHCI kontrolera prije po+etka podizanja. ";
"UseMemDetect_title" = "UseMemDetect=No";
"UseMemDetect_description" = "Isklju+uje omogueno automatsko RAM prepoznavanje.";
"UseKernelCache_title" = "UseKernelCache=Yes";
"UseKernelCache_description" = "For Lion only. Enables loading of the pre-linked kernel. This will ignore /E/E and /S/L/E. ONLY use this is you have know it contains everything you need.";
"Wake_title" = "Wake=Yes";
"Wake_description" = "Pokuaava da u+ita uspavanu sliku snimljenu iz prethodne hibernacije";
// ----------------------------------------------------------------------------
"CSTUsingSystemIO_title" = "New - Generate C-States=Yes";
"CSTUsingSystemIO_description" = "Nova C-state _CST generacija metodom SystemIO registracije umjesto FixedHW.";
"DropSSDT_title" = "DropSSDT=Yes";
"DropSSDT_description" = "Odbacuje SSDT tablice ugraene na mati noj plo i.";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Yes";
"EthernetBuiltIn_description" = "Omoguava mogunost dodavanja "ugraeno" na vaae Ethernet ureaje.";
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"GraphicsEnabler_description" = "Omoguava opciju auto prepoznavanja NVIDIA baziranih grafi-kih video kartica i upisuje pravilne informacije o istoj.";
"EnableC2State_title" = "EnableC2State=Yes";
"EnableC2State_description" = "Uklju uje posebno Processorsko stanje napajanja, C2.";
"EnableC4State_description" = "Uklju uje posebno Processorsko stanje napajanja, C4.";
// Advanced
"Advanced_title" = "Napredno";
"Advanced_description" = "Odaberite napredne ~eljene opcije za kontrolu Cameleon postavki.";
"GenerateCStates_title" = "Generate C-States=Yes";
"GenerateCStates_description" = "Uklju+uje automatsko generisanje procesora u stanju mirovanja (C-States).";
"Npci_title" = "npci=0x2000";
"Npci_description" = "Postavlja zastave npci = 0x2000 za Kernel Zastave";
"GeneratePStates_title" = "Generate P-States=Yes";
"GeneratePStates_description" = "Omoguava automatsko generisanje snage procesora stanja performansi (P-States).";
"BootBanner_title" = "BootBanner=No";
"BootBanner_description" = "Skriva Cameleon boot banner u grafi-kom korisni-kom inferfejsu (GUI).";
// ----------------------------------------------------------------------------
"LegacyLogo_title" = "LegacyLogo=Yes";
"LegacyLogo_description" = "Koristite legacy (sivi i bijeli) apple logo prilikom podizanja radije nego boot.png sliku iz teme";
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "Set Graphics Mode to 1024x600x32";
"SMBIOSdefaults_title" = "SMBIOSdefaults=Yes";
"SMBIOSdefaults_description" = "Uklju-uje SMBIOS zadanu opciju.";
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "Set Graphics Mode to 1024x768x32";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "Set Graphics Mode to 1280x768x32";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "Set Graphics Mode to 1280x800x32";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "Set Graphics Mode to 1280x1024x32";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "Set Graphics Mode to 1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "Set Graphics Mode to 1440x900x32";
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "Set Graphics Mode to 1600x900x32";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "Set Graphics Mode to 1680x1050x32";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "Set Graphics Mode to 1920x1080x32";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "Set Graphics Mode to 1920x1200x32";
// ----------------------------------------------------------------------------
"GraphicsEnabler_title" = "GraphicsEnabler=Yes";
"GraphicsEnabler_description" = "Omoguava opciju auto prepoznavanja NVIDIA baziranih grafi+kih video kartica i upisuje pravilne informacije o istoj.";
"UseAtiROM_title" = "UseAtiROM=Yes";
"UseAtiROM_description" = "Uklju uje UseAtiROM opciju.";
"UseNvidiaROM_description" = "Uklju uje UseNvidiaROM opciju.";
"Wait_title" = "Wait=Yes";
"Wait_description" = "Pauzira boot proces nakon ato je Cameleon zavraio postavljanje, onda -eka na pritisak tipke prije nego se pokrene mach kernel. Korisno u kombinaciji sa verbose podizanjem za rijeaavanje problema.";
"Wake_title" = "Wake=Yes";
"Wake_description" = "Pokuaava da u-ita uspavanu sliku snimljenu iz prethodne hibernacije";
"GUI_title" = "GUI=No";
"GUI_description" = "Onemoguava uklju-eni zadani korisni-ki grafi-ki interfejs.";
"VBIOS_title" = "VBIOS=Yes";
"VBIOS_description" = "Uklju uje VBIOS opciju";
"GenerateCStates_title" = "Generate C-States=Yes";
"GenerateCStates_description" = "Uklju-uje automatsko generisanje procesora u stanju mirovanja (C-States).";
// ----------------------------------------------------------------------------
// Boot options - KERNEL FLAGS
// ----------------------------------------------------------------------------
"GeneratePStates_title" = "Generate P-States=Yes";
"GeneratePStates_description" = "Omoguava automatsko generisanje snage procesora stanja performansi (P-States).";
"Verbose_title" = "Verbose Mode";
"Verbose_description" = "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting.";
"CSTUsingSystemIO_title" = "New - Generate C-States=Yes";
"CSTUsingSystemIO_description" = "Nova C-state _CST generacija metodom SystemIO registracije umjesto FixedHW.";
"Singleusermode_title" = "Single User Mode";
"Singleusermode_description" = "A troubleshooting option used for booting into OS X's BSD/Unix command line.";
"ForceHPET_title" = "ForceHPET=Yes";
"ForceHPET_description" = "Omoguava HPET na Intel -ipsetima, za biose koje ne uklju-uju ovu opciju.";
"Ignorecaches_title" = "Ignore Caches";
"Ignorecaches_description" = "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches.";
"ForceWake_title" = "ForceWake=Yes";
"ForceWake_description" = "Ova opcija omoguava vam da zaobiete loae uspavane slike (sleep images).";
"Npci_title" = "npci=0x2000";
"Npci_description" = "Postavlja zastave npci = 0x2000 za Kernel Zastave";
"EHCIacquire_title" = "EHCIacquire=Yes";
"EHCIacquire_description" = "Omoguava opciju za popravak bilo kojih EHCI vlasni-kih prava zbog loaeg biosa.";
"Darkwake_title" = "darkwake=0";
"Darkwake_description" = "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep.";
"UHCIreset_title" = "UHCIreset=Yes";
"UHCIreset_description" = "Omoguava opciju za reset UHCI kontrolera prije po-etka podizanja. ";
"UseMemDetect_title" = "UseMemDetect=No";
"UseMemDetect_description" = "Isklju-uje omogueno automatsko RAM prepoznavanje.";
// ----------------------------------------------------------------------------
// Boot options - KEYLAYOUTS
// ----------------------------------------------------------------------------
"UseKernelCache_title" = "UseKernelCache=Yes";
"UseKernelCache_description" = "Yes will load pre-linked kernel and will ignore /Extra/Extensions
and /System/Library/Extensions Extensions.mkext.
Default is No but Yes if you use Lion on a Raid partition.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Set keylayout to use";
"mac-de_title" = "German Mac Keyboard";
"mac-de_description" = "Use the keyboard layout for a German Mac keyboard";
"pc-fr_title" = "French PC Keyboard";
"pc-fr_description" = "Use the keyboard layout for a French PC keyboard";
// Resolution
"Resolution_title" = "Resolution";
"Resolution_description" = "Postavlja rezoluciju ekrana za vaa monitor";
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "1024x600x32";
// ----------------------------------------------------------------------------
// Boot options - THEMES
// ----------------------------------------------------------------------------
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "1024x768x32";
"Embed_title" = "Embed";
"Embed_description" = "Manja, jednostavnija verzija nove zadane teme koja se koristi prilikom izgradnje Chameleon-a koji zahtjeva ugraenu temu. ";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "1280x768x32";
"Legacy_title" = "Legacy";
"Legacy_description" = "Chameleonova prethodno zadana tema.";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "1280x800x32";
"Default_title" = "Standard";
"Default_description" = "Chameleonova trenutno zadana tema.";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "1280x1024x32";
"Bullet_title" = "Bullet";
"Bullet_description" = "A lovely simple theme by NoSmokingBandit from April 2009.";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "1440x900x32";
// ============================================================================
// The filenames from OptionalSettings text files' become sub menu headings.
// These sub menu headings need titles and descriptions.
// ----------------------------------------------------------------------------
// Control
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "1600x900x32";
"Control_title" = "Control Options";
"Control_description" = "Settings to control how Chameleon works.";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "1680x1050x32";
// General
"General_title" = "General Options";
"General_description" = "Choose from a selection of base options.";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "1920x1080x32";
// KernelFlags
"KernelFlags_title" = "Kernel Flags";
"KernelFlags_description" = "Choose from a selection of kernel flags.";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "1920x1200x32";
// PowerManagement
"PowerManagement_title" = "Power Management";
"PowerManagement_description" = "A selection of options that deal with power management and speedstep.";
// Resolution
"Resolution_title" = "Resolution";
"Resolution_description" = "Postavlja rezoluciju ekrana za vaa monitor";
// Video
"Video_title" = "Video";
"Video_description" = "A selection of options that deal with video.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Set one keylayout to use, or select 'None' if you don't want to select a keylayout.";
// Themes
"Themes_title" = "Themes";
"Themes_description" = "Skup predlo~enih tema
Viae tema mo~ete pronai na http://forum.voodooprojects.org/index.php/board,7.0.html";
"Embed_title" = "Embed";
"Embed_description" = "Manja, jednostavnija verzija nove zadane teme koja se koristi prilikom izgradnje Chameleon-a koji zahtjeva ugraenu temu. ";
"Legacy_title" = "Legacy";
"Legacy_description" = "Chameleonova prethodno zadana tema.";
// ============================================================================
// Exclusive boot options string - These are added automatically by buildpkg
// Name to be used should be ChooseNone-xxxxxx
// Where xxxxx = the name of the BootOptions file (minus the .txt)
// ----------------------------------------------------------------------------
"ChooseNone-Resolution_title" = "None";
"ChooseNone-Resolution_description" = "Don't choose a resolution.";
"Default_title" = "Standard";
"Default_description" = "Chameleonova trenutno zadana tema.";
// Extras
"Extras_title" = "Dodaci";
"Extras_description" = "Zbirka korisnih dodataka";
"SMBios_title" = "SMBIOS Override";
"SMBios_description" = "Instalacija zadanog SMBIOS-a nadja-ava smbios.plist u Extra folderu.";
// Error strings
"ERROR_BOOTVOL" = "Ovaj softver mora biti instaliran na volumen sa kojeg se pokree.";
"ERROR_INSTALL" = "Ovaj volumen ne ispunjava uslove za ovu nadogradnju.";
"Newer_Package_Installed_message" = "Nova verzija Chameleona ve je instalirana";
"Intel_Mac_message" = "Ovaj softver ne mo~e biti instaliran na ovom ra-unaru";
"ChooseNone-keylayout_title" = "None";
"ChooseNone-keylayout_description" = "Don't choose a keylayout.";
branches/blackosx/package/Resources/de.lproj/Localizable.strings
1
1
2
3
4
5
6
7
8
9
10
11
12
13
214
315
416
......
1527
1628
1729
30
31
1832
19
33
2034
2135
2236
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
3937
4038
4139
......
4644
4745
4846
49
5047
5148
5249
......
5754
5855
5956
57
58
6059
60
61
6162
6263
6364
......
7071
7172
7273
73
74
75
76
77
78
79
7480
7581
7682
77
78
83
84
7985
86
87
88
89
90
91
8092
8193
8294
83
95
8496
8597
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
86121
87122
88123
89
90
124
125
91126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
92141
93142
94143
95
96
97
98
99
100
101144
102145
103146
......
107150
108151
109152
110
111
112
153
154
113155
114
115
156
157
116158
117
118
159
119160
120
121
161
162
122163
123
124
164
165
125166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
126199
127200
128201
129202
130203
131204
132
133
134
135
136
137
138
139
140
141205
142206
143207
144
145
208
209
210
146211
147
148
212
213
149214
150
151
215
216
152217
153
154
218
219
155220
156
157
221
222
158223
159
160
224
225
161226
162
163
164227
165
166
228
229
230
167231
168
169
170
171
172
173
174
175
176
177232
178233
179234
......
192247
193248
194249
195
196
197
198250
199
200
251
252
253
201254
202
203
255
256
204257
205
206
258
259
207260
208
209
261
262
210263
211
212
264
265
213266
214
215
216267
217
218
268
269
270
271
272
219273
220
221
274
275
222276
223
224
277
278
279
225280
226
227
281
282
283
228284
229
230
285
286
287
231288
289
290
291
292
293
294
295
296
297
298
299
300
232301
233302
234303
235304
236305
237
238
239306
240
241
307
308
309
310
311
312
313
242314
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
315
316
// Error strings
// ----------------------------------------------------------------------------
"ERROR_BOOTVOL" = "Diese Software muss auf dem Startlaufwerk installiert werden.";
"Newer_Package_Installed_message" = "Es ist bereits eine neuere Version dieses Pakets installiert.";
"Intel_Mac_message" = "Diese Software kann auf diesem Computer nicht installiert werden.";
// ============================================================================
// Bootloader
// ----------------------------------------------------------------------------
"Chameleon_title" = "Chameleon";
"noboot_title" = "Keines";
"noboot_description" = "Chameleon nicht installieren (hilfreich wenn nur Extra-Komponenten installiert werden sollen)";
// ============================================================================
// Modules
// ----------------------------------------------------------------------------
"Module_title" = "Chameleon Module";
"AMDGraphicsEnabler_title" = "AMDGraphicsEnabler";
"AMDGraphicsEnabler_description" = "Der GraphicsEnabler AMD Code ( > r784) wird an ein Modul geported.
http://forge.voodooprojects.org/p/chameleon/issues/
"ATiGraphicsEnabler_title" = "ATiGraphicsEnabler";
"ATiGraphicsEnabler_description" = "Der GraphicsEnabler ATI Code ( < r784) wird an ein Modul geported.
Basierend auf der Arbeit von Meklort.";
"IntelGraphicsEnabler_title" = "IntelGraphicsEnabler";
"klibc_title" = "klibc";
Im Moment wird dieses nur vom uClibc++ Verzeichniss benutzt.
"uClibc_title" = "uClibc++";
"Keylayout_title" = "Keylayout";
"Keylayout_description" = "This module permits the user to define the keyboard key mappings.";
// ============================================================================
// Utility
// These are currently unused!!!
// ----------------------------------------------------------------------------
"Utility_description" = "Optionale Bestandteile";
"Documentation_title" = "Dokumentation";
// Options
// ============================================================================
// Boot Options - The follow options are split to match the layout OptionalSettings text files.
// but they can be changed to suit however anyone wants to do it.
// ----------------------------------------------------------------------------
"Options_title" = "Optionen";
"arch_title" = "arch=i386";
"arch_description" = "Bootet den Kernel im 32bit Modus (Standard ist 64bit).";
"BootBanner_title" = "BootBanner=Nein";
"BootBanner_description" = "Kein Chameleon-Banner im Startbild.";
"GUI_title" = "GUI=Nein";
"LegacyLogo_title" = "LegacyLogo=Ja";
"LegacyLogo_description" = "Nutzt das Apple Startbild beim Booten (nicht das boot.png des Themas).";
"InstantMenu_title" = "InstantMenu=Ja";
"InstantMenu_description" = "Zeigt die Partitionsauswahl ohne Wartezeit.";
"QuietBoot_title" = "QuietBoot=Yes";
"QuietBoot_title" = "QuietBoot=Ja";
"QuietBoot_description" = "Bootet ohne Verlaufsmeldungen.";
"ShowInfo_title" = "ShowInfo=Ja";
"Wait_title" = "Warten=Ja";
// ----------------------------------------------------------------------------
"arch_title" = "arch=i386";
"arch_description" = "Bootet den Kernel im 32bit Modus (Standard ist 64bit).";
"EHCIacquire_title" = "EHCIacquire=Ja";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Ja";
"ForceHPET_title" = "ForceHPET=Ja";
"ForceWake_title" = "ForceWake=Ja";
"ForceWake_description" = "Versucht das Aufwachen bei fehlerhaftem Image des letzten Ruhezustandes zu erzwingen.";
"RestartFix_title" = "RestartFix=Nein";
"ShowInfo_title" = "ShowInfo=Nein";
"UHCIreset_title" = "UHCIreset=Ja";
"UseMemDetect_title" = "Benutze MemDetect=Nein";
"UseKernelCache_title" = "UseKernelCache=Yes";
"UseKernelCache_description" = "For Lion only. Enables loading of the pre-linked kernel. This will ignore /E/E and /S/L/E. ONLY use this is you have know it contains everything you need.";
"Wake_title" = "Aufwachen=Ja";
"Wake_description" = "Versucht das Image des letzten Ruhezustands (Hibernation) zu laden.";
// ----------------------------------------------------------------------------
"CSTUsingSystemIO_title" = "Die neue - Generate C-States=Ja";
"CSTUsingSystemIO_description" = "Die neue C-State _CST Erzeugungsmethode erfordert das Benutzen von SystemIO Registern an Stelle von FixedHW..";
"DropSSDT_title" = "DropSSDT=Ja";
"EthernetBuiltIn_title" = "EthernetBuiltIn=Ja";
"GraphicsEnabler_title" = "GraphicsEnabler=Ja";
"EnableC2State_title" = "EnableC2State=Ja";
"EnableC4State_title" = "EnableC4State=Ja";
// Advanced
"Advanced_title" = "Erweiterte Boot-Optionen";
"GenerateCStates_title" = "Generate C-States=Ja";
"GenerateCStates_description" = "Generiert automatisch die C-States des Prozessors.";
"Npci_title" = "npci=0x2000";
"Npci_description" = "Behebt manchmal den PCI Configuration Failed Fehler";
"GeneratePStates_title" = "Generate P-States=Ja";
"GeneratePStates_description" = "Generiert automatisch die P-States des Prozessors.";
"BootBanner_title" = "BootBanner=Nein";
"BootBanner_description" = "Kein Chameleon-Banner im Startbild.";
// ----------------------------------------------------------------------------
"LegacyLogo_title" = "LegacyLogo=Ja";
"LegacyLogo_description" = "Nutzt das Apple Startbild beim Booten (nicht das boot.png des Themas).";
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "Set Graphics Mode to 1024x600x32";
"SMBIOSdefaults_title" = "SMBIOSdefaults=Ja";
"SMBIOSdefaults_description" = "Nutzt SMBIOS Standardeinstellungen.";
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "Set Graphics Mode to 1024x768x32";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "Set Graphics Mode to 1280x768x32";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "Set Graphics Mode to 1280x800x32";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "Set Graphics Mode to 1280x1024x32";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "Set Graphics Mode to 1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "Set Graphics Mode to 1440x900x32";
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "Set Graphics Mode to 1600x900x32";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "Set Graphics Mode to 1680x1050x32";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "Set Graphics Mode to 1920x1080x32";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "Set Graphics Mode to 1920x1200x32";
// ----------------------------------------------------------------------------
"GraphicsEnabler_title" = "GraphicsEnabler=Ja";
"UseAtiROM_title" = "Benutze AtiROM=Ja";
"UseAtiROM_description" = "Nutzt ein AtiROM.";
"UseNvidiaROM_title" = "Benutze NvidiaROM=Ja";
"UseNvidiaROM_description" = "Nutzt ein NvidiaROM.";
"Wait_title" = "Warten=Ja";
"Wake_title" = "Aufwachen=Ja";
"Wake_description" = "Versucht das Image des letzten Ruhezustands (Hibernation) zu laden.";
"GUI_title" = "GUI=Nein";
"VBIOS_title" = "VBIOS=Ja";
"VBIOS_description" = "Nutzt VBIOS.";
"GenerateCStates_title" = "Generate C-States=Ja";
"GenerateCStates_description" = "Generiert automatisch die C-States des Prozessors.";
// ----------------------------------------------------------------------------
// Boot options - KERNEL FLAGS
// ----------------------------------------------------------------------------
"GeneratePStates_title" = "Generate P-States=Ja";
"GeneratePStates_description" = "Generiert automatisch die P-States des Prozessors.";
"Verbose_title" = "Verbose Mode";
"Verbose_description" = "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting.";
"CSTUsingSystemIO_title" = "Die neue - Generate C-States=Ja";
"CSTUsingSystemIO_description" = "Die neue C-State _CST Erzeugungsmethode erfordert das Benutzen von SystemIO Registern an Stelle von FixedHW..";
"Singleusermode_title" = "Single User Mode";
"Singleusermode_description" = "A troubleshooting option used for booting into OS X's BSD/Unix command line.";
"ForceHPET_title" = "ForceHPET=Ja";
"Ignorecaches_title" = "Ignore Caches";
"Ignorecaches_description" = "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches.";
"ForceWake_title" = "ForceWake=Ja";
"ForceWake_description" = "Versucht das Aufwachen bei fehlerhaftem Image des letzten Ruhezustandes zu erzwingen.";
"Npci_title" = "npci=0x2000";
"Npci_description" = "Behebt manchmal den PCI Configuration Failed Fehler";
"EHCIacquire_title" = "EHCIacquire=Ja";
"Darkwake_title" = "darkwake=0";
"Darkwake_description" = "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep.";
"UHCIreset_title" = "UHCIreset=Ja";
"UseMemDetect_title" = "Benutze MemDetect=Nein";
// ----------------------------------------------------------------------------
// Boot options - KEYLAYOUTS
// ----------------------------------------------------------------------------
"UseKernelCache_title" = "UseKernelCache=Yes";
"UseKernelCache_description" = "Yes will load pre-linked kernel and will ignore /Extra/Extensions
and /System/Library/Extensions Extensions.mkext.
Default is No but Yes if you use Lion on a Raid partition.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Set keylayout to use";
"mac-de_title" = "German Mac Keyboard";
"mac-de_description" = "Use the keyboard layout for a German Mac keyboard";
"pc-fr_title" = "French PC Keyboard";
"pc-fr_description" = "Use the keyboard layout for a French PC keyboard";
// Resolution
"1024x600x32_title" = "1024x600x32";
"1024x600x32_description" = "1024x600x32";
// ----------------------------------------------------------------------------
// Boot options - THEMES
// ----------------------------------------------------------------------------
"1024x768x32_title" = "1024x768x32";
"1024x768x32_description" = "1024x768x32";
"Embed_title" = "Embed";
"1280x768x32_title" = "1280x768x32";
"1280x768x32_description" = "1280x768x32";
"Legacy_title" = "Legacy";
"Legacy_description" = "Das bisherige Standard-Thema";
"1280x800x32_title" = "1280x800x32";
"1280x800x32_description" = "1280x800x32";
"Default_title" = "Standard";
"Default_description" = "Das neue Standard-Thema";
"1280x1024x32_title" = "1280x1024x32";
"1280x1024x32_description" = "1280x1024x32";
"Bullet_title" = "Bullet";
"Bullet_description" = "Das Bullet-Thema von NoSmokingBandit";
"1280x960x32_title" = "1280x960x32";
"1280x960x32_description" = "1280x960x32";
"1440x900x32_title" = "1440x900x32";
"1440x900x32_description" = "1440x900x32";
// ============================================================================
// The filenames from OptionalSettings text files' become sub menu headings.
// These sub menu headings need titles and descriptions.
// ----------------------------------------------------------------------------
// Control
"1600x900x32_title" = "1600x900x32";
"1600x900x32_description" = "1600x900x32";
"Control_title" = "Control Options";
"Control_description" = "Settings to control how Chameleon works.";
"1680x1050x32_title" = "1680x1050x32";
"1680x1050x32_description" = "1680x1050x32";
// General
"General_title" = "General Options";
"General_description" = "Choose from a selection of base options.";
"1920x1080x32_title" = "1920x1080x32";
"1920x1080x32_description" = "1920x1080x32";
// KernelFlags
"KernelFlags_title" = "Kernel Flags";
"KernelFlags_description" = "Choose from a selection of kernel flags.";
"1920x1200x32_title" = "1920x1200x32";
"1920x1200x32_description" = "1920x1200x32";
// PowerManagement
"PowerManagement_title" = "Power Management";
"PowerManagement_description" = "A selection of options that deal with power management and speedstep.";
// Resolution
// Video
"Video_title" = "Video";
"Video_description" = "A selection of options that deal with video.";
// KeyLayout
"KeyLayout_title" = "KeyLayout";
"KeyLayout_description" = "Set one keylayout to use, or select 'None' if you don't want to select a keylayout.";
// Themes
"Themes_title" = "Erscheinungsbild";
"Themes_description" = "Eine Sammlung verschiedener Themen.
Weitere Themen gibt es hier: http://forum.voodooprojects.org/index.php/board,7.0.html";
"Embed_title" = "Embed";
"Legacy_title" = "Legacy";
"Legacy_description" = "Das bisherige Standard-Thema";
// ============================================================================
// Exclusive boot options string - These are added automatically by buildpkg
// Name to be used should be ChooseNone-xxxxxx
// Where xxxxx = the name of the BootOptions file (minus the .txt)
// ----------------------------------------------------------------------------
"ChooseNone-Resolution_title" = "None";
"ChooseNone-Resolution_description" = "Don't choose a resolution.";
"Default_title" = "Standard";
"Default_description" = "Das neue Standard-Thema";
// Extras
"Extras_title" = "Extras";
"SMBios_description" = "Kopiert eine smbios.plist mit Standardwerten nach /Extra.";
// Error strings
"ERROR_BOOTVOL" = "Diese Software muss auf dem Startlaufwerk installiert werden.";
"Newer_Package_Installed_message" = "Es ist bereits eine neuere Version dieses Pakets installiert.";
"Intel_Mac_message" = "Diese Software kann auf diesem Computer nicht installiert werden.";
"ChooseNone-keylayout_title" = "None";
"ChooseNone-keylayout_description" = "Don't choose a keylayout.";

Archive Download the corresponding diff file

Revision: 1653