Chameleon

Chameleon Commit Details

Date:2017-06-15 01:40:06 (6 years 9 months ago)
Author:ErmaC
Commit:2884
Parents: 2883
Message:sync with Enoch branch 2883
Changes:
R/trunk/i386/libsaio/nvidia_helper.c → /trunk/i386/libsaio/gfx_helper.c
R/trunk/i386/libsaio/nvidia_helper.h → /trunk/i386/libsaio/gfx_helper.h
R/trunk/package/OptionalSettings/CrsActiveConfig.txt → /trunk/package/OptionalSettings/CsrActiveConfig.txt
M/trunk/package/OptionalSettings/Control.txt
M/trunk/i386/boot2/boot.c
M/trunk/package/po/it.po
M/trunk/i386/libsaio/bootstruct.c
M/trunk/i386/libsaio/nvidia.c
M/trunk/i386/boot2/boot.h
M/trunk/package/po/ca.po
M/trunk/i386/libsaio/stringTable.c
M/trunk/i386/libsaio/load.c
M/trunk/package/Resources/templates/Localizable.strings
M/trunk/package/po/de.po
M/trunk/package/po/bg.po
M/trunk/i386/libsaio/bootargs.h
M/trunk/i386/boot2/gui.c
M/trunk/i386/libsaio/disk.c
M/trunk/i386/libsaio/smbios.c
M/trunk/i386/libsaio/Makefile
M/trunk/i386/libsaio/hda.c
M/trunk/package/po/bs.po
M/trunk/i386/boot2/options.c
M/trunk/package/po/cs.po
M/trunk/i386/libsaio/hda.h
M/trunk/i386/libsaio/smbios.h
M/trunk/package/po/chameleon.pot
M/trunk/package/Distribution
M/trunk/i386/boot2/drivers.c
M/trunk/package/po/zh_TW.po
M/trunk/i386/libsaio/fake_efi.c
M/trunk/package/po/ar.po
M/trunk/i386/libsaio/smbios_decode.c

File differences

trunk/i386/libsaio/nvidia_helper.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
* Copyright (c) 2012 cparm <armelcadetpetit@gmail.com>. All rights reserved.
*
*/
#include "libsaio.h"
#include "bootstruct.h"
#include "xml.h"
#include "nvidia_helper.h"
#include "pci.h"
#include "nvidia.h"
/*
NVIDIA card injection usage e.g (to be placed in the boot.plist):
<key>NVIDIA</key>
<array>
<dict>
<key>Chipset Name</key>
<string>Quadro FX 380</string>
<key>IOPCIPrimaryMatch</key>
<string>0x10DE0658</string>
<key>VRam Size</key>
<string>256</string>
</dict>
<dict>
<key>Chipset Name</key>
<string>YOUR_CARD_NAME</string>
<key>IOPCIPrimaryMatch</key>
<string>YOUR_CARD_ID</string>
<key>IOPCISubDevId</key>
<string>YOUR_CARD_SUB_ID(if necessary)</string>
<key>VRam Size</key>
<string>YOUR_CARD_VRAM_SIZE</string>
</dict>
<dict>
<key>Chipset Name</key>
<string>YOUR_SECOND_CARD_NAME</string>
<key>IOPCIPrimaryMatch</key>
<string>YOUR_SECOND_CARD_ID</string>
<key>IOPCISubDevId</key>
<string>YOUR_SECOND_CARD_SUB_ID(if necessary)</string>
<key>VRam Size</key>
<string>YOUR_SECOND_CARD_VRAM_SIZE</string>
</dict>
.
.
.
.
</array>
*/
cardList_t *cardList = NULL;
void add_card(char *model, uint32_t id, uint32_t subid, uint64_t videoRam)
{
cardList_t *new_card = malloc(sizeof(cardList_t));
if (new_card)
{
new_card->next = cardList;
cardList = new_card;
new_card->id= id;
new_card->subid= subid;
new_card->videoRam= videoRam;
new_card->model= model;
}
}
cardList_t *FindCardWithIds(uint32_t id, uint32_t subid)
{
cardList_t *entry = cardList;
while(entry)
{
if((entry->id == id) && (entry->subid == subid))
{
return entry;
}
else
{
entry = entry->next;
}
}
// LET A SECOND CHANCE by seaching only for the device-id
entry = cardList;
while(entry)
{
if(entry->id == id)
{
return entry;
}
else
{
entry = entry->next;
}
}
return NULL;
}
void fill_card_list(void)
{
unsigned inti, count;
TagPtrNVDIATag;
char*model_name = NULL;
char*match_id = NULL;
char*sub_id = NULL;
char*vram_size = NULL;
uint32_tdev_id = 0;
uint32_tsubdev_id = 0;
uint64_tVramSize = 0;
if ((NVDIATag = XMLCastArray(XMLGetProperty(bootInfo->chameleonConfig.dictionary, (const char *)"NVIDIA"))))
{
count = XMLTagCount(NVDIATag);
for (i=0; i<count; i++)
{
TagPtr element = XMLGetElement( NVDIATag, i );
if (element)
{
match_id = XMLCastString(XMLGetProperty(element, (const char*)"IOPCIPrimaryMatch")); //device-id
sub_id = XMLCastString(XMLGetProperty(element, (const char*)"IOPCISubDevId")); //sub device-id
model_name = XMLCastString(XMLGetProperty(element, (const char*)"Chipset Name"));
vram_size = XMLCastString(XMLGetProperty(element, (const char*)"VRam Size"));
if (match_id)
{
dev_id = strtoul(match_id, NULL, 16);
}
if (sub_id)
{
subdev_id = strtoul(sub_id, NULL, 16);
}
if (vram_size)
{
VramSize = strtoul(vram_size, NULL, 10);
}
add_card(model_name, dev_id, subdev_id, VramSize);
}
}
}
}
trunk/i386/libsaio/nvidia_helper.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
* Copyright (c) 2012 cparm <armelcadetpetit@gmail.com>. All rights reserved.
*
*/
#ifndef __LIBSAIO_NVIDIA_HELPER_H
#define __LIBSAIO_NVIDIA_HELPER_H
typedef struct cardList_t
{
char*model;
uint32_tid;
uint32_tsubid;
uint64_tvideoRam;
struct cardList_t*next;
} cardList_t;
void add_card(char *model, uint32_t id, uint32_t subid, uint64_t videoRam);
void fill_card_list(void);
cardList_t *FindCardWithIds(uint32_t id, uint32_t subid);
#endif //__LIBSAIO_NVIDIA_HELPER_H
trunk/i386/libsaio/bootstruct.c
134134
135135
136136
137
137
138138
139139
140140
141141
142
143
142144
143145
144146
}
else
{
// for 10.7 10.8 10.9 10.10 10.11
// for 10.7 10.8 10.9 10.10 10.11 10.12 10.13
void *oldAddr = bootArgs;
bootArgs = (boot_args *)AllocateKernelMemory(sizeof(boot_args));
bcopy(oldAddr, bootArgs, sizeof(boot_args));
}
// 10.12 and 10.13 new bootArgs?
}
//==============================================================================
trunk/i386/libsaio/bootargs.h
8888
8989
9090
91
9291
9392
9493
......
148147
149148
150149
151
150
152151
153152
154153
......
158157
159158
160159
161
160
162161
163162
164163
uint32_tv_height;/* Height */
uint32_tv_depth;/* Pixel Depth */
};
typedef struct Boot_VideoBoot_Video;
/* Values for v_display */
#define CSR_ALLOW_UNRESTRICTED_DTRACE(1 << 5) /* Allow unrestricted dtrace */
#define CSR_ALLOW_UNRESTRICTED_NVRAM(1 << 6) /* Allow unrestricted NVRAM */
#define CSR_ALLOW_DEVICE_CONFIGURATION(1 << 7) /* Allow device configuration */
#define CSR_DISABLE_BASESYSTEM_VERIFICATION(1 << 8)
#define CSR_ALLOW_ANY_RECOVERY_OS(1 << 8)
#define CSR_VALID_FLAGS (CSR_ALLOW_UNTRUSTED_KEXTS | \
CSR_ALLOW_UNRESTRICTED_FS | \
CSR_ALLOW_UNRESTRICTED_DTRACE | \
CSR_ALLOW_UNRESTRICTED_NVRAM | \
CSR_ALLOW_DEVICE_CONFIGURATION | \
CSR_DISABLE_BASESYSTEM_VERIFICATION)
CSR_ALLOW_ANY_RECOVERY_OS)
typedef struct boot_args
{
trunk/i386/libsaio/Makefile
3737
3838
3939
40
40
4141
4242
4343
smbios.o smbios_getters.o smbios_decode.o \
fake_efi.o ext2fs.o \
hpet.o dram_controllers.o spd.o usb.o pci_setup.o \
device_inject.o networking.o nvidia_helper.o nvidia.o ati.o gma.o hda.o pci_root.o \
device_inject.o networking.o gfx_helper.o nvidia.o ati.o gma.o hda.o pci_root.o \
convert.o aml_generator.o console.o exfat.o base64-decode.o
SAIO_OBJS := $(addprefix $(OBJROOT)/, $(SAIO_OBJS))
trunk/i386/libsaio/gfx_helper.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
* Copyright (c) 2012 cparm <armelcadetpetit@gmail.com>. All rights reserved.
*
*/
#include "libsaio.h"
#include "bootstruct.h"
#include "xml.h"
#include "gfx_helper.h"
#include "pci.h"
#include "nvidia.h"
/*
NVIDIA card injection usage e.g (to be placed in the boot.plist):
<key>NVIDIA</key>
<array>
<dict>
<key>Chipset Name</key>
<string>Quadro FX 380</string>
<key>IOPCIPrimaryMatch</key>
<string>0x10DE0658</string>
<key>VRam Size</key>
<string>256</string>
</dict>
<dict>
<key>Chipset Name</key>
<string>YOUR_CARD_NAME</string>
<key>IOPCIPrimaryMatch</key>
<string>YOUR_CARD_ID</string>
<key>IOPCISubDevId</key>
<string>YOUR_CARD_SUB_ID(if necessary)</string>
<key>VRam Size</key>
<string>YOUR_CARD_VRAM_SIZE</string>
</dict>
<dict>
<key>Chipset Name</key>
<string>YOUR_SECOND_CARD_NAME</string>
<key>IOPCIPrimaryMatch</key>
<string>YOUR_SECOND_CARD_ID</string>
<key>IOPCISubDevId</key>
<string>YOUR_SECOND_CARD_SUB_ID(if necessary)</string>
<key>VRam Size</key>
<string>YOUR_SECOND_CARD_VRAM_SIZE</string>
</dict>
.
.
.
.
</array>
*/
cardList_t *cardList = NULL;
void add_card(char *model, uint32_t id, uint32_t subid, uint64_t videoRam)
{
cardList_t *new_card = malloc(sizeof(cardList_t));
if (new_card)
{
new_card->next = cardList;
cardList = new_card;
new_card->id= id;
new_card->subid= subid;
new_card->videoRam= videoRam;
new_card->model= model;
}
}
cardList_t *FindCardWithIds(uint32_t id, uint32_t subid)
{
cardList_t *entry = cardList;
while(entry)
{
if((entry->id == id) && (entry->subid == subid))
{
return entry;
}
else
{
entry = entry->next;
}
}
// LET A SECOND CHANCE by seaching only for the device-id
entry = cardList;
while(entry)
{
if(entry->id == id)
{
return entry;
}
else
{
entry = entry->next;
}
}
return NULL;
}
void fill_card_list(void)
{
unsigned inti, count;
TagPtrNVDIATag;
char*model_name = NULL;
char*match_id = NULL;
char*sub_id = NULL;
char*vram_size = NULL;
uint32_tdev_id = 0;
uint32_tsubdev_id = 0;
uint64_tVramSize = 0;
if ((NVDIATag = XMLCastArray(XMLGetProperty(bootInfo->chameleonConfig.dictionary, (const char *)"NVIDIA"))))
{
count = XMLTagCount(NVDIATag);
for (i=0; i<count; i++)
{
TagPtr element = XMLGetElement( NVDIATag, i );
if (element)
{
match_id = XMLCastString(XMLGetProperty(element, (const char*)"IOPCIPrimaryMatch")); //device-id
sub_id = XMLCastString(XMLGetProperty(element, (const char*)"IOPCISubDevId")); //sub device-id
model_name = XMLCastString(XMLGetProperty(element, (const char*)"Chipset Name"));
vram_size = XMLCastString(XMLGetProperty(element, (const char*)"VRam Size"));
if (match_id)
{
dev_id = strtoul(match_id, NULL, 16);
}
if (sub_id)
{
subdev_id = strtoul(sub_id, NULL, 16);
}
if (vram_size)
{
VramSize = strtoul(vram_size, NULL, 10);
}
add_card(model_name, dev_id, subdev_id, VramSize);
}
}
}
}
trunk/i386/libsaio/gfx_helper.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
* Copyright (c) 2012 cparm <armelcadetpetit@gmail.com>. All rights reserved.
*
*/
#ifndef __LIBSAIO_GFX_HELPER_H
#define __LIBSAIO_GFX_HELPER_H
typedef struct cardList_t
{
char*model;
uint32_tid;
uint32_tsubid;
uint64_tvideoRam;
struct cardList_t*next;
} cardList_t;
void add_card(char *model, uint32_t id, uint32_t subid, uint64_t videoRam);
void fill_card_list(void);
cardList_t *FindCardWithIds(uint32_t id, uint32_t subid);
#endif //__LIBSAIO_GFX_HELPER_H
trunk/i386/libsaio/hda.c
110110
111111
112112
113
113
114114
115115
116116
......
215215
216216
217217
218
218
219
220
219221
220222
221223
......
567569
568570
569571
572
573
574
575
570576
571
572577
578
573579
574580
575581
......
819825
820826
821827
822
828
823829
824830
831
825832
826833
827834
......
836843
837844
838845
846
839847
840848
841849
......
846854
847855
848856
857
849858
859
860
861
862
850863
864
851865
852866
853867
......
951965
952966
953967
954
968
969
970
955971
956972
957973
{ HDA_INTEL_OAK,"Oaktrail"/*, 0, 0 */ },
{ HDA_INTEL_BAY,"BayTrail"/*, 0, 0 */ },
{ HDA_INTEL_HSW1,"Haswell"/*, 0, 0 */ },
{ HDA_INTEL_HSW2,"Haswell"/*, 0, 0 */ },
{ HDA_INTEL_SER8HDMI,"Haswell"/*, 0, 0 */ },
{ HDA_INTEL_HSW3,"Haswell"/*, 0, 0 */ },
{ HDA_INTEL_BDW,"Broadwell"/*, 0, 0 */ },
{ HDA_INTEL_BROXTON_T,"Broxton-T"/*, 0, 0 */ },
{ HDA_ATI_RV970,"RV970" /*, 0, 0 */ },
{ HDA_ATI_R1000,"R1000" /*, 0, 0 */ }, // HDMi
{ HDA_ATI_SI,"SI" /*, 0, 0 */ },
{ HDA_ATI_VERDE,"Cape Verde" /*, 0, ? */ }, // HDMi
{ HDA_ATI_OLAND,"Cape Verde" /*, 0, ? */ }, // HDMi
{ HDA_ATI_TAHITI,"Tahiti" /*, 0, ? */ }, // HDMi
{ HDA_ATI_HAWAII,"Hawaii" /*, 0, ? */ }, // HDMi
//17f3 RDC Semiconductor, Inc.
{ HDA_RDC_M3010,"M3010" /*, 0, 0 */ },
{ HDA_CODEC_NVIDIAGTX550, 0, "GTX550" },
{ HDA_CODEC_NVIDIAGTX570, 0, "GTX570" },
{ HDA_CODEC_NVIDIAGT610, 0,"GT610" },
{ HDA_CODEC_NVIDIATEGRA30, 0,"TEGRA30" },
{ HDA_CODEC_NVIDIATEGRA114, 0,"TEGRA114" },
{ HDA_CODEC_NVIDIATEGRA124, 0,"TEGRA124" },
{ HDA_CODEC_NVIDIATEGRA210, 0,"TEGRA210" },
{ HDA_CODEC_INTELIP, 0, "Ibex Peak" },
{ HDA_CODEC_INTELWB, 0, "Haswell" },
{ HDA_CODEC_INTELBL, 0, "Bearlake" },
{ HDA_CODEC_INTELCA, 0, "Cantiga" },
{ HDA_CODEC_INTELEL, 0, "Eaglelake" },
case HDA_INTEL_OAK:
case HDA_INTEL_BAY:
case HDA_INTEL_HSW1:
case HDA_INTEL_HSW2:
case HDA_INTEL_SER8HDMI:
case HDA_INTEL_HSW3:
case HDA_INTEL_BDW:
case HDA_INTEL_BROXTON_T:
case HDA_INTEL_CPT:
case HDA_INTEL_PATSBURG:
case HDA_INTEL_PPT1:
case HDA_INTEL_82801JD:
case HDA_INTEL_PCH:
case HDA_INTEL_PCH2:
case HDA_INTEL_BROXTON_P:
case HDA_INTEL_SCH:
case HDA_INTEL_LPT1:
case HDA_INTEL_LPT2:
case HDA_INTEL_LPTLP1:
case HDA_INTEL_LPTLP2:
case HDA_INTEL_SRSPLP:
case HDA_INTEL_KABYLAKE_LP:
case HDA_INTEL_SRSP:
case HDA_INTEL_KABYLAKE:
case HDA_INTEL_LEWISBURG1:
case HDA_INTEL_LEWISBURG2:
case HDA_INTEL_UNPT:
/* if the key value kHDEFLayoutID as a value set that value, if not will assign a default layout */
if (getValueForKey(kHDEFLayoutID, &value, &len, &bootInfo->chameleonConfig) && len == HDEF_LEN * 2)
{
case HDA_ATI_RV910:
case HDA_ATI_R1000:
case HDA_ATI_SI:
case HDA_ATI_VERDE:
case HDA_ATI_OLAND:
case HDA_ATI_TAHITI:
case HDA_ATI_HAWAII:
if ( do_skip_a_devprop )
{
verbose("Skip ATi/AMD audio device!\n");
trunk/i386/libsaio/hda.h
9999
100100
101101
102
102
103103
104104
105105
......
215215
216216
217217
218
219
220
218
219
220
221221
222222
223223
......
606606
607607
608608
609
610
611
612
609613
610614
611615
......
628632
629633
630634
635
631636
632637
633638
#define HDA_INTEL_OAKHDA_MODEL_CONSTRUCT(INTEL, 0x080a) /* Oaktrail */
#define HDA_INTEL_BAYHDA_MODEL_CONSTRUCT(INTEL, 0x0f04) /* BayTrail */
#define HDA_INTEL_HSW1HDA_MODEL_CONSTRUCT(INTEL, 0x0a0c) /* Haswell */
#define HDA_INTEL_HSW2HDA_MODEL_CONSTRUCT(INTEL, 0x0c0c) /* Haswell */
#define HDA_INTEL_SER8HDMIHDA_MODEL_CONSTRUCT(INTEL, 0x0c0c) /* Haswell */
#define HDA_INTEL_HSW3HDA_MODEL_CONSTRUCT(INTEL, 0x0d0c) /* Haswell */
#define HDA_INTEL_BDWHDA_MODEL_CONSTRUCT(INTEL, 0x160c) /* Broadwell */
#define HDA_INTEL_BROXTON_THDA_MODEL_CONSTRUCT(INTEL, 0x1a98) /* Broxton-T */
#define HDA_ATI_RV910HDA_MODEL_CONSTRUCT(ATI, 0xaa98) /* ATI HDMI */
#define HDA_ATI_R1000HDA_MODEL_CONSTRUCT(ATI, 0xaaa0) /* ATI HDMI */
#define HDA_ATI_SIHDA_MODEL_CONSTRUCT(ATI, 0xaaa8) /* ATI HDMI */
#define HDA_ATI_VERDEHDA_MODEL_CONSTRUCT(ATI, 0xaab0) /* ATI HDMI */
//#define HDA_ATI_AAC0HDA_MODEL_CONSTRUCT(ATI, 0xaac0) /* ATI HDMI */
//#define HDA_ATI_AAC8HDA_MODEL_CONSTRUCT(ATI, 0xaac8) /* ATI HDMI */
#define HDA_ATI_OLANDHDA_MODEL_CONSTRUCT(ATI, 0xaab0) /* ATI HDMI */
#define HDA_ATI_TAHITIHDA_MODEL_CONSTRUCT(ATI, 0xaac0) /* ATI HDMI */
#define HDA_ATI_HAWAIIHDA_MODEL_CONSTRUCT(ATI, 0xaac8) /* ATI HDMI */
//#define HDA_ATI_AAD8HDA_MODEL_CONSTRUCT(ATI, 0xaad8) /* ATI HDMI */
//#define HDA_ATI_AAE8HDA_MODEL_CONSTRUCT(ATI, 0xaae8) /* ATI HDMI */
//#define HDA_ATI_AAE0HDA_MODEL_CONSTRUCT(ATI, 0xaae0) /* ATI HDMI */
#define HDA_CODEC_NVIDIAGTX550 HDA_CODEC_CONSTRUCT(NVIDIA, 0x0015)
#define HDA_CODEC_NVIDIAGTX570 HDA_CODEC_CONSTRUCT(NVIDIA, 0x0018)
#define HDA_CODEC_NVIDIAGT610HDA_CODEC_CONSTRUCT(NVIDIA, 0x001c)
#define HDA_CODEC_NVIDIATEGRA30HDA_CODEC_CONSTRUCT(NVIDIA, 0x0020)
#define HDA_CODEC_NVIDIATEGRA114HDA_CODEC_CONSTRUCT(NVIDIA, 0x0022)
#define HDA_CODEC_NVIDIATEGRA124HDA_CODEC_CONSTRUCT(NVIDIA, 0x0028)
#define HDA_CODEC_NVIDIATEGRA210HDA_CODEC_CONSTRUCT(NVIDIA, 0x0029)
#define HDA_CODEC_NVIDIAMCP67 HDA_CODEC_CONSTRUCT(NVIDIA, 0x0067)
#define HDA_CODEC_NVIDIAMCP73 HDA_CODEC_CONSTRUCT(NVIDIA, 0x8001)
#define HDA_CODEC_NVIDIAXXXX HDA_CODEC_CONSTRUCT(NVIDIA, 0xffff)
/* INTEL */
#define HDA_CODEC_INTELIPHDA_CODEC_CONSTRUCT(INTEL, 0x0054)
#define HDA_CODEC_INTELWBHDA_CODEC_CONSTRUCT(INTEL, 0x0a0c)
#define HDA_CODEC_INTELBLHDA_CODEC_CONSTRUCT(INTEL, 0x2801)
#define HDA_CODEC_INTELCAHDA_CODEC_CONSTRUCT(INTEL, 0x2802)
#define HDA_CODEC_INTELELHDA_CODEC_CONSTRUCT(INTEL, 0x2803)
trunk/i386/libsaio/nvidia.c
5555
5656
5757
58
58
5959
6060
6161
#include "device_inject.h"
#include "convert.h"
#include "nvidia.h"
#include "nvidia_helper.h"
#include "gfx_helper.h"
#if DEBUG_NVIDIA
#define DBG(x...)printf(x)
trunk/i386/libsaio/load.c
209209
210210
211211
212
213212
214213
215214
break;
}
if (ret != 0)
{
return -1;
trunk/i386/libsaio/disk.c
17111711
17121712
17131713
1714
17141715
17151716
17161717
......
18101811
18111812
18121813
1814
1815
1816
1817
1818
1819
18131820
18141821
18151822
......
18701877
18711878
18721879
1880
1881
1882
18731883
1874
1884
18751885
18761886
18771887
......
22202230
22212231
22222232
2223
2233
22242234
22252235
22262236
......
22632273
22642274
22652275
2276
22662277
22672278
22682279
char *YosPattern = "Install%20OS%20X%20Yosemite";
char *ECPattern = "Install%20OS%20X%20El%20Capitan";
char *SierraPattern = "Install%20macOS%20Sierra";
char *HSierraPattern = "Install%20macOS%20High%20Sierra";
/*
* Only look for OS Version on HFS+
fakeOSVersionInt = 12;
valid = true;
}
else if(strstr(val, HSierraPattern))
{
fakeOSVersion = "10.13";
fakeOSVersionInt = 13;
valid = true;
}
else
{
valid = false;
case 12:
fakeOSVersion = "10.12";
break;
case 13:
fakeOSVersion = "10.13";
break;
default:
fakeOSVersion = "10.12";
fakeOSVersion = "10.13";
break;
}
const char *raw = 0;
char* val = 0;
int len;
getValueForKey(kHidePartition, &raw, &len, &bootInfo->chameleonConfig);
if(raw)
{
// Looking for "Hide Partition" entries in 'hd(x,y)|uuid|"label" hd(m,n)|uuid|"label"' format,
// to be able to hide foreign partitions from the boot menu.
if ( (newBVR->flags & kBVFlagForeignBoot) )
{
char *start, *next = val;
trunk/i386/libsaio/smbios.c
495495
496496
497497
498
499
498
499
500500
501501
502502
......
515515
516516
517517
518
519
518
519
520520
521521
522522
#define kDefaultMacProFamily"MacPro" // MacPro's family = "MacPro" not "Mac Pro"
#define kDefaultMacPro"MacPro3,1"
#define kDefaultMacProBIOSVersion" MP31.88Z.006C.B05.0903051113"
#define kDefaultMacProBIOSReleaseDate"08/03/2010"
#define kDefaultMacProBIOSVersion" MP31.88Z.006C.B05.0802291410"
#define kDefaultMacProBIOSReleaseDate"02/29/08"
#define kDefaultMacProBoardProduct"Mac-F42C88C8"
// Mac Pro 4,1 core i7/Xeon
// Mac Pro 6,1
#define kDefaultMacProHaswell"MacPro6,1"
#define kDefaultMacProHaswellBIOSVersion"MP61.88Z.0116.B04.1312061508"
#define kDefaultMacProHaswellBIOSReleaseDate"12/06/2013"
#define kDefaultMacProHaswellBIOSVersion"MP61.88Z.0116.B25.1702171857"
#define kDefaultMacProHaswellBIOSReleaseDate"02/17/2017"
#define kDefaultMacProHaswellBoardProduct"Mac-F60DEB81FF30ACF6"
/* ============================================ */
trunk/i386/libsaio/smbios_decode.c
574574
575575
576576
577
578
579
580
581
582
583
577
578
579
580
581
582
583
584584
585585
586586
//-------------------------------------------------------------------------------------------------------------------------
// Apple Specific (Type 133)
//-------------------------------------------------------------------------------------------------------------------------
//void decodeOemPlatformFeature(SMBStructHeader *structHeader)
//{
//printHeader(structHeader);
//DBG("Apple specific Platform Feature\n");
//DBG("\t%s\n", ((SMBOemPlatformFeature *)structHeader)->PlatformFeature);
//DBG("\n");
//}
void decodeOemPlatformFeature(SMBStructHeader *structHeader)
{
printHeader(structHeader);
DBG("Apple specific Platform Feature\n");
DBG("\t%s\n", ((SMBOemPlatformFeature *)structHeader)->PlatformFeature);
DBG("\n");
}
//-------------------------------------------------------------------------------------------------------------------------
// Specific (Type 134)
trunk/i386/libsaio/smbios.h
134134
135135
136136
137
138
137
138
139139
140140
141141
kSMBTypeMemorySPD= 130, // MemorySPD (TYPE 130)
kSMBTypeOemProcessorType= 131, // Processor Type (Type 131)
kSMBTypeOemProcessorBusSpeed= 132, // Processor Bus Speed (Type 132)
kSMBTypeOemPlatformFeature= 133 // Platform Feature (Type 133)
//kSMBTypeOemSMCVersion= 134 // SMC Version (Type 134)
kSMBTypeOemPlatformFeature= 133, // Platform Feature (Type 133)
kSMBTypeOemSMCVersion= 134 // SMC Version (Type 134)
};
//----------------------------------------------------------------------------------------------------------
trunk/i386/libsaio/stringTable.c
661661
662662
663663
664
665
664666
665667
666668
// Micky1979, the order is important
char *dirspec[] = {
"/com.apple.recovery.boot/com.apple.Boot.plist",// OS X Recovery
"/macOS Install Data/Locked Files/Boot Files/com.apple.Boot.plist",// macOS Upgrade (10.12)+
"/macOS Install Data/com.apple.Boot.plist",// macOS Upgrade (10.12)
"/OS X Install Data/com.apple.Boot.plist",// OS X Upgrade (10.8+)
"/Mac OS X Install Data/com.apple.Boot.plist",// OS X Upgrade (Lion 10.7)
"/.IABootFiles/com.apple.Boot.plist",// OS X Installer
trunk/i386/libsaio/fake_efi.c
627627
628628
629629
630
630
631631
632
632
633633
634634
635635
......
824824
825825
826826
827
827828
828
829
829
830
830831
831
832
833
834
832
833
834
835
835836
836837
837838
DT__AddProperty(efiPlatformNode, CPU_Frequency_prop, sizeof(uint64_t), &Platform.CPU.CPUFrequency);
}
DT__AddProperty(efiPlatformNode,START_POWER_EV, sizeof(STARTUP_POWER_EVENTS), (EFI_UINT8 *) &STARTUP_POWER_EVENTS);
DT__AddProperty(efiPlatformNode, START_POWER_EV, sizeof(STARTUP_POWER_EVENTS), (EFI_UINT8 *) &STARTUP_POWER_EVENTS);
DT__AddProperty(efiPlatformNode,DEV_PATH_SUP, sizeof(DEVICE_PATHS_SUPPORTED), (EFI_UINT8 *) &DEVICE_PATHS_SUPPORTED);
DT__AddProperty(efiPlatformNode, DEV_PATH_SUP, sizeof(DEVICE_PATHS_SUPPORTED), (EFI_UINT8 *) &DEVICE_PATHS_SUPPORTED);
DT__AddProperty(efiPlatformNode, SYSTEM_ID_PROP, UUID_LEN, (EFI_UINT32 *)Platform.UUID);
// Micky1979 : MIMIC booter entry for El Capitan
if ( MacOSVerCurrent >= MacOSVer2Int("10.11") ) // El Capitan
{
verbose("Adding booter spec to the Platform Expert \n");
// booter-build-time (Fri May 22 19:06:42 PDT 2015) DP1
// booter-build-time (Fri Jul 24 17:39:22 PDT 2015) DP7
// booter-build-time (Fri Apr 14 16:21:16 PDT 2017) 10.12.5
DT__AddProperty(chosenNode, "booter-build-time", sizeof(I386BOOT_BUILDDATE), I386BOOT_BUILDDATE);
// booter-name (boot.efi)
DT__AddProperty(chosenNode, "booter-name", sizeof("Enoch"), "Enoch");
// booter-version (version:295.0.0.1.1) DP1
// booter-version (version:304) DP7
// booter-name
DT__AddProperty(chosenNode, "booter-name", sizeof("Chameleon"), "Chameleon");
// booter-version (version:324.50.13) 10.12.5
DT__AddProperty(chosenNode, "booter-version", sizeof(I386BOOT_CHAMELEONREVISION), I386BOOT_CHAMELEONREVISION);
}
}
trunk/i386/boot2/drivers.c
100100
101101
102102
103
103104
104105
105106
......
217218
218219
219220
220
221
222
221223
222224
223225
......
503505
504506
505507
506
508
507509
508510
509511
......
686688
687689
688690
689
691
690692
691693
692694
......
11531155
11541156
11551157
1156
1158
1159
1160
1161
11571162
11581163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
11591179
1160
1161
1180
1181
11621182
11631183
11641184
......
12171237
12181238
12191239
1240
1241
1242
1243
1244
12201245
1221
1246
12221247
12231248
12241249
static long MatchPersonalities(void);
static long MatchLibraries(void);
#ifdef NOTDEF
static ModulePtr FindModule(char *name);
static void ThinFatFile(void **loadAddrP, unsigned long *lengthP);
{
// Next try a specfic OS version folder ie 10.5
sprintf(dirSpecExtra, "bt(0,0)/Extra/%s/", &gMacOSVersion[0]);
if (FileLoadDrivers(dirSpecExtra, 0) != 0) {
if (FileLoadDrivers(dirSpecExtra, 0) != 0)
{
// Next we'll try the base
strlcpy(dirSpecExtra, "bt(0,0)/Extra/", sizeof(dirSpecExtra));
FileLoadDrivers(dirSpecExtra, 0);
char*tmpBundlePath = 0;
longret = -1;
do{
do {
// Save the driver path.
if(name)
if ((length != -1) && executableAddr)
{
// Make make in the image area.
execute_hook("LoadMatchedModules", module, &length, executableAddr, NULL);
driverLength = sizeof(DriverInfo) + module->plistLength + length + module->bundlePathLength;
case 3: kernelOSVer = 0xA0C0200; break;
case 4: kernelOSVer = 0xA0C0300; break;
case 5: kernelOSVer = 0xA0C0400; break;
default:kernelOSVer = 0xA0C0400; break; //Last known kernel (add here updates)
case 6: kernelOSVer = 0xA0C0500; break;
case 7: kernelOSVer = 0xA0C0600; break;
//case 8: kernelOSVer = 0xA0C0700; break;
default:kernelOSVer = 0xA0C0600; break; //Last known kernel (add here updates)
}
break;
//case 17: /* High Sierra */
//switch (gDarwinMinor)
//{
//case 0: kernelOSVer = 0xA0C0000; break;
//case 1: kernelOSVer = 0xA0C0100; break;
//case 2: kernelOSVer = 0xA0C0200; break;
//case 3: kernelOSVer = 0xA0C0200; break;
//case 4: kernelOSVer = 0xA0C0300; break;
//case 5: kernelOSVer = 0xA0C0400; break;
//case 6: kernelOSVer = 0xA0C0500; break;
//case 7: kernelOSVer = 0xA0C0600; break;
//case 8: kernelOSVer = 0xA0C0700; break;
//default:kernelOSVer = 0xA0C0600; break; //Last known kernel (add here updates)
//}
//break;
default:
kernelOSVer = 0xA0C0400;
break; //Last known kernel is Sierra 10.12.4
kernelOSVer = 0xA0C0600;
break; //Last known kernel is Sierra 10.12.6
}
}
else
case 0xA0C0200: gDarwinMajor = 16; gDarwinMinor = 3; gDarwinRev = 0; break; // 10.12.2
case 0xA0C0300: gDarwinMajor = 16; gDarwinMinor = 4; gDarwinRev = 0; break; // 10.12.3
case 0xA0C0400: gDarwinMajor = 16; gDarwinMinor = 5; gDarwinRev = 0; break; // 10.12.4
case 0xA0C0500: gDarwinMajor = 16; gDarwinMinor = 6; gDarwinRev = 0; break; // 10.12.5
case 0xA0C0600: gDarwinMajor = 16; gDarwinMinor = 7; gDarwinRev = 0; break; // 10.12.6
//case 0xA0C0700: gDarwinMajor = 16; gDarwinMinor = x; gDarwinRev = x; break; // 10.12.7
// High Sierra
// default = last known kernel
default: gDarwinMajor = 16; gDarwinMinor = 5; gDarwinRev = 0; break; // 10.12.4;
default: gDarwinMajor = 16; gDarwinMinor = 7; gDarwinRev = 0; break; // 10.12.6;
}
}
trunk/i386/boot2/boot.c
11551155
11561156
11571157
1158
1159
1158
1159
11601160
11611161
11621162
......
12521252
12531253
12541254
1255
1255
1256
12561257
12571258
12581259
// ===============================================================================
bootArgs->csrCapabilities= CSR_VALID_FLAGS;
bootArgs->boot_SMC_plimit= 0;
bootArgs->csrCapabilities= CSR_VALID_FLAGS;
bootArgs->boot_SMC_plimit= 0;
}
}
unsigned long s2 = 0; // (adler >> 16) & 0xffff;
unsigned long result;
while (len > 0) {
while (len > 0)
{
k = len < NMAX ? len : NMAX;
len -= k;
while (k >= 16)
trunk/i386/boot2/boot.h
3030
3131
3232
33
3334
3435
3536
#include "libsaio.h"
// OS X Versions
#define HSIERRA checkOSVersion("10.13") // High Sierra
#define SIERRA checkOSVersion("10.12") // Sierra
#define ELCAPITAN checkOSVersion("10.11") // El Capitan
#define YOSEMITE checkOSVersion("10.10") // Yosemite
trunk/i386/boot2/gui.c
5151
5252
5353
54
55
5456
5557
5658
......
7274
7375
7476
77
78
7579
7680
7781
......
96100
97101
98102
103
104
99105
100106
101107
......
162168
163169
164170
171
172
165173
166174
167175
......
183191
184192
185193
194
195
186196
187197
188198
......
207217
208218
209219
220
221
210222
211223
212224
......
426438
427439
428440
441
442
429443
430444
431445
......
447461
448462
449463
464
465
450466
451467
452468
......
469485
470486
471487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
472503
473504
474505
......
11251156
11261157
11271158
1159
1160
1161
1162
11281163
11291164
11301165
iDeviceGeneric_o,
iDeviceHFS,
iDeviceHFS_o,
iDeviceHFS_hsi,
iDeviceHFS_hsi_o,
iDeviceHFS_sie,
iDeviceHFS_sie_o,
iDeviceHFS_cap,
iDeviceHFSRAID,
iDeviceHFSRAID_o,
iDeviceHFSRAID_hsi,
iDeviceHFSRAID_hsi_o,
iDeviceHFSRAID_sie,
iDeviceHFSRAID_sie_o,
iDeviceHFSRAID_cap,
iDeviceHFSFUSION,
iDeviceHFSFUSION_o,
iDeviceHFSFUSION_hsi,
iDeviceHFSFUSION_hsi_o,
iDeviceHFSFUSION_sie,
iDeviceHFSFUSION_sie_o,
iDeviceHFSFUSION_cap,
{.name = "device_generic_o", .image = NULL},
{.name = "device_hfsplus", .image = NULL},
{.name = "device_hfsplus_o", .image = NULL},
{.name = "device_hfsplus_hsi", .image = NULL},
{.name = "device_hfsplus_hsi_o", .image = NULL},
{.name = "device_hfsplus_sie", .image = NULL},
{.name = "device_hfsplus_sie_o", .image = NULL},
{.name = "device_hfsplus_cap", .image = NULL},
{.name = "device_hfsraid", .image = NULL},
{.name = "device_hfsraid_o", .image = NULL},
{.name = "device_hfsraid_hsi", .image = NULL},
{.name = "device_hfsraid_hsi_o", .image = NULL},
{.name = "device_hfsraid_sie", .image = NULL},
{.name = "device_hfsraid_sie_o", .image = NULL},
{.name = "device_hfsraid_cap", .image = NULL},
{.name = "device_hfsfusion", .image = NULL},
{.name = "device_hfsfusion_o", .image = NULL},
{.name = "device_hfsfusion_hsi", .image = NULL},
{.name = "device_hfsfusion_hsi_o", .image = NULL},
{.name = "device_hfsfusion_sie", .image = NULL},
{.name = "device_hfsfusion_sie_o", .image = NULL},
{.name = "device_hfsfusion_cap", .image = NULL},
LOADPNG(device_hfsplus, iDeviceGeneric);
LOADPNG(device_hfsplus_o, iDeviceHFS);
LOADPNG(device_hfsplus_hsi, iDeviceHFS);
LOADPNG(device_hfsplus_hsi_o, iDeviceHFS_hsi);
LOADPNG(device_hfsplus_sie, iDeviceHFS);
LOADPNG(device_hfsplus_sie_o, iDeviceHFS_sie);
LOADPNG(device_hfsplus_cap, iDeviceHFS);
LOADPNG(device_hfsraid, iDeviceHFS);
LOADPNG(device_hfsraid_o, iDeviceHFSRAID);
LOADPNG(device_hfsraid_hsi, iDeviceHFSRAID);
LOADPNG(device_hfsraid_hsi_o, iDeviceHFSRAID_hsi);
LOADPNG(device_hfsraid_sie, iDeviceHFSRAID);
LOADPNG(device_hfsraid_sie_o, iDeviceHFSRAID_sie);
LOADPNG(device_hfsraid_cap, iDeviceHFSRAID);
LOADPNG(device_hfsplus_recovery, iDeviceHFS);
LOADPNG(device_hfsplus_recovery_o, iDeviceHFSRECOVERY);
LOADPNG(device_hfsfusion, iDeviceHFS);
LOADPNG(device_hfsfusion_o, iDeviceHFSFUSION);
LOADPNG(device_hfsfusion_hsi, iDeviceHFSFUSION);
LOADPNG(device_hfsfusion_hsi_o, iDeviceHFSFUSION_hsi);
LOADPNG(device_hfsfusion_sie, iDeviceHFSFUSION);
LOADPNG(device_hfsfusion_sie_o, iDeviceHFSFUSION_sie);
LOADPNG(device_hfsfusion_cap, iDeviceHFSFUSION);
LOADPNG(device_hfsfusion_cap_o, iDeviceHFSFUSION_cap);
LOADPNG(device_hfsfusion_yos, iDeviceHFSFUSION);
LOADPNG(device_hfsfusion_yos_o, iDeviceHFSFUSION_yos);
LOADPNG(device_hfsfusion_mav, iDeviceHFSFUSION);
LOADPNG(device_hfsfusion_mav_o, iDeviceHFSFUSION_mav);
LOADPNG(device_hfsfusion_ml, iDeviceHFSFUSION);
LOADPNG(device_hfsfusion_ml_o, iDeviceHFSFUSION_ML);
LOADPNG(device_ext3, iDeviceGeneric);
LOADPNG(device_ext3_o, iDeviceEXT3);
LOADPNG(device_freebsd, iDeviceGeneric); /* FreeBSD/OpenBSD detection,nawcom's code by valv, Icon credits to blackosx */
devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_sie : iDeviceHFS_sie); // Sierra
break;
}
if (device->OSVersion[4] == '3') { // 10.13
devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_hsi : iDeviceHFS_hsi); // Sierra
break;
}
default:
devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID : iDeviceHFS);
break;
trunk/i386/boot2/options.c
377377
378378
379379
380
380
381381
382382
383383
......
13841384
13851385
13861386
1387
1387
13881388
13891389
13901390
//==========================================================================
static const MenuItem * gMenuItems = NULL;
static const MenuItem *gMenuItems = NULL;
static int gMenuItemCount;
static int gMenuRow;
gOverrideKernel = true;
}
// Ermac : Inject "kext-dev-mode=1" if OS X 10.10 is detected
// ErmaC: Inject "kext-dev-mode=1" if OS X 10.10 is detected
if ( (gMacOSVersion[3] == '1') && (gMacOSVersion[4] == '0') ) // OS X is 10.10
{
verbose("Added: kext-dev-mode=1\n");
trunk/package/Distribution
4343
4444
4545
46
47
48
49
50
51
52
53
54
55
56
57
58
59
4660
4761
4862
}
}
var kextsPlist = null;
if (my.target)
{
var kexts_plist_filenames = new Array( 'kexts.plist' );
for ( var i = 0; i &lt; kexts_plist_filenames.length; i++ )
{
kextsPlist = system.files.plistAtPath( my.target.mountpoint + '/Extra/' + kexts_plist_filenames[i] );
if (kextsPlist)
{
break;
}
}
}
function installCheckScript()
{
var obj = system.ioregistry.matchingClass("AppleSMC");
trunk/package/OptionalSettings/CrsActiveConfig.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# ---------------------------------------------
# Chameleon Optional Settings List.
# ---------------------------------------------
# Add boot options or kernel flags to the bottom of this file.
# They will appear under the package installer's Settings menu
# in a sub menu named with the filename of this file.
# Use one file or many files - it's flexible to make it easy
# to group different options under separate sub menus.
# ---------------------------------------------
# To add boot option: Structure is:
# type@name:key=value
# example1: Bool@InstantMenu:Instant Menu=Yes
# example2: Text@1024x600x32:Graphics Mode=1024x600x32
# example3: List@Npci:Kernel Flags=npci=0x2000
# ---------------------------------------------
# type can be: Bool, Text or List
# ---------------------------------------------
# The package installer has a setting which controls what
# the user is allowed to choose.
# A) User can select every option from the list.
# B) User can select only one of the options from the list.
# Set Exclusive=False for A, or Exclusive=True for B.
#
Exclusive=False
# ---------------------------------------------
# Note: There must be a carriage return at end of last line
# ---------------------------------------------
Text@Crs1:CrsActiveConfig=1
Text@Crs2:CrsActiveConfig=2
Text@Crs4:CrsActiveConfig=4
Text@Crs8:CrsActiveConfig=8
Text@Crs16:CrsActiveConfig=16
Text@Crs32:CrsActiveConfig=32
Text@Crs64:CrsActiveConfig=64
Text@Crs128:CrsActiveConfig=128
trunk/package/OptionalSettings/CsrActiveConfig.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# ---------------------------------------------
# Chameleon Optional Settings List.
# ---------------------------------------------
# Add boot options or kernel flags to the bottom of this file.
# They will appear under the package installer's Settings menu
# in a sub menu named with the filename of this file.
# Use one file or many files - it's flexible to make it easy
# to group different options under separate sub menus.
# ---------------------------------------------
# To add boot option: Structure is:
# type@name:key=value
# example1: Bool@InstantMenu:Instant Menu=Yes
# example2: Text@1024x600x32:Graphics Mode=1024x600x32
# example3: List@Npci:Kernel Flags=npci=0x2000
# ---------------------------------------------
# type can be: Bool, Text or List
# ---------------------------------------------
# The package installer has a setting which controls what
# the user is allowed to choose.
# A) User can select every option from the list.
# B) User can select only one of the options from the list.
# Set Exclusive=False for A, or Exclusive=True for B.
#
Exclusive=True
# ---------------------------------------------
# Note: There must be a carriage return at end of last line
# ---------------------------------------------
Text@Csr1:CsrActiveConfig=1
Text@Csr2:CsrActiveConfig=2
Text@Csr4:CsrActiveConfig=4
Text@Csr8:CsrActiveConfig=8
Text@Csr16:CsrActiveConfig=16
Text@Csr32:CsrActiveConfig=32
Text@Csr64:CsrActiveConfig=64
Text@Csr128:CsrActiveConfig=128
trunk/package/OptionalSettings/Control.txt
3030
3131
3232
33
33
3434
3535
3636
Bool@LegacyLogo:Legacy Logo=Yes
#Bool@RebootOnPanic:RebootOnPanic=No
#Bool@EnableHiDPI:EnableHiDPI=Yes
#Bool@BlackMode:BlackMode=Yes
Bool@BlackMode:BlackMode=Yes
Bool@InstantMenu:Instant Menu=Yes
Bool@QuietBoot:QuietBoot=Yes
Bool@ShowInfo:ShowInfo=Yes
trunk/package/Resources/templates/Localizable.strings
295295
296296
297297
298
299
298
299
300300
301
302
301
302
303303
304
305
304
305
306306
307
308
307
308
309309
310
311
310
311
312312
313
314
313
314
315315
316
317
316
317
318318
319
320
319
320
321321
322322
323323
......
879879
880880
881881
882
883
884
882
883
884
885885
886886
887887
......
942942
943943
944944
945
946
947
948
945
946
947
948
949
949950
950951
951952
......
975976
976977
977978
979
978980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
9791007
9801008
9811009
// ----------------------------------------------------------------------------
"Crs1_title" = "CRS_ALLOW_UNTRUSTED_KEXTS";
"Crs1_description" = "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP).";
"Csr1_title" = "CSR_ALLOW_UNTRUSTED_KEXTS";
"Csr1_description" = "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP).";
"Crs2_title" = "CRS_ALLOW_UNRESTRICTED_FS";
"Crs2_description" = "Filesystem protection: Important system files are protected and cannot be modified.";
"Csr2_title" = "CSR_ALLOW_UNRESTRICTED_FS";
"Csr2_description" = "Filesystem protection: Important system files are protected and cannot be modified.";
"Crs4_title" = "CRS_ALLOW_TASK_FOR_PID";
"Crs4_description" = "Disable CRS_ALLOW_TASK_FOR_PID";
"Csr4_title" = "CSR_ALLOW_TASK_FOR_PID";
"Csr4_description" = "Disable CSR_ALLOW_TASK_FOR_PID";
"Crs8_title" = "CRS_ALLOW_KERNEL_DEBUGGER";
"Crs8_description" = "Disable CRS_ALLOW_KERNEL_DEBUGGER";
"Csr8_title" = "CSR_ALLOW_KERNEL_DEBUGGER";
"Csr8_description" = "Disable CSR_ALLOW_KERNEL_DEBUGGER";
"Crs16_title" = "CRS_ALLOW_APPLE_INTERNAL";
"Crs16_description" = "Disable CRS_ALLOW_APPLE_INTERNAL";
"Csr16_title" = "CSR_ALLOW_APPLE_INTERNAL";
"Csr16_description" = "Disable CSR_ALLOW_APPLE_INTERNAL";
"Crs32_title" = "CRS_ALLOW_UNRESTRICTED_DTRACE";
"Crs32_description" = "Disable CRS_ALLOW_UNRESTRICTED_DTRACE";
"Csr32_title" = "CSR_ALLOW_UNRESTRICTED_DTRACE";
"Csr32_description" = "Disable CSR_ALLOW_UNRESTRICTED_DTRACE";
"Crs64_title" = "CRS_ALLOW_UNRESTRICTED_NVRAM";
"Crs64_description" = "Disable CRS_ALLOW_UNRESTRICTED_NVRAM";
"Csr64_title" = "CSR_ALLOW_UNRESTRICTED_NVRAM";
"Csr64_description" = "Disable CSR_ALLOW_UNRESTRICTED_NVRAM";
"Crs128_title" = "CRS_ALLOW_DEVICE_CONFIGURATION";
"Crs128_description" = "Disable CRS_ALLOW_DEVICE_CONFIGURATION";
"Csr128_title" = "CSR_ALLOW_DEVICE_CONFIGURATION";
"Csr128_description" = "Disable CSR_ALLOW_DEVICE_CONFIGURATION";
// ----------------------------------------------------------------------------
"Control_title" = "Control Options";
"Control_description" = "Settings to control how Chameleon works.";
// CrsActiveConfig
"CrsActiveConfig_title" = "CrsActiveConfig";
"CrsActiveConfig_description" = "System Integrity Protection (SIP).";
// CsrActiveConfig
"CsrActiveConfig_title" = "CsrActiveConfig";
"CsrActiveConfig_description" = "System Integrity Protection (SIP).";
// General
"General_title" = "General Options";
// ----------------------------------------------------------------------------
// Patches
"Patches_title" = "Patches";
"Patches_description" = "A selection of options to patch the kernel.";
// kernel Patcher
"kernelPatcher_title" = "kernel Patcher";
"Patches_title" = "Embedded Patcher";
"Patches_description" = "A selection of options to patch the Kernel and Kexts.";
// enbedded kernel Patcher
"kernelPatcher_title" = "Embedded Kernel Patch";
"kernelPatcher_description" = "Select one patch for your kernel.";
// KernelBooter_kexts
// KernelSSE3
"KernelSSE3_title" = "KernelSSE3";
"KernelSSE3_description" = "Patch to enable more SSE3 instructions on older CPUs to run newer OSes.";
// ============================================================================
// Patches - The follow options are for the internal KextsPatcher
// In the future here we can add something else regarding any patches made
// by the bootloader
// ----------------------------------------------------------------------------
// enbedded Kexts Patcher
"kextsPatcher_title" = "Embedded Kexts Patch";
"kextsPatcher_description" = "A selection of options to patch kexts.";
// KernelBooter_kexts
"AppleRTCPatch_title" = "AppleRTC Patch";
"AppleRTCPatch_description" = "Patch AppleRTC.";
// KernelPm
"OrangeIconFixSata_title" = "OrangeIcon Fix";
"OrangeIconFixSata_description" = "Fix OrangeIcon.";
// KernelLapicError
"TrimEnablerSata_title" = "TrimEnabler Sata";
"TrimEnablerSata_description" = "Sata TrimEnabler.";
// KernelLapicVersion
"AICPMPatch_title" = "AICPM Patch";
"AICPMPatch_description" = "Patch AICPM.";
// ============================================================================
// Themes
// ----------------------------------------------------------------------------
trunk/package/po/ar.po
7575
7676
7777
78
79
80
81
82
83
84
78
79
8580
8681
8782
......
9186
9287
9388
94
95
96
89
9790
9891
9992
100
101
93
10294
10395
10496
......
113105
114106
115107
116
117
118
119
108
109
120110
121111
122112
......
155145
156146
157147
158
159
148
160149
161150
162151
......
201190
202191
203192
204
205
206
193
207194
208195
209196
......
448435
449436
450437
451
452
438
453439
454440
455441
......
489475
490476
491477
492
493
478
494479
495
480
496481
497482
498483
......
510495
511496
512497
513
498
514499
515500
516501
......
522507
523508
524509
525
526
510
527511
528
512
529513
530514
531515
......
537521
538522
539523
540
541
524
542525
543
526
544527
545528
546529
......
552535
553536
554537
555
556
538
557539
558
540
559541
560542
561543
......
567549
568550
569551
570
571
552
572553
573
554
574555
575556
576557
......
12401221
12411222
12421223
1243
1224
12441225
12451226
1246
1227
12471228
12481229
1249
1230
12501231
12511232
12521233
12531234
12541235
1255
1236
12561237
12571238
1258
1239
12591240
12601241
1261
1242
12621243
12631244
12641245
12651246
12661247
1267
1248
12681249
12691250
1270
1251
12711252
12721253
1273
1254
12741255
12751256
1276
1257
12771258
12781259
1279
1260
12801261
12811262
1282
1263
12831264
12841265
1285
1266
12861267
12871268
1288
1269
12891270
12901271
1291
1272
12921273
12931274
1294
1275
12951276
12961277
1297
1278
12981279
12991280
1300
1281
13011282
13021283
1303
1284
13041285
13051286
1306
1287
13071288
13081289
1309
1290
13101291
13111292
1312
1293
13131294
13141295
1315
1296
13161297
13171298
1318
1299
13191300
13201301
1321
1302
13221303
13231304
1324
1305
13251306
13261307
1327
1308
13281309
13291310
1330
1311
13311312
13321313
1333
1314
13341315
13351316
1336
1317
13371318
13381319
13391320
1340
1341
1321
13421322
13431323
13441324
......
13521332
13531333
13541334
1355
1356
1335
13571336
13581337
13591338
......
13671346
13681347
13691348
1370
1371
1349
13721350
13731351
13741352
......
13821360
13831361
13841362
1385
1386
1363
13871364
13881365
13891366
......
13971374
13981375
13991376
1400
1401
1377
14021378
14031379
14041380
......
14121388
14131389
14141390
1415
1416
1391
14171392
14181393
14191394
......
14271402
14281403
14291404
1430
1431
1405
14321406
14331407
14341408
......
14421416
14431417
14441418
1445
1446
1419
14471420
14481421
14491422
......
14571430
14581431
14591432
1460
1461
1433
14621434
14631435
14641436
......
14721444
14731445
14741446
1475
1476
1447
14771448
14781449
14791450
......
14871458
14881459
14891460
1490
1491
1461
14921462
14931463
14941464
......
15021472
15031473
15041474
1505
1506
1475
15071476
15081477
15091478
......
15171486
15181487
15191488
1520
1521
1489
15221490
15231491
15241492
......
15321500
15331501
15341502
1535
1536
1503
15371504
15381505
15391506
......
15471514
15481515
15491516
1550
1551
1517
15521518
15531519
15541520
......
15621528
15631529
15641530
1565
1566
1531
15671532
15681533
15691534
......
15771542
15781543
15791544
1580
1581
1545
15821546
15831547
15841548
......
15921556
15931557
15941558
1595
1596
1559
15971560
15981561
15991562
......
16071570
16081571
16091572
1610
1611
1573
16121574
16131575
16141576
......
16221584
16231585
16241586
1625
1626
1587
16271588
16281589
16291590
......
16371598
16381599
16391600
1640
1641
1601
16421602
16431603
16441604
......
16521612
16531613
16541614
1655
1656
1615
16571616
16581617
16591618
......
16671626
16681627
16691628
1670
1671
1629
16721630
16731631
16741632
......
16821640
16831641
16841642
1685
1686
1643
16871644
16881645
16891646
......
16971654
16981655
16991656
1700
1701
1657
17021658
17031659
17041660
......
17121668
17131669
17141670
1715
1716
1671
17171672
17181673
17191674
......
31793134
31803135
31813136
3182
3137
31833138
31843139
3185
3140
31863141
31873142
3188
3143
31893144
31903145
31913146
......
33443299
33453300
33463301
3347
3348
3302
3303
33493304
33503305
33513306
33523307
3353
3308
33543309
33553310
33563311
3357
3358
3359
3360
3361
3312
3313
3314
3315
33623316
33633317
3364
3318
33653319
33663320
33673321
33683322
33693323
3370
3324
33713325
33723326
33733327
33743328
33753329
3376
3330
33773331
33783332
33793333
33803334
33813335
3382
3383
3384
3336
3337
33853338
3386
3339
33873340
33883341
3389
3342
33903343
33913344
33923345
33933346
33943347
3395
3396
3397
3348
3349
33983350
3399
3351
34003352
34013353
3402
3354
34033355
34043356
34053357
34063358
34073359
3408
3409
3410
3360
3361
34113362
3412
3363
34133364
34143365
3415
3366
34163367
34173368
34183369
34193370
34203371
3421
3372
34223373
34233374
34243375
34253376
34263377
3427
3378
34283379
34293380
34303381
34313382
34323383
3433
3384
34343385
34353386
34363387
34373388
34383389
3439
3390
34403391
34413392
34423393
34433394
34443395
3445
3396
34463397
34473398
34483399
34493400
34503401
3451
3402
34523403
34533404
34543405
34553406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
34563467
3457
3468
34583469
34593470
34603471
34613472
34623473
3463
3474
34643475
34653476
34663477
34673478
34683479
34693480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
34703501
34713502
34723503
3473
3474
3504
34753505
34763506
34773507
34783508
34793509
3480
3481
3482
3483
3484
3485
3486
3510
3511
34873512
34883513
34893514
34903515
3491
3492
3493
3494
3495
3496
3497
3516
3517
#. type: Content of: <html><body><p>
#: Resources/templates/Description.html:18
msgid ""
"Chameleon is a boot loader built using a combination of components which "
"evolved from the development of David Elliott's fake EFI implementation "
"added to Apple's boot-132 project."
msgstr ""
"الحرباء هو محمل تمهيد بنى بإستخدام مزيج من المكونات التى طورت من تطوير ديفيد "
"إليوت لتنفيذ إي إف آى وهمى مضاف لمشروع آبل تمهيد-132 ."
msgid "Chameleon is a boot loader built using a combination of components which evolved from the development of David Elliott's fake EFI implementation added to Apple's boot-132 project."
msgstr "الحرباء هو محمل تمهيد بنى بإستخدام مزيج من المكونات التى طورت من تطوير ديفيد إليوت لتنفيذ إي إف آى وهمى مضاف لمشروع آبل تمهيد-132 ."
#. type: Content of: <html><body><p>
#: Resources/templates/Description.html:20
#. type: Content of: <html><body><p>
#: Resources/templates/Description.html:22
msgid "- Fully customizable GUI to bring some color to the Darwin Bootloader."
msgstr ""
"- واجهة إستخدام رسومية قابلة للتعديل بالكامل لإعطاء ألوان جديدة لمحمل تمهيد "
"داروين ."
msgstr "- واجهة إستخدام رسومية قابلة للتعديل بالكامل لإعطاء ألوان جديدة لمحمل تمهيد داروين ."
#. type: Content of: <html><body><p>
#: Resources/templates/Description.html:23
msgid ""
"- Load a ramdisk to directly boot retail DVDs without additional programs."
msgid "- Load a ramdisk to directly boot retail DVDs without additional programs."
msgstr "- تحميل قرص رام للتمهيد المباشر للدي في دي الأصلية بدون برامج إضافية ."
#. type: Content of: <html><body><p>
#. type: Content of: <html><body><p>
#: Resources/templates/Description.html:26
msgid ""
"- DSDT override to use a modified fixed DSDT which can solve several issues."
msgstr ""
"الكتابة فوق الجدول DSDT، تكون قادرة على تحديد محسنة أن يحل العديد من المشاكل."
msgid "- DSDT override to use a modified fixed DSDT which can solve several issues."
msgstr "الكتابة فوق الجدول DSDT، تكون قادرة على تحديد محسنة أن يحل العديد من المشاكل."
#. type: Content of: <html><body><p>
#: Resources/templates/Description.html:27
#. type: Content of: <html><body><p>
#: Resources/templates/Description.html:34
msgid ""
"- Automatic P-State &amp; C-State generation for native power management."
msgid "- Automatic P-State &amp; C-State generation for native power management."
msgstr "--التلقائية جيل ف الدولة والدولة ج."
#. type: Content of: <html><body><p>
#. type: Content of: <html><body><div><p>
#: Resources/templates/Conclusion.html:26
msgid ""
"&nbsp;to find out if the installation was successful and keep it for a "
"record of what was done."
msgid "&nbsp;to find out if the installation was successful and keep it for a record of what was done."
msgstr "&nbsp;لمعرفة ما إذا كان التنصيب تم بنجاح وأتركه كتسجيل لما تم ."
#. type: Content of: <html><body><div><p>
msgstr ""
#. type: "Resolution_title"
#: Resources/templates/Localizable.strings:81
#: Resources/templates/Localizable.strings:899
#: Resources/templates/Localizable.strings:81 Resources/templates/Localizable.strings:899
#, no-wrap
msgid "Resolution"
msgstr "الدقة"
#. type: "KernelPatcher_title"
#: Resources/templates/Localizable.strings:92
#, fuzzy, no-wrap
#| msgid "UseKernelCache=Yes"
#, no-wrap
msgid "Kernel Patcher"
msgstr "UseKernelCache=Yes"
msgstr "‫Kernel Patcher"
#. type: "KernelPatcher_description"
#: Resources/templates/Localizable.strings:93
#: Resources/templates/Localizable.strings:100
#, no-wrap
msgid "Kext Patcher"
msgstr ""
msgstr "‫Kext Patcher"
#. type: "KextPatcher_description"
#: Resources/templates/Localizable.strings:101
#. type: "NVIDIAGraphicsEnabler_title"
#: Resources/templates/Localizable.strings:104
#, fuzzy, no-wrap
#| msgid "GraphicsEnabler=Yes"
#, no-wrap
msgid "NVIDIAGraphicsEnabler"
msgstr "GraphicsEnabler=Yes"
msgstr "‫NVIDIAGraphicsEnabler"
#. type: "NVIDIAGraphicsEnabler_description"
#: Resources/templates/Localizable.strings:105
#. type: "GraphicsEnablerModule_title"
#: Resources/templates/Localizable.strings:108
#, fuzzy, no-wrap
#| msgid "GraphicsEnabler=Yes"
#, no-wrap
msgid "GraphicsEnabler"
msgstr "GraphicsEnabler=Yes"
msgstr "‫GraphicsEnabler"
#. type: "GraphicsEnablerModule_description"
#: Resources/templates/Localizable.strings:109
#. type: "AMDGraphicsEnabler_title"
#: Resources/templates/Localizable.strings:112
#, fuzzy, no-wrap
#| msgid "GraphicsEnabler=Yes"
#, no-wrap
msgid "AMDGraphicsEnabler"
msgstr "GraphicsEnabler=Yes"
msgstr "‫AMDGraphicsEnabler"
#. type: "AMDGraphicsEnabler_description"
#: Resources/templates/Localizable.strings:113
#. type: "IntelGraphicsEnabler_title"
#: Resources/templates/Localizable.strings:116
#, fuzzy, no-wrap
#| msgid "GraphicsEnabler=Yes"
#, no-wrap
msgid "IntelGraphicsEnabler"
msgstr "GraphicsEnabler=Yes"
msgstr "‫IntelGraphicsEnabler"
#. type: "IntelGraphicsEnabler_description"
#: Resources/templates/Localizable.strings:117
msgid "Set Graphics Mode to 1920x1200x32"
msgstr ""
#. type: "Crs1_title"
#. type: "Csr1_title"
#: Resources/templates/Localizable.strings:298
#, no-wrap
msgid "CRS_ALLOW_UNTRUSTED_KEXTS"
msgid "CSR_ALLOW_UNTRUSTED_KEXTS"
msgstr ""
#. type: "Crs1_description"
#. type: "Csr1_description"
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP)."
msgstr ""
#. type: "Crs2_title"
#. type: "Csr2_title"
#: Resources/templates/Localizable.strings:301
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_FS"
msgid "CSR_ALLOW_UNRESTRICTED_FS"
msgstr ""
#. type: "Crs2_description"
#. type: "Csr2_description"
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid "Filesystem protection: Important system files are protected and cannot be modified."
msgstr ""
#. type: "Crs4_title"
#. type: "Csr4_title"
#: Resources/templates/Localizable.strings:304
#, no-wrap
msgid "CRS_ALLOW_TASK_FOR_PID"
msgid "CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs4_description"
#. type: "Csr4_description"
#: Resources/templates/Localizable.strings:305
#, no-wrap
msgid "Disable CRS_ALLOW_TASK_FOR_PID"
msgid "Disable CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs8_title"
#. type: "Csr8_title"
#: Resources/templates/Localizable.strings:307
#, no-wrap
msgid "CRS_ALLOW_KERNEL_DEBUGGER"
msgid "CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs8_description"
#. type: "Csr8_description"
#: Resources/templates/Localizable.strings:308
#, no-wrap
msgid "Disable CRS_ALLOW_KERNEL_DEBUGGER"
msgid "Disable CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs16_title"
#. type: "Csr16_title"
#: Resources/templates/Localizable.strings:310
#, no-wrap
msgid "CRS_ALLOW_APPLE_INTERNAL"
msgid "CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs16_description"
#. type: "Csr16_description"
#: Resources/templates/Localizable.strings:311
#, no-wrap
msgid "Disable CRS_ALLOW_APPLE_INTERNAL"
msgid "Disable CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs32_title"
#. type: "Csr32_title"
#: Resources/templates/Localizable.strings:313
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs32_description"
#. type: "Csr32_description"
#: Resources/templates/Localizable.strings:314
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "Disable CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs64_title"
#. type: "Csr64_title"
#: Resources/templates/Localizable.strings:316
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs64_description"
#. type: "Csr64_description"
#: Resources/templates/Localizable.strings:317
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "Disable CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs128_title"
#. type: "Csr128_title"
#: Resources/templates/Localizable.strings:319
#, no-wrap
msgid "CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "Crs128_description"
#. type: "Csr128_description"
#: Resources/templates/Localizable.strings:320
#, no-wrap
msgid "Disable CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "Disable CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "HDAULayoutIDx01_title"
#: Resources/templates/Localizable.strings:324
#: Resources/templates/Localizable.strings:430
#: Resources/templates/Localizable.strings:324 Resources/templates/Localizable.strings:430
#, no-wrap
msgid "LayoutID=1"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx02_title"
#: Resources/templates/Localizable.strings:328
#: Resources/templates/Localizable.strings:434
#: Resources/templates/Localizable.strings:328 Resources/templates/Localizable.strings:434
#, no-wrap
msgid "LayoutID=2"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx03_title"
#: Resources/templates/Localizable.strings:332
#: Resources/templates/Localizable.strings:438
#: Resources/templates/Localizable.strings:332 Resources/templates/Localizable.strings:438
#, no-wrap
msgid "LayoutID=3"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx05_title"
#: Resources/templates/Localizable.strings:336
#: Resources/templates/Localizable.strings:442
#: Resources/templates/Localizable.strings:336 Resources/templates/Localizable.strings:442
#, no-wrap
msgid "LayoutID=5"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx07_title"
#: Resources/templates/Localizable.strings:340
#: Resources/templates/Localizable.strings:446
#: Resources/templates/Localizable.strings:340 Resources/templates/Localizable.strings:446
#, no-wrap
msgid "LayoutID=7"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx12_title"
#: Resources/templates/Localizable.strings:344
#: Resources/templates/Localizable.strings:450
#: Resources/templates/Localizable.strings:344 Resources/templates/Localizable.strings:450
#, no-wrap
msgid "LayoutID=12"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx32_title"
#: Resources/templates/Localizable.strings:348
#: Resources/templates/Localizable.strings:454
#: Resources/templates/Localizable.strings:348 Resources/templates/Localizable.strings:454
#, no-wrap
msgid "LayoutID=32"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx40_title"
#: Resources/templates/Localizable.strings:352
#: Resources/templates/Localizable.strings:458
#: Resources/templates/Localizable.strings:352 Resources/templates/Localizable.strings:458
#, no-wrap
msgid "LayoutID=40"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx65_title"
#: Resources/templates/Localizable.strings:356
#: Resources/templates/Localizable.strings:462
#: Resources/templates/Localizable.strings:356 Resources/templates/Localizable.strings:462
#, no-wrap
msgid "LayoutID=65"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx99_title"
#: Resources/templates/Localizable.strings:360
#: Resources/templates/Localizable.strings:466
#: Resources/templates/Localizable.strings:360 Resources/templates/Localizable.strings:466
#, no-wrap
msgid "LayoutID=99"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx269_title"
#: Resources/templates/Localizable.strings:364
#: Resources/templates/Localizable.strings:470
#: Resources/templates/Localizable.strings:364 Resources/templates/Localizable.strings:470
#, no-wrap
msgid "LayoutID=269"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx387_title"
#: Resources/templates/Localizable.strings:368
#: Resources/templates/Localizable.strings:474
#: Resources/templates/Localizable.strings:368 Resources/templates/Localizable.strings:474
#, no-wrap
msgid "LayoutID=387"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx388_title"
#: Resources/templates/Localizable.strings:372
#: Resources/templates/Localizable.strings:478
#: Resources/templates/Localizable.strings:372 Resources/templates/Localizable.strings:478
#, no-wrap
msgid "LayoutID=388"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx389_title"
#: Resources/templates/Localizable.strings:376
#: Resources/templates/Localizable.strings:482
#: Resources/templates/Localizable.strings:376 Resources/templates/Localizable.strings:482
#, no-wrap
msgid "LayoutID=389"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx392_title"
#: Resources/templates/Localizable.strings:380
#: Resources/templates/Localizable.strings:486
#: Resources/templates/Localizable.strings:380 Resources/templates/Localizable.strings:486
#, no-wrap
msgid "LayoutID=392"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx398_title"
#: Resources/templates/Localizable.strings:384
#: Resources/templates/Localizable.strings:490
#: Resources/templates/Localizable.strings:384 Resources/templates/Localizable.strings:490
#, no-wrap
msgid "LayoutID=398"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx662_title"
#: Resources/templates/Localizable.strings:388
#: Resources/templates/Localizable.strings:494
#: Resources/templates/Localizable.strings:388 Resources/templates/Localizable.strings:494
#, no-wrap
msgid "LayoutID=662"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx663_title"
#: Resources/templates/Localizable.strings:392
#: Resources/templates/Localizable.strings:498
#: Resources/templates/Localizable.strings:392 Resources/templates/Localizable.strings:498
#, no-wrap
msgid "LayoutID=663"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx664_title"
#: Resources/templates/Localizable.strings:396
#: Resources/templates/Localizable.strings:502
#: Resources/templates/Localizable.strings:396 Resources/templates/Localizable.strings:502
#, no-wrap
msgid "LayoutID=664"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx885_title"
#: Resources/templates/Localizable.strings:400
#: Resources/templates/Localizable.strings:506
#: Resources/templates/Localizable.strings:400 Resources/templates/Localizable.strings:506
#, no-wrap
msgid "LayoutID=885"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx887_title"
#: Resources/templates/Localizable.strings:404
#: Resources/templates/Localizable.strings:510
#: Resources/templates/Localizable.strings:404 Resources/templates/Localizable.strings:510
#, no-wrap
msgid "LayoutID=887"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx888_title"
#: Resources/templates/Localizable.strings:408
#: Resources/templates/Localizable.strings:514
#: Resources/templates/Localizable.strings:408 Resources/templates/Localizable.strings:514
#, no-wrap
msgid "LayoutID=888"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx889_title"
#: Resources/templates/Localizable.strings:412
#: Resources/templates/Localizable.strings:518
#: Resources/templates/Localizable.strings:412 Resources/templates/Localizable.strings:518
#, no-wrap
msgid "LayoutID=889"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx892_title"
#: Resources/templates/Localizable.strings:416
#: Resources/templates/Localizable.strings:522
#: Resources/templates/Localizable.strings:416 Resources/templates/Localizable.strings:522
#, no-wrap
msgid "LayoutID=892"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDx898_title"
#: Resources/templates/Localizable.strings:420
#: Resources/templates/Localizable.strings:526
#: Resources/templates/Localizable.strings:420 Resources/templates/Localizable.strings:526
#, no-wrap
msgid "LayoutID=898"
msgstr ""
msgstr ""
#. type: "HDAULayoutIDxBD7_title"
#: Resources/templates/Localizable.strings:424
#: Resources/templates/Localizable.strings:530
#: Resources/templates/Localizable.strings:424 Resources/templates/Localizable.strings:530
#, no-wrap
msgid "LayoutID=1981"
msgstr ""
msgid "Settings to control how Chameleon works."
msgstr ""
#. type: "CrsActiveConfig_title"
#. type: "CsrActiveConfig_title"
#: Resources/templates/Localizable.strings:883
#, no-wrap
msgid "CrsActiveConfig"
msgid "CsrActiveConfig"
msgstr ""
#. type: "CrsActiveConfig_description"
#. type: "CsrActiveConfig_description"
#: Resources/templates/Localizable.strings:884
#, no-wrap
msgid "System Integrity Protection (SIP)."
#. type: "Patches_title"
#: Resources/templates/Localizable.strings:945
#, no-wrap
msgid "Patches"
msgstr ""
msgid "Embedded Patcher"
msgstr "‫Embedded Patcher"
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, no-wrap
msgid "A selection of options to patch the kernel."
msgid "A selection of options to patch the Kernel and Kexts."
msgstr ""
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#, fuzzy, no-wrap
#| msgid "UseKernelCache=Yes"
msgid "kernel Patcher"
msgstr "UseKernelCache=Yes"
#: Resources/templates/Localizable.strings:949
#, no-wrap
msgid "Embedded Kernel Patch"
msgstr "‫Embedded Kernel Patch"
#. type: "kernelPatcher_description"
#: Resources/templates/Localizable.strings:949
#: Resources/templates/Localizable.strings:950
#, no-wrap
msgid "Select one patch for your kernel."
msgstr ""
#. type: "KernelBooter_kexts_title"
#: Resources/templates/Localizable.strings:952
#: Resources/templates/Localizable.strings:953
#, no-wrap
msgid "KernelBooter_kexts"
msgstr ""
#. type: "KernelBooter_kexts_description"
#: Resources/templates/Localizable.strings:953
#: Resources/templates/Localizable.strings:954
#, no-wrap
msgid "Re-enable /Extra/Extensions kexts on newer OSes."
msgstr ""
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#, fuzzy, no-wrap
#| msgid "UseKernelCache=Yes"
#: Resources/templates/Localizable.strings:957
#, no-wrap
msgid "KernelPm"
msgstr "UseKernelCache=Yes"
msgstr "‫KernelPm"
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#: Resources/templates/Localizable.strings:958
#, no-wrap
msgid "Kernel Power Management patch."
msgstr ""
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#, fuzzy, no-wrap
#| msgid "UseKernelCache=Yes"
#: Resources/templates/Localizable.strings:961
#, no-wrap
msgid "KernelLapicError"
msgstr "UseKernelCache=Yes"
msgstr "‫KernelLapicError"
#. type: "KernelLapicError_description"
#: Resources/templates/Localizable.strings:961
#: Resources/templates/Localizable.strings:962
#, no-wrap
msgid "Remove the Local Apic Error panic."
msgstr ""
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#, fuzzy, no-wrap
#| msgid "UseKernelCache=Yes"
#: Resources/templates/Localizable.strings:965
#, no-wrap
msgid "KernelLapicVersion"
msgstr "UseKernelCache=Yes"
msgstr "‫KernelLapicVersion"
#. type: "KernelLapicVersion_description"
#: Resources/templates/Localizable.strings:965
#: Resources/templates/Localizable.strings:966
#, no-wrap
msgid "Remove the Local Apic Version panic."
msgstr ""
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#: Resources/templates/Localizable.strings:969
#, no-wrap
msgid "KernelHaswell"
msgstr ""
#. type: "KernelHaswell_description"
#: Resources/templates/Localizable.strings:969
#: Resources/templates/Localizable.strings:970
#, no-wrap
msgid "Patch for Haswell \\\"E\\\" and \\\"ULT\\\" support on older OSes."
msgstr ""
#. type: "KernelcpuFamily_title"
#: Resources/templates/Localizable.strings:972
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "KernelcpuFamily"
msgstr ""
#. type: "KernelcpuFamily_description"
#: Resources/templates/Localizable.strings:973
#: Resources/templates/Localizable.strings:974
#, no-wrap
msgid "Patch the cpuid_family address to remove the _cpuid_set_info _panic and _tsc_init _panic. For unsupported CPUs"
msgstr ""
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "KernelSSE3"
msgstr ""
#. type: "KernelSSE3_description"
#: Resources/templates/Localizable.strings:977
#: Resources/templates/Localizable.strings:978
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr ""
#. type: "kextsPatcher_title"
#: Resources/templates/Localizable.strings:987
#, no-wrap
msgid "Embedded Kexts Patch"
msgstr "‫Embedded Kexts Patch"
#. type: "kextsPatcher_description"
#: Resources/templates/Localizable.strings:988
#, no-wrap
msgid "A selection of options to patch kexts."
msgstr ""
#. type: "AppleRTCPatch_title"
#: Resources/templates/Localizable.strings:991
#, no-wrap
msgid "AppleRTC Patch"
msgstr ""
#. type: "AppleRTCPatch_description"
#: Resources/templates/Localizable.strings:992
#, no-wrap
msgid "Patch AppleRTC."
msgstr ""
#. type: "OrangeIconFixSata_title"
#: Resources/templates/Localizable.strings:995
#, no-wrap
msgid "OrangeIcon Fix"
msgstr ""
#. type: "OrangeIconFixSata_description"
#: Resources/templates/Localizable.strings:996
#, no-wrap
msgid "Fix OrangeIcon."
msgstr ""
#. type: "TrimEnablerSata_title"
#: Resources/templates/Localizable.strings:999
#, no-wrap
msgid "TrimEnabler Sata"
msgstr ""
#. type: "TrimEnablerSata_description"
#: Resources/templates/Localizable.strings:1000
#, no-wrap
msgid "Sata TrimEnabler."
msgstr ""
#. type: "AICPMPatch_title"
#: Resources/templates/Localizable.strings:1003
#, no-wrap
msgid "AICPM Patch"
msgstr ""
#. type: "AICPMPatch_description"
#: Resources/templates/Localizable.strings:1004
#, no-wrap
msgid "Patch AICPM."
msgstr ""
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982
#: Resources/templates/Localizable.strings:1010
#, no-wrap
msgid "Themes"
msgstr ""
#. type: "Themes_description"
#: Resources/templates/Localizable.strings:983
#: Resources/templates/Localizable.strings:1011
#, no-wrap
msgid ""
"A collection of sample themes\n"
"More themes can be found at http://forum.voodooprojects.org/index.php/board,7.0.html"
msgstr ""
#, fuzzy
#~| msgid "UseKernelCache=Yes"
#~ msgid "Patches"
#~ msgstr "UseKernelCache=Yes"
#, fuzzy
#~| msgid "UseKernelCache=Yes"
#~ msgid "kernel Patcher"
#~ msgstr "UseKernelCache=Yes"
#, fuzzy
#~| msgid "UseKernelCache=Yes"
#~ msgid "Kexts Patcher"
#~ msgstr "UseKernelCache=Yes"
#, fuzzy
#~| msgid "UseKernelCache=Yes"
#~ msgid "Kernel Patches"
#~ msgstr "UseKernelCache=Yes"
#~ msgid "Install Type"
#~ msgstr "نوع التثبيت"
#~ msgid ""
#~ "Choose to perform a new installation or upgrade an existing installation."
#~ msgid "Choose to perform a new installation or upgrade an existing installation."
#~ msgstr "اختار ما بين تثبيت جديد او تحديث القديم"
#~ msgid "New Installation"
#~ msgstr "تثبيت جديد"
#~ msgid ""
#~ "Backup an existing /Extra folder, if found on the target partition. A new "
#~ "one will be created if any options are chosen from the installer, other "
#~ "than the Bootloader."
#~ msgstr ""
#~ " خد نسخة احتياطية من مجلد الاكسترا ان وجد فى البارتشن المختار فسوف يتم "
#~ "انشاء واحد جديد لو قمت باختيار اى من الخيارات فى البرنامج غير البوت لودر"
#~ msgid "Backup an existing /Extra folder, if found on the target partition. A new one will be created if any options are chosen from the installer, other than the Bootloader."
#~ msgstr " خد نسخة احتياطية من مجلد الاكسترا ان وجد فى البارتشن المختار فسوف يتم انشاء واحد جديد لو قمت باختيار اى من الخيارات فى البرنامج غير البوت لودر"
#~ msgid "Upgrade"
#~ msgstr "تحديث"
#~ msgid ""
#~ "Merge an existing /Extra folder, if found on the target, with any options "
#~ "chosen from the installer, other than the Bootloader. The original /Extra "
#~ "folder will be backed up."
#~ msgstr ""
#~ "سوف يتم دمج اى خيار انت تختاره الى الخيارات المضافة بالفعل فى فولدر "
#~ "الاكسترا فى البارتشن المختار التثبيت عليه"
#~ msgid "Merge an existing /Extra folder, if found on the target, with any options chosen from the installer, other than the Bootloader. The original /Extra folder will be backed up."
#~ msgstr "سوف يتم دمج اى خيار انت تختاره الى الخيارات المضافة بالفعل فى فولدر الاكسترا فى البارتشن المختار التثبيت عليه"
trunk/package/po/bs.po
77
88
99
10
10
1111
1212
1313
......
12481248
12491249
12501250
1251
1251
12521252
12531253
1254
1254
12551255
12561256
1257
1257
12581258
12591259
12601260
12611261
12621262
1263
1263
12641264
12651265
1266
1266
12671267
12681268
1269
1269
12701270
12711271
12721272
12731273
12741274
1275
1275
12761276
12771277
1278
1278
12791279
12801280
1281
1281
12821282
12831283
1284
1284
12851285
12861286
1287
1287
12881288
12891289
1290
1290
12911291
12921292
1293
1293
12941294
12951295
1296
1296
12971297
12981298
1299
1299
13001300
13011301
1302
1302
13031303
13041304
1305
1305
13061306
13071307
1308
1308
13091309
13101310
1311
1311
13121312
13131313
1314
1314
13151315
13161316
1317
1317
13181318
13191319
1320
1320
13211321
13221322
1323
1323
13241324
13251325
1326
1326
13271327
13281328
1329
1329
13301330
13311331
1332
1332
13331333
13341334
1335
1335
13361336
13371337
1338
1338
13391339
13401340
1341
1341
13421342
13431343
1344
1344
13451345
13461346
13471347
......
31893189
31903190
31913191
3192
3192
31933193
31943194
3195
3195
31963196
31973197
3198
3198
31993199
32003200
32013201
......
33543354
33553355
33563356
3357
3358
3359
3357
3358
3359
3360
33603361
33613362
33623363
33633364
33643365
3365
3366
33663367
33673368
33683369
3369
3370
33703371
33713372
3372
3373
33733374
33743375
33753376
3376
3377
33773378
33783379
33793380
33803381
33813382
3382
3383
33833384
33843385
33853386
33863387
33873388
3388
3389
33893390
33903391
33913392
33923393
33933394
3394
3395
33953396
33963397
33973398
33983399
33993400
34003401
3401
3402
34023403
34033404
34043405
34053406
34063407
34073408
3408
3409
34093410
34103411
34113412
34123413
34133414
34143415
3415
3416
34163417
34173418
34183419
34193420
34203421
3421
3422
34223423
34233424
34243425
34253426
34263427
34273428
3428
3429
34293430
34303431
34313432
34323433
34333434
3434
3435
34353436
34363437
34373438
34383439
34393440
34403441
3441
3442
34423443
34433444
34443445
34453446
34463447
3447
3448
34483449
34493450
34503451
34513452
34523453
3453
3454
34543455
34553456
34563457
34573458
34583459
3459
3460
34603461
34613462
34623463
34633464
34643465
3465
3466
34663467
34673468
34683469
34693470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
34703533
3471
3534
34723535
34733536
34743537
34753538
34763539
3477
3540
34783541
34793542
34803543
......
34833546
34843547
34853548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
34863569
34873570
34883571
msgstr ""
"Project-Id-Version: Chameleon 2.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-02 15:03+0000\n"
"POT-Creation-Date: 2017-03-26 11:51+0100\n"
"PO-Revision-Date: 2015-02-13 18:17-0000\n"
"Last-Translator: ErmaC\n"
"Language-Team: bs <bs@li.org>\n"
msgid "Set Graphics Mode to 1920x1200x32"
msgstr "Postavite Grafički Mod na 1920x1200x32"
#. type: "Crs1_title"
#. type: "Csr1_title"
#: Resources/templates/Localizable.strings:298
#, no-wrap
msgid "CRS_ALLOW_UNTRUSTED_KEXTS"
msgid "CSR_ALLOW_UNTRUSTED_KEXTS"
msgstr ""
#. type: "Crs1_description"
#. type: "Csr1_description"
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP)."
msgstr ""
#. type: "Crs2_title"
#. type: "Csr2_title"
#: Resources/templates/Localizable.strings:301
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_FS"
msgid "CSR_ALLOW_UNRESTRICTED_FS"
msgstr ""
#. type: "Crs2_description"
#. type: "Csr2_description"
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid "Filesystem protection: Important system files are protected and cannot be modified."
msgstr ""
#. type: "Crs4_title"
#. type: "Csr4_title"
#: Resources/templates/Localizable.strings:304
#, no-wrap
msgid "CRS_ALLOW_TASK_FOR_PID"
msgid "CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs4_description"
#. type: "Csr4_description"
#: Resources/templates/Localizable.strings:305
#, no-wrap
msgid "Disable CRS_ALLOW_TASK_FOR_PID"
msgid "Disable CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs8_title"
#. type: "Csr8_title"
#: Resources/templates/Localizable.strings:307
#, no-wrap
msgid "CRS_ALLOW_KERNEL_DEBUGGER"
msgid "CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs8_description"
#. type: "Csr8_description"
#: Resources/templates/Localizable.strings:308
#, no-wrap
msgid "Disable CRS_ALLOW_KERNEL_DEBUGGER"
msgid "Disable CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs16_title"
#. type: "Csr16_title"
#: Resources/templates/Localizable.strings:310
#, no-wrap
msgid "CRS_ALLOW_APPLE_INTERNAL"
msgid "CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs16_description"
#. type: "Csr16_description"
#: Resources/templates/Localizable.strings:311
#, no-wrap
msgid "Disable CRS_ALLOW_APPLE_INTERNAL"
msgid "Disable CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs32_title"
#. type: "Csr32_title"
#: Resources/templates/Localizable.strings:313
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs32_description"
#. type: "Csr32_description"
#: Resources/templates/Localizable.strings:314
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "Disable CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs64_title"
#. type: "Csr64_title"
#: Resources/templates/Localizable.strings:316
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs64_description"
#. type: "Csr64_description"
#: Resources/templates/Localizable.strings:317
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "Disable CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs128_title"
#. type: "Csr128_title"
#: Resources/templates/Localizable.strings:319
#, no-wrap
msgid "CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "Crs128_description"
#. type: "Csr128_description"
#: Resources/templates/Localizable.strings:320
#, no-wrap
msgid "Disable CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "Disable CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "HDAULayoutIDx01_title"
msgid "Settings to control how Chameleon works."
msgstr "Opcije za kontrolu rada Chameleona."
#. type: "CrsActiveConfig_title"
#. type: "CsrActiveConfig_title"
#: Resources/templates/Localizable.strings:883
#, no-wrap
msgid "CrsActiveConfig"
msgid "CsrActiveConfig"
msgstr ""
#. type: "CrsActiveConfig_description"
#. type: "CsrActiveConfig_description"
#: Resources/templates/Localizable.strings:884
#, no-wrap
msgid "System Integrity Protection (SIP)."
#. type: "Patches_title"
#: Resources/templates/Localizable.strings:945
#, no-wrap
msgid "Patches"
msgstr ""
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "Embedded Patcher"
msgstr "Kernel Patcher"
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, fuzzy, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch the kernel."
msgid "A selection of options to patch the Kernel and Kexts."
msgstr "Odabir opcija koje se bave s videom."
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#: Resources/templates/Localizable.strings:949
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "kernel Patcher"
msgid "Embedded Kernel Patch"
msgstr "Kernel Patcher"
#. type: "kernelPatcher_description"
#: Resources/templates/Localizable.strings:949
#: Resources/templates/Localizable.strings:950
#, no-wrap
msgid "Select one patch for your kernel."
msgstr ""
#. type: "KernelBooter_kexts_title"
#: Resources/templates/Localizable.strings:952
#: Resources/templates/Localizable.strings:953
#, no-wrap
msgid "KernelBooter_kexts"
msgstr ""
#. type: "KernelBooter_kexts_description"
#: Resources/templates/Localizable.strings:953
#: Resources/templates/Localizable.strings:954
#, no-wrap
msgid "Re-enable /Extra/Extensions kexts on newer OSes."
msgstr ""
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#: Resources/templates/Localizable.strings:957
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelPm"
msgstr "Kernel Patcher"
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#: Resources/templates/Localizable.strings:958
#, fuzzy, no-wrap
#| msgid "Power Management"
msgid "Kernel Power Management patch."
msgstr "Power Management"
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#: Resources/templates/Localizable.strings:961
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicError"
msgstr "Kernel Patcher"
#. type: "KernelLapicError_description"
#: Resources/templates/Localizable.strings:961
#: Resources/templates/Localizable.strings:962
#, no-wrap
msgid "Remove the Local Apic Error panic."
msgstr ""
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#: Resources/templates/Localizable.strings:965
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicVersion"
msgstr "Kernel Patcher"
#. type: "KernelLapicVersion_description"
#: Resources/templates/Localizable.strings:965
#: Resources/templates/Localizable.strings:966
#, no-wrap
msgid "Remove the Local Apic Version panic."
msgstr ""
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#: Resources/templates/Localizable.strings:969
#, fuzzy, no-wrap
#| msgid "Kernel Flags"
msgid "KernelHaswell"
msgstr "Kernel Flags"
#. type: "KernelHaswell_description"
#: Resources/templates/Localizable.strings:969
#: Resources/templates/Localizable.strings:970
#, no-wrap
msgid "Patch for Haswell \\\"E\\\" and \\\"ULT\\\" support on older OSes."
msgstr ""
#. type: "KernelcpuFamily_title"
#: Resources/templates/Localizable.strings:972
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "KernelcpuFamily"
msgstr ""
#. type: "KernelcpuFamily_description"
#: Resources/templates/Localizable.strings:973
#: Resources/templates/Localizable.strings:974
#, no-wrap
msgid "Patch the cpuid_family address to remove the _cpuid_set_info _panic and _tsc_init _panic. For unsupported CPUs"
msgstr ""
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "KernelSSE3"
msgstr ""
#. type: "KernelSSE3_description"
#: Resources/templates/Localizable.strings:977
#: Resources/templates/Localizable.strings:978
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr ""
#. type: "kextsPatcher_title"
#: Resources/templates/Localizable.strings:987
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "Embedded Kexts Patch"
msgstr "Kernel Patcher"
#. type: "kextsPatcher_description"
#: Resources/templates/Localizable.strings:988
#, fuzzy, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch kexts."
msgstr "Odabir opcija koje se bave s videom."
#. type: "AppleRTCPatch_title"
#: Resources/templates/Localizable.strings:991
#, no-wrap
msgid "AppleRTC Patch"
msgstr ""
#. type: "AppleRTCPatch_description"
#: Resources/templates/Localizable.strings:992
#, no-wrap
msgid "Patch AppleRTC."
msgstr ""
#. type: "OrangeIconFixSata_title"
#: Resources/templates/Localizable.strings:995
#, no-wrap
msgid "OrangeIcon Fix"
msgstr ""
#. type: "OrangeIconFixSata_description"
#: Resources/templates/Localizable.strings:996
#, no-wrap
msgid "Fix OrangeIcon."
msgstr ""
#. type: "TrimEnablerSata_title"
#: Resources/templates/Localizable.strings:999
#, no-wrap
msgid "TrimEnabler Sata"
msgstr ""
#. type: "TrimEnablerSata_description"
#: Resources/templates/Localizable.strings:1000
#, no-wrap
msgid "Sata TrimEnabler."
msgstr ""
#. type: "AICPMPatch_title"
#: Resources/templates/Localizable.strings:1003
#, no-wrap
msgid "AICPM Patch"
msgstr ""
#. type: "AICPMPatch_description"
#: Resources/templates/Localizable.strings:1004
#, no-wrap
msgid "Patch AICPM."
msgstr ""
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982
#: Resources/templates/Localizable.strings:1010
#, no-wrap
msgid "Themes"
msgstr "Themes"
#. type: "Themes_description"
#: Resources/templates/Localizable.strings:983
#: Resources/templates/Localizable.strings:1011
#, no-wrap
msgid ""
"A collection of sample themes\n"
"Skup predloženih tema\n"
"Više tema možete pronaći na http://forum.voodooprojects.org/index.php/board,7.0.html"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "Patches"
#~ msgstr "Kernel Patcher"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "kernel Patcher"
#~ msgstr "Kernel Patcher"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "Kexts Patcher"
#~ msgstr "Kernel Patcher"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "Kernel Patches"
#~ msgstr "Kernel Patcher"
#~ msgid "Install Type"
#~ msgstr "Tip instalacije"
trunk/package/po/cs.po
66
77
88
9
9
1010
1111
1212
......
12591259
12601260
12611261
1262
1262
12631263
12641264
1265
1265
12661266
12671267
1268
1268
12691269
12701270
12711271
12721272
12731273
1274
1274
12751275
12761276
1277
1277
12781278
12791279
1280
1280
12811281
12821282
12831283
12841284
12851285
1286
1286
12871287
12881288
1289
1289
12901290
12911291
1292
1292
12931293
12941294
1295
1295
12961296
12971297
1298
1298
12991299
13001300
1301
1301
13021302
13031303
1304
1304
13051305
13061306
1307
1307
13081308
13091309
1310
1310
13111311
13121312
1313
1313
13141314
13151315
1316
1316
13171317
13181318
1319
1319
13201320
13211321
1322
1322
13231323
13241324
1325
1325
13261326
13271327
1328
1328
13291329
13301330
1331
1331
13321332
13331333
1334
1334
13351335
13361336
1337
1337
13381338
13391339
1340
1340
13411341
13421342
1343
1343
13441344
13451345
1346
1346
13471347
13481348
1349
1349
13501350
13511351
1352
1352
13531353
13541354
1355
1355
13561356
13571357
13581358
......
33623362
33633363
33643364
3365
3365
33663366
33673367
3368
3368
33693369
33703370
3371
3371
33723372
33733373
33743374
......
35333533
35343534
35353535
3536
3536
35373537
35383538
35393539
35403540
35413541
35423542
3543
3543
35443544
35453545
35463546
3547
3547
35483548
35493549
3550
3550
35513551
35523552
35533553
3554
3554
35553555
35563556
35573557
35583558
35593559
3560
3560
35613561
35623562
35633563
35643564
35653565
3566
3566
35673567
35683568
35693569
35703570
35713571
3572
3572
35733573
35743574
35753575
35763576
35773577
35783578
3579
3579
35803580
35813581
35823582
35833583
35843584
35853585
3586
3586
35873587
35883588
35893589
35903590
35913591
35923592
3593
3593
35943594
35953595
35963596
35973597
35983598
3599
3599
36003600
36013601
36023602
36033603
36043604
36053605
3606
3606
36073607
36083608
36093609
36103610
36113611
3612
3612
36133613
36143614
36153615
36163616
36173617
36183618
3619
3619
36203620
36213621
36223622
36233623
36243624
3625
3625
36263626
36273627
36283628
36293629
36303630
3631
3631
36323632
36333633
36343634
36353635
36363636
3637
3637
36383638
36393639
36403640
36413641
36423642
3643
3643
36443644
36453645
36463646
36473647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
36483710
3649
3711
36503712
36513713
36523714
36533715
36543716
3655
3717
36563718
36573719
36583720
......
36603722
36613723
36623724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
36633745
36643746
36653747
msgid ""
msgstr ""
"Project-Id-Version: Chameleon 2.4\n"
"POT-Creation-Date: 2015-11-02 15:03+0000\n"
"POT-Creation-Date: 2017-03-26 11:51+0100\n"
"PO-Revision-Date: 2015-02-13 18:19-0000\n"
"Last-Translator: ErmaC <ErmaC@insanelymac.com>\n"
"Language-Team: cs <cs@li.org>\n"
msgid "Set Graphics Mode to 1920x1200x32"
msgstr "Nastavit rozlišení na 1920x1200x32"
#. type: "Crs1_title"
#. type: "Csr1_title"
#: Resources/templates/Localizable.strings:298
#, no-wrap
msgid "CRS_ALLOW_UNTRUSTED_KEXTS"
msgid "CSR_ALLOW_UNTRUSTED_KEXTS"
msgstr ""
#. type: "Crs1_description"
#. type: "Csr1_description"
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP)."
msgstr ""
#. type: "Crs2_title"
#. type: "Csr2_title"
#: Resources/templates/Localizable.strings:301
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_FS"
msgid "CSR_ALLOW_UNRESTRICTED_FS"
msgstr ""
#. type: "Crs2_description"
#. type: "Csr2_description"
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid "Filesystem protection: Important system files are protected and cannot be modified."
msgstr ""
#. type: "Crs4_title"
#. type: "Csr4_title"
#: Resources/templates/Localizable.strings:304
#, no-wrap
msgid "CRS_ALLOW_TASK_FOR_PID"
msgid "CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs4_description"
#. type: "Csr4_description"
#: Resources/templates/Localizable.strings:305
#, no-wrap
msgid "Disable CRS_ALLOW_TASK_FOR_PID"
msgid "Disable CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs8_title"
#. type: "Csr8_title"
#: Resources/templates/Localizable.strings:307
#, no-wrap
msgid "CRS_ALLOW_KERNEL_DEBUGGER"
msgid "CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs8_description"
#. type: "Csr8_description"
#: Resources/templates/Localizable.strings:308
#, no-wrap
msgid "Disable CRS_ALLOW_KERNEL_DEBUGGER"
msgid "Disable CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs16_title"
#. type: "Csr16_title"
#: Resources/templates/Localizable.strings:310
#, no-wrap
msgid "CRS_ALLOW_APPLE_INTERNAL"
msgid "CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs16_description"
#. type: "Csr16_description"
#: Resources/templates/Localizable.strings:311
#, no-wrap
msgid "Disable CRS_ALLOW_APPLE_INTERNAL"
msgid "Disable CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs32_title"
#. type: "Csr32_title"
#: Resources/templates/Localizable.strings:313
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs32_description"
#. type: "Csr32_description"
#: Resources/templates/Localizable.strings:314
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "Disable CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs64_title"
#. type: "Csr64_title"
#: Resources/templates/Localizable.strings:316
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs64_description"
#. type: "Csr64_description"
#: Resources/templates/Localizable.strings:317
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "Disable CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs128_title"
#. type: "Csr128_title"
#: Resources/templates/Localizable.strings:319
#, no-wrap
msgid "CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "Crs128_description"
#. type: "Csr128_description"
#: Resources/templates/Localizable.strings:320
#, no-wrap
msgid "Disable CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "Disable CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "HDAULayoutIDx01_title"
msgid "Settings to control how Chameleon works."
msgstr "Nastavení určuje, jak Chameleon funguje."
#. type: "CrsActiveConfig_title"
#. type: "CsrActiveConfig_title"
#: Resources/templates/Localizable.strings:883
#, no-wrap
msgid "CrsActiveConfig"
msgid "CsrActiveConfig"
msgstr ""
#. type: "CrsActiveConfig_description"
#. type: "CsrActiveConfig_description"
#: Resources/templates/Localizable.strings:884
#, no-wrap
msgid "System Integrity Protection (SIP)."
#: Resources/templates/Localizable.strings:945
#, fuzzy, no-wrap
#| msgid "Kext Patcher"
msgid "Patches"
msgid "Embedded Patcher"
msgstr "Kext Patcher"
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, fuzzy, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch the kernel."
msgid "A selection of options to patch the Kernel and Kexts."
msgstr "Výběr možností, které se zabývají s videem."
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#: Resources/templates/Localizable.strings:949
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "kernel Patcher"
msgid "Embedded Kernel Patch"
msgstr "Kernel Patcher"
#. type: "kernelPatcher_description"
#: Resources/templates/Localizable.strings:949
#: Resources/templates/Localizable.strings:950
#, no-wrap
msgid "Select one patch for your kernel."
msgstr ""
#. type: "KernelBooter_kexts_title"
#: Resources/templates/Localizable.strings:952
#: Resources/templates/Localizable.strings:953
#, no-wrap
msgid "KernelBooter_kexts"
msgstr ""
#. type: "KernelBooter_kexts_description"
#: Resources/templates/Localizable.strings:953
#: Resources/templates/Localizable.strings:954
#, no-wrap
msgid "Re-enable /Extra/Extensions kexts on newer OSes."
msgstr ""
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#: Resources/templates/Localizable.strings:957
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelPm"
msgstr "Kernel Patcher"
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#: Resources/templates/Localizable.strings:958
#, fuzzy, no-wrap
#| msgid "Power Management"
msgid "Kernel Power Management patch."
msgstr "Power Management"
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#: Resources/templates/Localizable.strings:961
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicError"
msgstr "Kernel Patcher"
#. type: "KernelLapicError_description"
#: Resources/templates/Localizable.strings:961
#: Resources/templates/Localizable.strings:962
#, no-wrap
msgid "Remove the Local Apic Error panic."
msgstr ""
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#: Resources/templates/Localizable.strings:965
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicVersion"
msgstr "Kernel Patcher"
#. type: "KernelLapicVersion_description"
#: Resources/templates/Localizable.strings:965
#: Resources/templates/Localizable.strings:966
#, no-wrap
msgid "Remove the Local Apic Version panic."
msgstr ""
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#: Resources/templates/Localizable.strings:969
#, fuzzy, no-wrap
#| msgid "Kernel Flags"
msgid "KernelHaswell"
msgstr "Kernel Flags"
#. type: "KernelHaswell_description"
#: Resources/templates/Localizable.strings:969
#: Resources/templates/Localizable.strings:970
#, no-wrap
msgid "Patch for Haswell \\\"E\\\" and \\\"ULT\\\" support on older OSes."
msgstr ""
#. type: "KernelcpuFamily_title"
#: Resources/templates/Localizable.strings:972
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "KernelcpuFamily"
msgstr ""
#. type: "KernelcpuFamily_description"
#: Resources/templates/Localizable.strings:973
#: Resources/templates/Localizable.strings:974
#, no-wrap
msgid "Patch the cpuid_family address to remove the _cpuid_set_info _panic and _tsc_init _panic. For unsupported CPUs"
msgstr ""
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "KernelSSE3"
msgstr ""
#. type: "KernelSSE3_description"
#: Resources/templates/Localizable.strings:977
#: Resources/templates/Localizable.strings:978
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr ""
#. type: "kextsPatcher_title"
#: Resources/templates/Localizable.strings:987
#, fuzzy, no-wrap
#| msgid "Kext Patcher"
msgid "Embedded Kexts Patch"
msgstr "Kext Patcher"
#. type: "kextsPatcher_description"
#: Resources/templates/Localizable.strings:988
#, fuzzy, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch kexts."
msgstr "Výběr možností, které se zabývají s videem."
#. type: "AppleRTCPatch_title"
#: Resources/templates/Localizable.strings:991
#, no-wrap
msgid "AppleRTC Patch"
msgstr ""
#. type: "AppleRTCPatch_description"
#: Resources/templates/Localizable.strings:992
#, no-wrap
msgid "Patch AppleRTC."
msgstr ""
#. type: "OrangeIconFixSata_title"
#: Resources/templates/Localizable.strings:995
#, no-wrap
msgid "OrangeIcon Fix"
msgstr ""
#. type: "OrangeIconFixSata_description"
#: Resources/templates/Localizable.strings:996
#, no-wrap
msgid "Fix OrangeIcon."
msgstr ""
#. type: "TrimEnablerSata_title"
#: Resources/templates/Localizable.strings:999
#, no-wrap
msgid "TrimEnabler Sata"
msgstr ""
#. type: "TrimEnablerSata_description"
#: Resources/templates/Localizable.strings:1000
#, no-wrap
msgid "Sata TrimEnabler."
msgstr ""
#. type: "AICPMPatch_title"
#: Resources/templates/Localizable.strings:1003
#, no-wrap
msgid "AICPM Patch"
msgstr ""
#. type: "AICPMPatch_description"
#: Resources/templates/Localizable.strings:1004
#, no-wrap
msgid "Patch AICPM."
msgstr ""
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982
#: Resources/templates/Localizable.strings:1010
#, no-wrap
msgid "Themes"
msgstr "Témata"
#. type: "Themes_description"
#: Resources/templates/Localizable.strings:983
#: Resources/templates/Localizable.strings:1011
#, no-wrap
msgid ""
"A collection of sample themes\n"
msgstr "Sbírka vzorku témata \\ nDalší styly lze nalézt na http://forum.voodooprojects.org/index.php/board,7.0.html"
#, fuzzy
#~| msgid "Kext Patcher"
#~ msgid "Patches"
#~ msgstr "Kext Patcher"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "kernel Patcher"
#~ msgstr "Kernel Patcher"
#, fuzzy
#~| msgid "Kext Patcher"
#~ msgid "Kexts Patcher"
#~ msgstr "Kext Patcher"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "Kernel Patches"
#~ msgstr "Kernel Patcher"
#, fuzzy
#~| msgid "Intel Azul AAPL,ig-platform-id"
#~ msgid "Intel Bdw (Broadwell) AAPL,ig-platform-id"
#~ msgstr "Intel Azul AAPL,ig-platform-id"
trunk/package/po/it.po
66
77
88
9
10
9
10
1111
1212
1313
......
12561256
12571257
12581258
1259
1259
12601260
12611261
1262
1263
1262
1263
12641264
1265
1265
12661266
12671267
12681268
12691269
12701270
1271
1271
12721272
12731273
1274
1275
1274
1275
12761276
1277
1277
12781278
12791279
12801280
12811281
12821282
1283
1283
12841284
12851285
1286
1287
1286
1287
12881288
1289
1289
12901290
12911291
1292
1293
1292
1293
12941294
1295
1295
12961296
12971297
1298
1299
1298
1299
13001300
1301
1301
13021302
13031303
1304
1305
1304
1305
13061306
1307
1307
13081308
13091309
1310
1311
1310
1311
13121312
1313
1313
13141314
13151315
1316
1317
1316
1317
13181318
1319
1319
13201320
13211321
1322
1323
1322
1323
13241324
1325
1325
13261326
13271327
1328
1329
1328
1329
13301330
1331
1331
13321332
13331333
1334
1335
1334
1335
13361336
1337
1337
13381338
13391339
1340
1341
1340
1341
13421342
1343
1343
13441344
13451345
1346
1347
1346
1347
13481348
1349
1349
13501350
13511351
1352
1353
1352
1353
13541354
13551355
13561356
......
33083308
33093309
33103310
3311
3311
33123312
33133313
3314
3315
3314
3315
33163316
3317
3317
33183318
33193319
33203320
......
34733473
34743474
34753475
3476
3477
3476
3477
34783478
34793479
34803480
34813481
3482
3483
3482
3483
34843484
34853485
3486
3486
34873487
3488
3489
3488
3489
34903490
34913491
3492
3492
34933493
34943494
34953495
34963496
34973497
3498
3498
34993499
35003500
35013501
35023502
35033503
3504
3504
35053505
35063506
35073507
35083508
35093509
3510
3510
35113511
35123512
35133513
35143514
35153515
3516
3516
35173517
35183518
35193519
35203520
35213521
3522
3522
35233523
35243524
35253525
35263526
35273527
3528
3528
35293529
35303530
35313531
35323532
35333533
3534
3534
35353535
35363536
35373537
35383538
35393539
3540
3540
35413541
35423542
35433543
35443544
35453545
3546
3546
35473547
35483548
35493549
35503550
35513551
3552
3552
35533553
35543554
35553555
35563556
35573557
3558
3558
35593559
35603560
35613561
35623562
35633563
3564
3564
35653565
35663566
35673567
35683568
35693569
3570
3570
35713571
35723572
3573
3573
35743574
35753575
3576
3576
35773577
35783578
35793579
35803580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
35813641
3582
3642
35833643
35843644
35853645
35863646
35873647
3588
3648
35893649
35903650
35913651
......
36003660
36013661
36023662
3603
3663
36043664
36053665
36063666
msgstr ""
"Project-Id-Version: Chameleon 2.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-02 15:03+0000\n"
"PO-Revision-Date: 2015-05-23 13:54-0000\n"
"POT-Creation-Date: 2017-03-26 11:51+0100\n"
"PO-Revision-Date: 2017-05-12 12:19+0100\n"
"Last-Translator: Gianfranco <gianfrancominischetti@gmail.com>\n"
"Language-Team: it <it@li.org>\n"
"Language: it\n"
msgid "Set Graphics Mode to 1920x1200x32"
msgstr "Setta il Graphics Mode a 1920x1200x32"
#. type: "Crs1_title"
#. type: "Csr1_title"
#: Resources/templates/Localizable.strings:298
#, no-wrap
msgid "CRS_ALLOW_UNTRUSTED_KEXTS"
msgstr "CRS_ALLOW_UNTRUSTED_KEXTS"
msgid "CSR_ALLOW_UNTRUSTED_KEXTS"
msgstr "CSR_ALLOW_UNTRUSTED_KEXTS"
#. type: "Crs1_description"
#. type: "Csr1_description"
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP)."
msgstr "Firma per gli Kext: introdotta in 10.9, migliorato in 10.10 (la firma per gli kext é necessaria per tutti gli kexts), ora diventato parte del rootless(SIP)."
#. type: "Crs2_title"
#. type: "Csr2_title"
#: Resources/templates/Localizable.strings:301
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_FS"
msgstr "CRS_ALLOW_UNRESTRICTED_FS"
msgid "CSR_ALLOW_UNRESTRICTED_FS"
msgstr "CSR_ALLOW_UNRESTRICTED_FS"
#. type: "Crs2_description"
#. type: "Csr2_description"
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid "Filesystem protection: Important system files are protected and cannot be modified."
msgstr "Protezione del file System: i file di sistema importanti sono protetti e non possono essere modificati."
#. type: "Crs4_title"
#. type: "Csr4_title"
#: Resources/templates/Localizable.strings:304
#, no-wrap
msgid "CRS_ALLOW_TASK_FOR_PID"
msgstr "CRS_ALLOW_TASK_FOR_PID"
msgid "CSR_ALLOW_TASK_FOR_PID"
msgstr "CSR_ALLOW_TASK_FOR_PID"
#. type: "Crs4_description"
#. type: "Csr4_description"
#: Resources/templates/Localizable.strings:305
#, no-wrap
msgid "Disable CRS_ALLOW_TASK_FOR_PID"
msgstr "Disattiva CRS_ALLOW_TASK_FOR_PID"
msgid "Disable CSR_ALLOW_TASK_FOR_PID"
msgstr "Disattiva CSR_ALLOW_TASK_FOR_PID"
#. type: "Crs8_title"
#. type: "Csr8_title"
#: Resources/templates/Localizable.strings:307
#, no-wrap
msgid "CRS_ALLOW_KERNEL_DEBUGGER"
msgstr "CRS_ALLOW_KERNEL_DEBUGGER"
msgid "CSR_ALLOW_KERNEL_DEBUGGER"
msgstr "CSR_ALLOW_KERNEL_DEBUGGER"
#. type: "Crs8_description"
#. type: "Csr8_description"
#: Resources/templates/Localizable.strings:308
#, no-wrap
msgid "Disable CRS_ALLOW_KERNEL_DEBUGGER"
msgstr "Disattiva CRS_ALLOW_KERNEL_DEBUGGER"
msgid "Disable CSR_ALLOW_KERNEL_DEBUGGER"
msgstr "Disattiva CSR_ALLOW_KERNEL_DEBUGGER"
#. type: "Crs16_title"
#. type: "Csr16_title"
#: Resources/templates/Localizable.strings:310
#, no-wrap
msgid "CRS_ALLOW_APPLE_INTERNAL"
msgstr "CRS_ALLOW_APPLE_INTERNAL"
msgid "CSR_ALLOW_APPLE_INTERNAL"
msgstr "CSR_ALLOW_APPLE_INTERNAL"
#. type: "Crs16_description"
#. type: "Csr16_description"
#: Resources/templates/Localizable.strings:311
#, no-wrap
msgid "Disable CRS_ALLOW_APPLE_INTERNAL"
msgstr "Disattiva CRS_ALLOW_APPLE_INTERNAL"
msgid "Disable CSR_ALLOW_APPLE_INTERNAL"
msgstr "Disattiva CSR_ALLOW_APPLE_INTERNAL"
#. type: "Crs32_title"
#. type: "Csr32_title"
#: Resources/templates/Localizable.strings:313
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_DTRACE"
msgstr "CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr "CSR_ALLOW_UNRESTRICTED_DTRACE"
#. type: "Crs32_description"
#. type: "Csr32_description"
#: Resources/templates/Localizable.strings:314
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_DTRACE"
msgstr "Disattiva CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "Disable CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr "Disattiva CSR_ALLOW_UNRESTRICTED_DTRACE"
#. type: "Crs64_title"
#. type: "Csr64_title"
#: Resources/templates/Localizable.strings:316
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_NVRAM"
msgstr "CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr "CSR_ALLOW_UNRESTRICTED_NVRAM"
#. type: "Crs64_description"
#. type: "Csr64_description"
#: Resources/templates/Localizable.strings:317
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_NVRAM"
msgstr "Disattiva CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "Disable CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr "Disattiva CSR_ALLOW_UNRESTRICTED_NVRAM"
#. type: "Crs128_title"
#. type: "Csr128_title"
#: Resources/templates/Localizable.strings:319
#, no-wrap
msgid "CRS_ALLOW_DEVICE_CONFIGURATION"
msgstr "CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr "CSR_ALLOW_DEVICE_CONFIGURATION"
#. type: "Crs128_description"
#. type: "Csr128_description"
#: Resources/templates/Localizable.strings:320
#, no-wrap
msgid "Disable CRS_ALLOW_DEVICE_CONFIGURATION"
msgstr "Disattiva CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "Disable CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr "Disattiva CSR_ALLOW_DEVICE_CONFIGURATION"
#. type: "HDAULayoutIDx01_title"
#: Resources/templates/Localizable.strings:324
msgid "Settings to control how Chameleon works."
msgstr "Settaggi per controllare come Chameleon lavora."
#. type: "CrsActiveConfig_title"
#. type: "CsrActiveConfig_title"
#: Resources/templates/Localizable.strings:883
#, no-wrap
msgid "CrsActiveConfig"
msgstr "CrsActiveConfig"
msgid "CsrActiveConfig"
msgstr "CsrActiveConfig"
#. type: "CrsActiveConfig_description"
#. type: "CsrActiveConfig_description"
#: Resources/templates/Localizable.strings:884
#, no-wrap
msgid "System Integrity Protection (SIP)."
#. type: "Patches_title"
#: Resources/templates/Localizable.strings:945
#, no-wrap
msgid "Patches"
msgstr "Patch"
msgid "Embedded Patcher"
msgstr "Patcher incorporati"
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, no-wrap
msgid "A selection of options to patch the kernel."
msgstr "Una scelta di opzioni per patchare il Kernel."
msgid "A selection of options to patch the Kernel and Kexts."
msgstr "Una scelta di opzioni per patchare il Kernel e gli Kext."
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#: Resources/templates/Localizable.strings:949
#, no-wrap
msgid "kernel Patcher"
msgstr "Kernel Patcher"
msgid "Embedded Kernel Patch"
msgstr "Kernel Patcher Integrato"
#. type: "kernelPatcher_description"
#: Resources/templates/Localizable.strings:949
#: Resources/templates/Localizable.strings:950
#, no-wrap
msgid "Select one patch for your kernel."
msgstr "Seleziona una o più patch da applicare al Kernel."
#. type: "KernelBooter_kexts_title"
#: Resources/templates/Localizable.strings:952
#: Resources/templates/Localizable.strings:953
#, no-wrap
msgid "KernelBooter_kexts"
msgstr "KernelBooter_kexts"
#. type: "KernelBooter_kexts_description"
#: Resources/templates/Localizable.strings:953
#: Resources/templates/Localizable.strings:954
#, no-wrap
msgid "Re-enable /Extra/Extensions kexts on newer OSes."
msgstr "Riattiva il caricamento degli Kext in /Extra/Extensions per le nuove versioni di OSX."
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#: Resources/templates/Localizable.strings:957
#, no-wrap
msgid "KernelPm"
msgstr "KernelPm"
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#: Resources/templates/Localizable.strings:958
#, no-wrap
msgid "Kernel Power Management patch."
msgstr "Patch del Kernel per la gestione energetica."
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#: Resources/templates/Localizable.strings:961
#, no-wrap
msgid "KernelLapicError"
msgstr "KernelLapicError"
#. type: "KernelLapicError_description"
#: Resources/templates/Localizable.strings:961
#: Resources/templates/Localizable.strings:962
#, no-wrap
msgid "Remove the Local Apic Error panic."
msgstr "Rimuove il Local Apic Error panic."
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#: Resources/templates/Localizable.strings:965
#, no-wrap
msgid "KernelLapicVersion"
msgstr "KernelLapicVersion"
#. type: "KernelLapicVersion_description"
#: Resources/templates/Localizable.strings:965
#: Resources/templates/Localizable.strings:966
#, no-wrap
msgid "Remove the Local Apic Version panic."
msgstr "Rimuove il Local Apic Version panic."
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#: Resources/templates/Localizable.strings:969
#, no-wrap
msgid "KernelHaswell"
msgstr "KernelHaswell"
#. type: "KernelHaswell_description"
#: Resources/templates/Localizable.strings:969
#: Resources/templates/Localizable.strings:970
#, no-wrap
msgid "Patch for Haswell \\\"E\\\" and \\\"ULT\\\" support on older OSes."
msgstr "Patch per utilizzare i processori Haswell \\\"E\\\" o \\\"ULT\\\" su vecchie versioni di OSX."
#. type: "KernelcpuFamily_title"
#: Resources/templates/Localizable.strings:972
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "KernelcpuFamily"
msgstr "KernelcpuFamily"
#. type: "KernelcpuFamily_description"
#: Resources/templates/Localizable.strings:973
#: Resources/templates/Localizable.strings:974
#, no-wrap
msgid "Patch the cpuid_family address to remove the _cpuid_set_info _panic and _tsc_init _panic. For unsupported CPUs"
msgstr "Patch per l'indirizzo cpuid_family per rimuovere _cpuid_set_info _panic e _tsc_init _panic. Per le CPU non supportate"
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "KernelSSE3"
msgstr "KernelcpuFamily"
msgstr "KernelSSE3"
#. type: "KernelSSE3_description"
#: Resources/templates/Localizable.strings:977
#: Resources/templates/Localizable.strings:978
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr "Patch per abilitare ulteriori istruzioni SSE3 sulle vecchie CPU per funzionare su sistemi operativi più recenti."
#. type: "kextsPatcher_title"
#: Resources/templates/Localizable.strings:987
#, no-wrap
msgid "Embedded Kexts Patch"
msgstr "Kext Patcher Integrato"
#. type: "kextsPatcher_description"
#: Resources/templates/Localizable.strings:988
#, no-wrap
msgid "A selection of options to patch kexts."
msgstr "Una scelta di opzioni per patchare gli Kext."
#. type: "AppleRTCPatch_title"
#: Resources/templates/Localizable.strings:991
#, no-wrap
msgid "AppleRTC Patch"
msgstr "AppleRTC"
#. type: "AppleRTCPatch_description"
#: Resources/templates/Localizable.strings:992
#, no-wrap
msgid "Patch AppleRTC."
msgstr "Patch per l’AppleRTC."
#. type: "OrangeIconFixSata_title"
#: Resources/templates/Localizable.strings:995
#, no-wrap
msgid "OrangeIcon Fix"
msgstr "OrangeIcon"
#. type: "OrangeIconFixSata_description"
#: Resources/templates/Localizable.strings:996
#, no-wrap
msgid "Fix OrangeIcon."
msgstr "Patch per le Icone arancioni."
#. type: "TrimEnablerSata_title"
#: Resources/templates/Localizable.strings:999
#, no-wrap
msgid "TrimEnabler Sata"
msgstr "TrimEnabler"
#. type: "TrimEnablerSata_description"
#: Resources/templates/Localizable.strings:1000
#, no-wrap
msgid "Sata TrimEnabler."
msgstr "Patch per il TrimEnabler."
#. type: "AICPMPatch_title"
#: Resources/templates/Localizable.strings:1003
#, no-wrap
msgid "AICPM Patch"
msgstr "AICPM"
#. type: "AICPMPatch_description"
#: Resources/templates/Localizable.strings:1004
#, no-wrap
msgid "Patch AICPM."
msgstr "Patch per l’AICPM."
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982
#: Resources/templates/Localizable.strings:1010
#, no-wrap
msgid "Themes"
msgstr "Temi"
#. type: "Themes_description"
#: Resources/templates/Localizable.strings:983
#: Resources/templates/Localizable.strings:1011
#, no-wrap
msgid ""
"A collection of sample themes\n"
#~ msgstr "Intel Azul AAPL,ig-platform-id"
#~ msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
#~ msgstr "Scegli un AAPL,ig-platform-id da usare per la tua Intel HD 5000."
#~ msgstr "Scegli un AAPL,ig-platform-id da usare per la tua Intel HD5000."
#~ msgid "Set 0000260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#~ msgstr "Imposta l'AAPL,ig-platform-id a 0000260c per schede grafiche Intel HD5000 (Mobile)."
trunk/package/po/chameleon.pot
12521252
12531253
12541254
1255
1255
12561256
12571257
1258
1258
12591259
12601260
1261
1261
12621262
12631263
12641264
......
12661266
12671267
12681268
1269
1269
12701270
12711271
1272
1272
12731273
12741274
1275
1275
12761276
12771277
12781278
......
12801280
12811281
12821282
1283
1283
12841284
12851285
1286
1286
12871287
12881288
1289
1289
12901290
12911291
1292
1292
12931293
12941294
1295
1295
12961296
12971297
1298
1298
12991299
13001300
1301
1301
13021302
13031303
1304
1304
13051305
13061306
1307
1307
13081308
13091309
1310
1310
13111311
13121312
1313
1313
13141314
13151315
1316
1316
13171317
13181318
1319
1319
13201320
13211321
1322
1322
13231323
13241324
1325
1325
13261326
13271327
1328
1328
13291329
13301330
1331
1331
13321332
13331333
1334
1334
13351335
13361336
1337
1337
13381338
13391339
1340
1340
13411341
13421342
1343
1343
13441344
13451345
1346
1346
13471347
13481348
1349
1349
13501350
13511351
1352
1352
13531353
13541354
13551355
......
32013201
32023202
32033203
3204
3204
32053205
32063206
3207
3207
32083208
32093209
3210
3210
32113211
32123212
32133213
......
33683368
33693369
33703370
3371
3371
33723372
33733373
33743374
33753375
33763376
3377
3377
33783378
33793379
33803380
3381
3381
33823382
3383
3383
33843384
33853385
33863386
3387
3387
33883388
33893389
33903390
33913391
33923392
3393
3393
33943394
33953395
33963396
33973397
33983398
3399
3399
34003400
34013401
34023402
34033403
34043404
3405
3405
34063406
34073407
34083408
34093409
34103410
3411
3411
34123412
34133413
34143414
34153415
34163416
3417
3417
34183418
34193419
34203420
34213421
34223422
3423
3423
34243424
34253425
34263426
34273427
34283428
3429
3429
34303430
34313431
34323432
34333433
34343434
3435
3435
34363436
34373437
34383438
34393439
34403440
3441
3441
34423442
34433443
34443444
34453445
34463446
3447
3447
34483448
34493449
34503450
34513451
34523452
3453
3453
34543454
34553455
34563456
34573457
34583458
3459
3459
34603460
34613461
34623462
......
34643464
34653465
34663466
3467
3467
34683468
34693469
34703470
34713471
34723472
3473
3473
34743474
34753475
34763476
34773477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
34783538
3479
3539
34803540
34813541
34823542
34833543
34843544
3485
3545
34863546
34873547
34883548
msgid "Set Graphics Mode to 1920x1200x32"
msgstr ""
#. type: "Crs1_title"
#. type: "Csr1_title"
#: Resources/templates/Localizable.strings:298
#, no-wrap
msgid "CRS_ALLOW_UNTRUSTED_KEXTS"
msgid "CSR_ALLOW_UNTRUSTED_KEXTS"
msgstr ""
#. type: "Crs1_description"
#. type: "Csr1_description"
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid ""
"for all kexts), now become part of rootless(SIP)."
msgstr ""
#. type: "Crs2_title"
#. type: "Csr2_title"
#: Resources/templates/Localizable.strings:301
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_FS"
msgid "CSR_ALLOW_UNRESTRICTED_FS"
msgstr ""
#. type: "Crs2_description"
#. type: "Csr2_description"
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid ""
"modified."
msgstr ""
#. type: "Crs4_title"
#. type: "Csr4_title"
#: Resources/templates/Localizable.strings:304
#, no-wrap
msgid "CRS_ALLOW_TASK_FOR_PID"
msgid "CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs4_description"
#. type: "Csr4_description"
#: Resources/templates/Localizable.strings:305
#, no-wrap
msgid "Disable CRS_ALLOW_TASK_FOR_PID"
msgid "Disable CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs8_title"
#. type: "Csr8_title"
#: Resources/templates/Localizable.strings:307
#, no-wrap
msgid "CRS_ALLOW_KERNEL_DEBUGGER"
msgid "CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs8_description"
#. type: "Csr8_description"
#: Resources/templates/Localizable.strings:308
#, no-wrap
msgid "Disable CRS_ALLOW_KERNEL_DEBUGGER"
msgid "Disable CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs16_title"
#. type: "Csr16_title"
#: Resources/templates/Localizable.strings:310
#, no-wrap
msgid "CRS_ALLOW_APPLE_INTERNAL"
msgid "CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs16_description"
#. type: "Csr16_description"
#: Resources/templates/Localizable.strings:311
#, no-wrap
msgid "Disable CRS_ALLOW_APPLE_INTERNAL"
msgid "Disable CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs32_title"
#. type: "Csr32_title"
#: Resources/templates/Localizable.strings:313
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs32_description"
#. type: "Csr32_description"
#: Resources/templates/Localizable.strings:314
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "Disable CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs64_title"
#. type: "Csr64_title"
#: Resources/templates/Localizable.strings:316
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs64_description"
#. type: "Csr64_description"
#: Resources/templates/Localizable.strings:317
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "Disable CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs128_title"
#. type: "Csr128_title"
#: Resources/templates/Localizable.strings:319
#, no-wrap
msgid "CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "Crs128_description"
#. type: "Csr128_description"
#: Resources/templates/Localizable.strings:320
#, no-wrap
msgid "Disable CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "Disable CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "HDAULayoutIDx01_title"
msgid "Settings to control how Chameleon works."
msgstr ""
#. type: "CrsActiveConfig_title"
#. type: "CsrActiveConfig_title"
#: Resources/templates/Localizable.strings:883
#, no-wrap
msgid "CrsActiveConfig"
msgid "CsrActiveConfig"
msgstr ""
#. type: "CrsActiveConfig_description"
#. type: "CsrActiveConfig_description"
#: Resources/templates/Localizable.strings:884
#, no-wrap
msgid "System Integrity Protection (SIP)."
#. type: "Patches_title"
#: Resources/templates/Localizable.strings:945
#, no-wrap
msgid "Patches"
msgid "Embedded Patcher"
msgstr ""
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, no-wrap
msgid "A selection of options to patch the kernel."
msgid "A selection of options to patch the Kernel and Kexts."
msgstr ""
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#: Resources/templates/Localizable.strings:949
#, no-wrap
msgid "kernel Patcher"
msgid "Embedded Kernel Patch"
msgstr ""
#. type: "kernelPatcher_description"
#: Resources/templates/Localizable.strings:949
#: Resources/templates/Localizable.strings:950
#, no-wrap
msgid "Select one patch for your kernel."
msgstr ""
#. type: "KernelBooter_kexts_title"
#: Resources/templates/Localizable.strings:952
#: Resources/templates/Localizable.strings:953
#, no-wrap
msgid "KernelBooter_kexts"
msgstr ""
#. type: "KernelBooter_kexts_description"
#: Resources/templates/Localizable.strings:953
#: Resources/templates/Localizable.strings:954
#, no-wrap
msgid "Re-enable /Extra/Extensions kexts on newer OSes."
msgstr ""
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#: Resources/templates/Localizable.strings:957
#, no-wrap
msgid "KernelPm"
msgstr ""
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#: Resources/templates/Localizable.strings:958
#, no-wrap
msgid "Kernel Power Management patch."
msgstr ""
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#: Resources/templates/Localizable.strings:961
#, no-wrap
msgid "KernelLapicError"
msgstr ""
#. type: "KernelLapicError_description"
#: Resources/templates/Localizable.strings:961
#: Resources/templates/Localizable.strings:962
#, no-wrap
msgid "Remove the Local Apic Error panic."
msgstr ""
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#: Resources/templates/Localizable.strings:965
#, no-wrap
msgid "KernelLapicVersion"
msgstr ""
#. type: "KernelLapicVersion_description"
#: Resources/templates/Localizable.strings:965
#: Resources/templates/Localizable.strings:966
#, no-wrap
msgid "Remove the Local Apic Version panic."
msgstr ""
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#: Resources/templates/Localizable.strings:969
#, no-wrap
msgid "KernelHaswell"
msgstr ""
#. type: "KernelHaswell_description"
#: Resources/templates/Localizable.strings:969
#: Resources/templates/Localizable.strings:970
#, no-wrap
msgid "Patch for Haswell \\\"E\\\" and \\\"ULT\\\" support on older OSes."
msgstr ""
#. type: "KernelcpuFamily_title"
#: Resources/templates/Localizable.strings:972
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "KernelcpuFamily"
msgstr ""
#. type: "KernelcpuFamily_description"
#: Resources/templates/Localizable.strings:973
#: Resources/templates/Localizable.strings:974
#, no-wrap
msgid ""
"Patch the cpuid_family address to remove the _cpuid_set_info _panic and "
msgstr ""
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "KernelSSE3"
msgstr ""
#. type: "KernelSSE3_description"
#: Resources/templates/Localizable.strings:977
#: Resources/templates/Localizable.strings:978
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr ""
#. type: "kextsPatcher_title"
#: Resources/templates/Localizable.strings:987
#, no-wrap
msgid "Embedded Kexts Patch"
msgstr ""
#. type: "kextsPatcher_description"
#: Resources/templates/Localizable.strings:988
#, no-wrap
msgid "A selection of options to patch kexts."
msgstr ""
#. type: "AppleRTCPatch_title"
#: Resources/templates/Localizable.strings:991
#, no-wrap
msgid "AppleRTC Patch"
msgstr ""
#. type: "AppleRTCPatch_description"
#: Resources/templates/Localizable.strings:992
#, no-wrap
msgid "Patch AppleRTC."
msgstr ""
#. type: "OrangeIconFixSata_title"
#: Resources/templates/Localizable.strings:995
#, no-wrap
msgid "OrangeIcon Fix"
msgstr ""
#. type: "OrangeIconFixSata_description"
#: Resources/templates/Localizable.strings:996
#, no-wrap
msgid "Fix OrangeIcon."
msgstr ""
#. type: "TrimEnablerSata_title"
#: Resources/templates/Localizable.strings:999
#, no-wrap
msgid "TrimEnabler Sata"
msgstr ""
#. type: "TrimEnablerSata_description"
#: Resources/templates/Localizable.strings:1000
#, no-wrap
msgid "Sata TrimEnabler."
msgstr ""
#. type: "AICPMPatch_title"
#: Resources/templates/Localizable.strings:1003
#, no-wrap
msgid "AICPM Patch"
msgstr ""
#. type: "AICPMPatch_description"
#: Resources/templates/Localizable.strings:1004
#, no-wrap
msgid "Patch AICPM."
msgstr ""
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982
#: Resources/templates/Localizable.strings:1010
#, no-wrap
msgid "Themes"
msgstr ""
#. type: "Themes_description"
#: Resources/templates/Localizable.strings:983
#: Resources/templates/Localizable.strings:1011
#, no-wrap
msgid ""
"A collection of sample themes\n"
trunk/package/po/ca.po
77
88
99
10
10
1111
1212
1313
......
12491249
12501250
12511251
1252
1252
12531253
12541254
1255
1255
12561256
12571257
1258
1258
12591259
12601260
12611261
12621262
12631263
1264
1264
12651265
12661266
1267
1267
12681268
12691269
1270
1270
12711271
12721272
12731273
12741274
12751275
1276
1276
12771277
12781278
1279
1279
12801280
12811281
1282
1282
12831283
12841284
1285
1285
12861286
12871287
1288
1288
12891289
12901290
1291
1291
12921292
12931293
1294
1294
12951295
12961296
1297
1297
12981298
12991299
1300
1300
13011301
13021302
1303
1303
13041304
13051305
1306
1306
13071307
13081308
1309
1309
13101310
13111311
1312
1312
13131313
13141314
1315
1315
13161316
13171317
1318
1318
13191319
13201320
1321
1321
13221322
13231323
1324
1324
13251325
13261326
1327
1327
13281328
13291329
1330
1330
13311331
13321332
1333
1333
13341334
13351335
1336
1336
13371337
13381338
1339
1339
13401340
13411341
1342
1342
13431343
13441344
1345
1345
13461346
13471347
13481348
......
32483248
32493249
32503250
3251
3251
32523252
32533253
3254
3254
32553255
32563256
3257
3257
32583258
32593259
32603260
......
34163416
34173417
34183418
3419
3419
34203420
34213421
34223422
34233423
34243424
34253425
3426
3426
34273427
34283428
34293429
3430
3430
34313431
34323432
3433
3433
34343434
34353435
34363436
3437
3437
34383438
34393439
34403440
34413441
34423442
3443
3443
34443444
34453445
34463446
34473447
34483448
3449
3449
34503450
34513451
34523452
34533453
34543454
3455
3455
34563456
34573457
34583458
34593459
34603460
34613461
3462
3462
34633463
34643464
34653465
34663466
34673467
34683468
3469
3469
34703470
34713471
34723472
34733473
34743474
34753475
3476
3476
34773477
34783478
34793479
34803480
34813481
3482
3482
34833483
34843484
34853485
34863486
34873487
34883488
3489
3489
34903490
34913491
34923492
34933493
34943494
3495
3495
34963496
34973497
34983498
34993499
35003500
35013501
3502
3502
35033503
35043504
35053505
35063506
35073507
3508
3508
35093509
35103510
35113511
35123512
35133513
3514
3514
35153515
35163516
35173517
35183518
35193519
3520
3520
35213521
35223522
35233523
35243524
35253525
3526
3526
35273527
35283528
35293529
35303530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
35313593
3532
3594
35333595
35343596
35353597
35363598
35373599
3538
3600
35393601
35403602
35413603
......
35453607
35463608
35473609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
35483630
35493631
35503632
msgstr ""
"Project-Id-Version: Chameleon 2.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-02 15:03+0000\n"
"POT-Creation-Date: 2017-03-26 11:51+0100\n"
"PO-Revision-Date: 2015-02-13 18:18-0000\n"
"Last-Translator: ErmaC <ErmaC@insanelymac.com>\n"
"Language-Team: ca <ca@li.org>\n"
msgid "Set Graphics Mode to 1920x1200x32"
msgstr "Fixar resolució en 1920x1200x32"
#. type: "Crs1_title"
#. type: "Csr1_title"
#: Resources/templates/Localizable.strings:298
#, no-wrap
msgid "CRS_ALLOW_UNTRUSTED_KEXTS"
msgid "CSR_ALLOW_UNTRUSTED_KEXTS"
msgstr ""
#. type: "Crs1_description"
#. type: "Csr1_description"
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP)."
msgstr ""
#. type: "Crs2_title"
#. type: "Csr2_title"
#: Resources/templates/Localizable.strings:301
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_FS"
msgid "CSR_ALLOW_UNRESTRICTED_FS"
msgstr ""
#. type: "Crs2_description"
#. type: "Csr2_description"
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid "Filesystem protection: Important system files are protected and cannot be modified."
msgstr ""
#. type: "Crs4_title"
#. type: "Csr4_title"
#: Resources/templates/Localizable.strings:304
#, no-wrap
msgid "CRS_ALLOW_TASK_FOR_PID"
msgid "CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs4_description"
#. type: "Csr4_description"
#: Resources/templates/Localizable.strings:305
#, no-wrap
msgid "Disable CRS_ALLOW_TASK_FOR_PID"
msgid "Disable CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs8_title"
#. type: "Csr8_title"
#: Resources/templates/Localizable.strings:307
#, no-wrap
msgid "CRS_ALLOW_KERNEL_DEBUGGER"
msgid "CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs8_description"
#. type: "Csr8_description"
#: Resources/templates/Localizable.strings:308
#, no-wrap
msgid "Disable CRS_ALLOW_KERNEL_DEBUGGER"
msgid "Disable CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs16_title"
#. type: "Csr16_title"
#: Resources/templates/Localizable.strings:310
#, no-wrap
msgid "CRS_ALLOW_APPLE_INTERNAL"
msgid "CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs16_description"
#. type: "Csr16_description"
#: Resources/templates/Localizable.strings:311
#, no-wrap
msgid "Disable CRS_ALLOW_APPLE_INTERNAL"
msgid "Disable CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs32_title"
#. type: "Csr32_title"
#: Resources/templates/Localizable.strings:313
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs32_description"
#. type: "Csr32_description"
#: Resources/templates/Localizable.strings:314
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "Disable CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs64_title"
#. type: "Csr64_title"
#: Resources/templates/Localizable.strings:316
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs64_description"
#. type: "Csr64_description"
#: Resources/templates/Localizable.strings:317
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "Disable CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs128_title"
#. type: "Csr128_title"
#: Resources/templates/Localizable.strings:319
#, no-wrap
msgid "CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "Crs128_description"
#. type: "Csr128_description"
#: Resources/templates/Localizable.strings:320
#, no-wrap
msgid "Disable CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "Disable CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "HDAULayoutIDx01_title"
msgid "Settings to control how Chameleon works."
msgstr "Ajustos de control sobre el funcionament de Chameleon."
#. type: "CrsActiveConfig_title"
#. type: "CsrActiveConfig_title"
#: Resources/templates/Localizable.strings:883
#, no-wrap
msgid "CrsActiveConfig"
msgid "CsrActiveConfig"
msgstr ""
#. type: "CrsActiveConfig_description"
#. type: "CsrActiveConfig_description"
#: Resources/templates/Localizable.strings:884
#, no-wrap
msgid "System Integrity Protection (SIP)."
#: Resources/templates/Localizable.strings:945
#, fuzzy, no-wrap
#| msgid "Kext Patcher"
msgid "Patches"
msgid "Embedded Patcher"
msgstr "Kext Patcher"
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, fuzzy, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch the kernel."
msgid "A selection of options to patch the Kernel and Kexts."
msgstr "Una selecció d'opcions relatives al video."
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#: Resources/templates/Localizable.strings:949
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "kernel Patcher"
msgid "Embedded Kernel Patch"
msgstr "Kernel Patcher"
#. type: "kernelPatcher_description"
#: Resources/templates/Localizable.strings:949
#: Resources/templates/Localizable.strings:950
#, no-wrap
msgid "Select one patch for your kernel."
msgstr ""
#. type: "KernelBooter_kexts_title"
#: Resources/templates/Localizable.strings:952
#: Resources/templates/Localizable.strings:953
#, no-wrap
msgid "KernelBooter_kexts"
msgstr ""
#. type: "KernelBooter_kexts_description"
#: Resources/templates/Localizable.strings:953
#: Resources/templates/Localizable.strings:954
#, no-wrap
msgid "Re-enable /Extra/Extensions kexts on newer OSes."
msgstr ""
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#: Resources/templates/Localizable.strings:957
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelPm"
msgstr "Kernel Patcher"
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#: Resources/templates/Localizable.strings:958
#, fuzzy, no-wrap
#| msgid "Power Management"
msgid "Kernel Power Management patch."
msgstr "Gestió d'energia"
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#: Resources/templates/Localizable.strings:961
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicError"
msgstr "Kernel Patcher"
#. type: "KernelLapicError_description"
#: Resources/templates/Localizable.strings:961
#: Resources/templates/Localizable.strings:962
#, no-wrap
msgid "Remove the Local Apic Error panic."
msgstr ""
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#: Resources/templates/Localizable.strings:965
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicVersion"
msgstr "Kernel Patcher"
#. type: "KernelLapicVersion_description"
#: Resources/templates/Localizable.strings:965
#: Resources/templates/Localizable.strings:966
#, no-wrap
msgid "Remove the Local Apic Version panic."
msgstr ""
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#: Resources/templates/Localizable.strings:969
#, fuzzy, no-wrap
#| msgid "Kernel Flags"
msgid "KernelHaswell"
msgstr "Kernel Flags"
#. type: "KernelHaswell_description"
#: Resources/templates/Localizable.strings:969
#: Resources/templates/Localizable.strings:970
#, no-wrap
msgid "Patch for Haswell \\\"E\\\" and \\\"ULT\\\" support on older OSes."
msgstr ""
#. type: "KernelcpuFamily_title"
#: Resources/templates/Localizable.strings:972
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "KernelcpuFamily"
msgstr ""
#. type: "KernelcpuFamily_description"
#: Resources/templates/Localizable.strings:973
#: Resources/templates/Localizable.strings:974
#, no-wrap
msgid "Patch the cpuid_family address to remove the _cpuid_set_info _panic and _tsc_init _panic. For unsupported CPUs"
msgstr ""
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "KernelSSE3"
msgstr ""
#. type: "KernelSSE3_description"
#: Resources/templates/Localizable.strings:977
#: Resources/templates/Localizable.strings:978
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr ""
#. type: "kextsPatcher_title"
#: Resources/templates/Localizable.strings:987
#, fuzzy, no-wrap
#| msgid "Kext Patcher"
msgid "Embedded Kexts Patch"
msgstr "Kext Patcher"
#. type: "kextsPatcher_description"
#: Resources/templates/Localizable.strings:988
#, fuzzy, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch kexts."
msgstr "Una selecció d'opcions relatives al video."
#. type: "AppleRTCPatch_title"
#: Resources/templates/Localizable.strings:991
#, no-wrap
msgid "AppleRTC Patch"
msgstr ""
#. type: "AppleRTCPatch_description"
#: Resources/templates/Localizable.strings:992
#, no-wrap
msgid "Patch AppleRTC."
msgstr ""
#. type: "OrangeIconFixSata_title"
#: Resources/templates/Localizable.strings:995
#, no-wrap
msgid "OrangeIcon Fix"
msgstr ""
#. type: "OrangeIconFixSata_description"
#: Resources/templates/Localizable.strings:996
#, no-wrap
msgid "Fix OrangeIcon."
msgstr ""
#. type: "TrimEnablerSata_title"
#: Resources/templates/Localizable.strings:999
#, no-wrap
msgid "TrimEnabler Sata"
msgstr ""
#. type: "TrimEnablerSata_description"
#: Resources/templates/Localizable.strings:1000
#, no-wrap
msgid "Sata TrimEnabler."
msgstr ""
#. type: "AICPMPatch_title"
#: Resources/templates/Localizable.strings:1003
#, no-wrap
msgid "AICPM Patch"
msgstr ""
#. type: "AICPMPatch_description"
#: Resources/templates/Localizable.strings:1004
#, no-wrap
msgid "Patch AICPM."
msgstr ""
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982
#: Resources/templates/Localizable.strings:1010
#, no-wrap
msgid "Themes"
msgstr "Themes"
#. type: "Themes_description"
#: Resources/templates/Localizable.strings:983
#: Resources/templates/Localizable.strings:1011
#, no-wrap
msgid ""
"A collection of sample themes\n"
"Pots trobar més themes en: http://forum.voodooprojects.org/index.php/board,7.0.html"
#, fuzzy
#~| msgid "Kext Patcher"
#~ msgid "Patches"
#~ msgstr "Kext Patcher"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "kernel Patcher"
#~ msgstr "Kernel Patcher"
#, fuzzy
#~| msgid "Kext Patcher"
#~ msgid "Kexts Patcher"
#~ msgstr "Kext Patcher"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "Kernel Patches"
#~ msgstr "Kernel Patcher"
#, fuzzy
#~| msgid "Intel Azul AAPL,ig-platform-id"
#~ msgid "Intel Bdw (Broadwell) AAPL,ig-platform-id"
#~ msgstr "Intel Azul AAPL,ig-platform-id"
trunk/package/po/de.po
77
88
99
10
10
1111
1212
1313
......
12741274
12751275
12761276
1277
1277
12781278
12791279
1280
1280
12811281
12821282
1283
1283
12841284
12851285
12861286
12871287
12881288
1289
1289
12901290
12911291
1292
1292
12931293
12941294
1295
1295
12961296
12971297
12981298
12991299
13001300
1301
1301
13021302
13031303
1304
1304
13051305
13061306
1307
1307
13081308
13091309
1310
1310
13111311
13121312
1313
1313
13141314
13151315
1316
1316
13171317
13181318
1319
1319
13201320
13211321
1322
1322
13231323
13241324
1325
1325
13261326
13271327
1328
1328
13291329
13301330
1331
1331
13321332
13331333
1334
1334
13351335
13361336
1337
1337
13381338
13391339
1340
1340
13411341
13421342
1343
1343
13441344
13451345
1346
1346
13471347
13481348
1349
1349
13501350
13511351
1352
1352
13531353
13541354
1355
1355
13561356
13571357
1358
1358
13591359
13601360
1361
1361
13621362
13631363
1364
1364
13651365
13661366
1367
1367
13681368
13691369
1370
1370
13711371
13721372
13731373
......
33773377
33783378
33793379
3380
3380
33813381
33823382
3383
3383
33843384
33853385
3386
3386
33873387
33883388
33893389
......
35483548
35493549
35503550
3551
3551
35523552
35533553
35543554
35553555
35563556
35573557
3558
3558
35593559
35603560
35613561
3562
3562
35633563
35643564
3565
3565
35663566
35673567
35683568
3569
3569
35703570
35713571
35723572
35733573
35743574
3575
3575
35763576
35773577
35783578
35793579
35803580
3581
3581
35823582
35833583
35843584
35853585
35863586
3587
3587
35883588
35893589
35903590
35913591
35923592
35933593
3594
3594
35953595
35963596
35973597
35983598
35993599
36003600
3601
3601
36023602
36033603
36043604
36053605
36063606
36073607
3608
3608
36093609
36103610
36113611
36123612
36133613
3614
3614
36153615
36163616
36173617
36183618
36193619
36203620
3621
3621
36223622
36233623
36243624
36253625
36263626
3627
3627
36283628
36293629
36303630
36313631
36323632
36333633
3634
3634
36353635
36363636
36373637
36383638
36393639
3640
3640
36413641
36423642
36433643
36443644
36453645
3646
3646
36473647
36483648
36493649
36503650
36513651
3652
3652
36533653
36543654
36553655
36563656
36573657
3658
3658
36593659
36603660
36613661
36623662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
36633725
3664
3726
36653727
36663728
36673729
36683730
36693731
3670
3732
36713733
36723734
36733735
......
36773739
36783740
36793741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
36803762
36813763
36823764
msgstr ""
"Project-Id-Version: Chameleon 2.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-02 15:03+0000\n"
"POT-Creation-Date: 2017-03-26 11:51+0100\n"
"PO-Revision-Date: 2015-02-13 18:21-0000\n"
"Last-Translator: ErmaC <ErmaC@insanelymac.com>\n"
"Language-Team: de <de@li.org>\n"
msgid "Set Graphics Mode to 1920x1200x32"
msgstr "Setzt die Bildschirmauflösung auf 1920x1200x32"
#. type: "Crs1_title"
#. type: "Csr1_title"
#: Resources/templates/Localizable.strings:298
#, no-wrap
msgid "CRS_ALLOW_UNTRUSTED_KEXTS"
msgid "CSR_ALLOW_UNTRUSTED_KEXTS"
msgstr ""
#. type: "Crs1_description"
#. type: "Csr1_description"
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP)."
msgstr ""
#. type: "Crs2_title"
#. type: "Csr2_title"
#: Resources/templates/Localizable.strings:301
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_FS"
msgid "CSR_ALLOW_UNRESTRICTED_FS"
msgstr ""
#. type: "Crs2_description"
#. type: "Csr2_description"
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid "Filesystem protection: Important system files are protected and cannot be modified."
msgstr ""
#. type: "Crs4_title"
#. type: "Csr4_title"
#: Resources/templates/Localizable.strings:304
#, no-wrap
msgid "CRS_ALLOW_TASK_FOR_PID"
msgid "CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs4_description"
#. type: "Csr4_description"
#: Resources/templates/Localizable.strings:305
#, no-wrap
msgid "Disable CRS_ALLOW_TASK_FOR_PID"
msgid "Disable CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs8_title"
#. type: "Csr8_title"
#: Resources/templates/Localizable.strings:307
#, no-wrap
msgid "CRS_ALLOW_KERNEL_DEBUGGER"
msgid "CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs8_description"
#. type: "Csr8_description"
#: Resources/templates/Localizable.strings:308
#, no-wrap
msgid "Disable CRS_ALLOW_KERNEL_DEBUGGER"
msgid "Disable CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs16_title"
#. type: "Csr16_title"
#: Resources/templates/Localizable.strings:310
#, no-wrap
msgid "CRS_ALLOW_APPLE_INTERNAL"
msgid "CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs16_description"
#. type: "Csr16_description"
#: Resources/templates/Localizable.strings:311
#, no-wrap
msgid "Disable CRS_ALLOW_APPLE_INTERNAL"
msgid "Disable CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs32_title"
#. type: "Csr32_title"
#: Resources/templates/Localizable.strings:313
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs32_description"
#. type: "Csr32_description"
#: Resources/templates/Localizable.strings:314
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "Disable CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs64_title"
#. type: "Csr64_title"
#: Resources/templates/Localizable.strings:316
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs64_description"
#. type: "Csr64_description"
#: Resources/templates/Localizable.strings:317
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "Disable CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs128_title"
#. type: "Csr128_title"
#: Resources/templates/Localizable.strings:319
#, no-wrap
msgid "CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "Crs128_description"
#. type: "Csr128_description"
#: Resources/templates/Localizable.strings:320
#, no-wrap
msgid "Disable CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "Disable CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "HDAULayoutIDx01_title"
msgid "Settings to control how Chameleon works."
msgstr "Einstellungen zur Kontrolle von Chameleon."
#. type: "CrsActiveConfig_title"
#. type: "CsrActiveConfig_title"
#: Resources/templates/Localizable.strings:883
#, no-wrap
msgid "CrsActiveConfig"
msgid "CsrActiveConfig"
msgstr ""
#. type: "CrsActiveConfig_description"
#. type: "CsrActiveConfig_description"
#: Resources/templates/Localizable.strings:884
#, no-wrap
msgid "System Integrity Protection (SIP)."
#: Resources/templates/Localizable.strings:945
#, fuzzy, no-wrap
#| msgid "Kext Patcher"
msgid "Patches"
msgid "Embedded Patcher"
msgstr "Kext Patcher"
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, fuzzy, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch the kernel."
msgid "A selection of options to patch the Kernel and Kexts."
msgstr "Optionen zur Grafik."
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#: Resources/templates/Localizable.strings:949
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "kernel Patcher"
msgid "Embedded Kernel Patch"
msgstr "Kernel Patcher"
#. type: "kernelPatcher_description"
#: Resources/templates/Localizable.strings:949
#: Resources/templates/Localizable.strings:950
#, no-wrap
msgid "Select one patch for your kernel."
msgstr ""
#. type: "KernelBooter_kexts_title"
#: Resources/templates/Localizable.strings:952
#: Resources/templates/Localizable.strings:953
#, no-wrap
msgid "KernelBooter_kexts"
msgstr ""
#. type: "KernelBooter_kexts_description"
#: Resources/templates/Localizable.strings:953
#: Resources/templates/Localizable.strings:954
#, no-wrap
msgid "Re-enable /Extra/Extensions kexts on newer OSes."
msgstr ""
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#: Resources/templates/Localizable.strings:957
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelPm"
msgstr "Kernel Patcher"
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#: Resources/templates/Localizable.strings:958
#, fuzzy, no-wrap
#| msgid "Power Management"
msgid "Kernel Power Management patch."
msgstr "Energieverwaltung"
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#: Resources/templates/Localizable.strings:961
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicError"
msgstr "Kernel Patcher"
#. type: "KernelLapicError_description"
#: Resources/templates/Localizable.strings:961
#: Resources/templates/Localizable.strings:962
#, no-wrap
msgid "Remove the Local Apic Error panic."
msgstr ""
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#: Resources/templates/Localizable.strings:965
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicVersion"
msgstr "Kernel Patcher"
#. type: "KernelLapicVersion_description"
#: Resources/templates/Localizable.strings:965
#: Resources/templates/Localizable.strings:966
#, no-wrap
msgid "Remove the Local Apic Version panic."
msgstr ""
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#: Resources/templates/Localizable.strings:969
#, fuzzy, no-wrap
#| msgid "Kernel Flags"
msgid "KernelHaswell"
msgstr "Kernel Flags"
#. type: "KernelHaswell_description"
#: Resources/templates/Localizable.strings:969
#: Resources/templates/Localizable.strings:970
#, no-wrap
msgid "Patch for Haswell \\\"E\\\" and \\\"ULT\\\" support on older OSes."
msgstr ""
#. type: "KernelcpuFamily_title"
#: Resources/templates/Localizable.strings:972
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "KernelcpuFamily"
msgstr ""
#. type: "KernelcpuFamily_description"
#: Resources/templates/Localizable.strings:973
#: Resources/templates/Localizable.strings:974
#, no-wrap
msgid "Patch the cpuid_family address to remove the _cpuid_set_info _panic and _tsc_init _panic. For unsupported CPUs"
msgstr ""
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "KernelSSE3"
msgstr ""
#. type: "KernelSSE3_description"
#: Resources/templates/Localizable.strings:977
#: Resources/templates/Localizable.strings:978
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr ""
#. type: "kextsPatcher_title"
#: Resources/templates/Localizable.strings:987
#, fuzzy, no-wrap
#| msgid "Kext Patcher"
msgid "Embedded Kexts Patch"
msgstr "Kext Patcher"
#. type: "kextsPatcher_description"
#: Resources/templates/Localizable.strings:988
#, fuzzy, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch kexts."
msgstr "Optionen zur Grafik."
#. type: "AppleRTCPatch_title"
#: Resources/templates/Localizable.strings:991
#, no-wrap
msgid "AppleRTC Patch"
msgstr ""
#. type: "AppleRTCPatch_description"
#: Resources/templates/Localizable.strings:992
#, no-wrap
msgid "Patch AppleRTC."
msgstr ""
#. type: "OrangeIconFixSata_title"
#: Resources/templates/Localizable.strings:995
#, no-wrap
msgid "OrangeIcon Fix"
msgstr ""
#. type: "OrangeIconFixSata_description"
#: Resources/templates/Localizable.strings:996
#, no-wrap
msgid "Fix OrangeIcon."
msgstr ""
#. type: "TrimEnablerSata_title"
#: Resources/templates/Localizable.strings:999
#, no-wrap
msgid "TrimEnabler Sata"
msgstr ""
#. type: "TrimEnablerSata_description"
#: Resources/templates/Localizable.strings:1000
#, no-wrap
msgid "Sata TrimEnabler."
msgstr ""
#. type: "AICPMPatch_title"
#: Resources/templates/Localizable.strings:1003
#, no-wrap
msgid "AICPM Patch"
msgstr ""
#. type: "AICPMPatch_description"
#: Resources/templates/Localizable.strings:1004
#, no-wrap
msgid "Patch AICPM."
msgstr ""
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982
#: Resources/templates/Localizable.strings:1010
#, no-wrap
msgid "Themes"
msgstr "Erscheinungsbild"
#. type: "Themes_description"
#: Resources/templates/Localizable.strings:983
#: Resources/templates/Localizable.strings:1011
#, no-wrap
msgid ""
"A collection of sample themes\n"
"Weitere Themen gibt es hier: http://forum.voodooprojects.org/index.php/board,7.0.html"
#, fuzzy
#~| msgid "Kext Patcher"
#~ msgid "Patches"
#~ msgstr "Kext Patcher"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "kernel Patcher"
#~ msgstr "Kernel Patcher"
#, fuzzy
#~| msgid "Kext Patcher"
#~ msgid "Kexts Patcher"
#~ msgstr "Kext Patcher"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "Kernel Patches"
#~ msgstr "Kernel Patcher"
#, fuzzy
#~| msgid "Intel Azul AAPL,ig-platform-id"
#~ msgid "Intel Bdw (Broadwell) AAPL,ig-platform-id"
#~ msgstr "Intel Azul AAPL,ig-platform-id"
trunk/package/po/bg.po
77
88
99
10
10
1111
1212
1313
......
12441244
12451245
12461246
1247
1247
12481248
12491249
1250
1250
12511251
12521252
1253
1253
12541254
12551255
12561256
12571257
12581258
1259
1259
12601260
12611261
1262
1262
12631263
12641264
1265
1265
12661266
12671267
12681268
12691269
12701270
1271
1271
12721272
12731273
1274
1274
12751275
12761276
1277
1277
12781278
12791279
1280
1280
12811281
12821282
1283
1283
12841284
12851285
1286
1286
12871287
12881288
1289
1289
12901290
12911291
1292
1292
12931293
12941294
1295
1295
12961296
12971297
1298
1298
12991299
13001300
1301
1301
13021302
13031303
1304
1304
13051305
13061306
1307
1307
13081308
13091309
1310
1310
13111311
13121312
1313
1313
13141314
13151315
1316
1316
13171317
13181318
1319
1319
13201320
13211321
1322
1322
13231323
13241324
1325
1325
13261326
13271327
1328
1328
13291329
13301330
1331
1331
13321332
13331333
1334
1334
13351335
13361336
1337
1337
13381338
13391339
1340
1340
13411341
13421342
13431343
......
31853185
31863186
31873187
3188
3188
31893189
31903190
3191
3191
31923192
31933193
3194
3194
31953195
31963196
31973197
......
33503350
33513351
33523352
3353
3354
3355
3353
3354
3355
3356
33563357
33573358
33583359
33593360
33603361
3361
3362
33623363
33633364
33643365
3365
3366
33663367
33673368
3368
3369
33693370
33703371
33713372
3372
3373
33733374
33743375
33753376
33763377
33773378
3378
3379
33793380
33803381
33813382
33823383
33833384
3384
3385
33853386
33863387
33873388
33883389
33893390
3390
3391
33913392
33923393
33933394
33943395
33953396
33963397
3397
3398
33983399
33993400
34003401
34013402
34023403
34033404
3404
3405
34053406
34063407
34073408
34083409
34093410
34103411
3411
3412
34123413
34133414
34143415
34153416
34163417
3417
3418
34183419
34193420
34203421
34213422
34223423
34233424
3424
3425
34253426
34263427
34273428
34283429
34293430
3430
3431
34313432
34323433
34333434
34343435
34353436
34363437
3437
3438
34383439
34393440
34403441
34413442
34423443
3443
3444
34443445
34453446
34463447
34473448
34483449
3449
3450
34503451
34513452
34523453
34533454
34543455
3455
3456
34563457
34573458
34583459
34593460
34603461
3461
3462
34623463
34633464
34643465
34653466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
34663529
3467
3530
34683531
34693532
34703533
34713534
34723535
3473
3536
34743537
34753538
34763539
......
34793542
34803543
34813544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
34823565
34833566
34843567
msgstr ""
"Project-Id-Version: Chameleon 2.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-11-02 15:03+0000\n"
"POT-Creation-Date: 2017-03-26 11:51+0100\n"
"PO-Revision-Date: 2014-11-24 20:12-0000\n"
"Last-Translator: Желязко <slackjackie@gmail.com>\n"
"Language-Team: bg <bg@li.org>\n"
msgid "Set Graphics Mode to 1920x1200x32"
msgstr "Задайте Графичен режим 1920x1200x32"
#. type: "Crs1_title"
#. type: "Csr1_title"
#: Resources/templates/Localizable.strings:298
#, no-wrap
msgid "CRS_ALLOW_UNTRUSTED_KEXTS"
msgid "CSR_ALLOW_UNTRUSTED_KEXTS"
msgstr ""
#. type: "Crs1_description"
#. type: "Csr1_description"
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP)."
msgstr ""
#. type: "Crs2_title"
#. type: "Csr2_title"
#: Resources/templates/Localizable.strings:301
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_FS"
msgid "CSR_ALLOW_UNRESTRICTED_FS"
msgstr ""
#. type: "Crs2_description"
#. type: "Csr2_description"
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid "Filesystem protection: Important system files are protected and cannot be modified."
msgstr ""
#. type: "Crs4_title"
#. type: "Csr4_title"
#: Resources/templates/Localizable.strings:304
#, no-wrap
msgid "CRS_ALLOW_TASK_FOR_PID"
msgid "CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs4_description"
#. type: "Csr4_description"
#: Resources/templates/Localizable.strings:305
#, no-wrap
msgid "Disable CRS_ALLOW_TASK_FOR_PID"
msgid "Disable CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs8_title"
#. type: "Csr8_title"
#: Resources/templates/Localizable.strings:307
#, no-wrap
msgid "CRS_ALLOW_KERNEL_DEBUGGER"
msgid "CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs8_description"
#. type: "Csr8_description"
#: Resources/templates/Localizable.strings:308
#, no-wrap
msgid "Disable CRS_ALLOW_KERNEL_DEBUGGER"
msgid "Disable CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs16_title"
#. type: "Csr16_title"
#: Resources/templates/Localizable.strings:310
#, no-wrap
msgid "CRS_ALLOW_APPLE_INTERNAL"
msgid "CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs16_description"
#. type: "Csr16_description"
#: Resources/templates/Localizable.strings:311
#, no-wrap
msgid "Disable CRS_ALLOW_APPLE_INTERNAL"
msgid "Disable CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs32_title"
#. type: "Csr32_title"
#: Resources/templates/Localizable.strings:313
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs32_description"
#. type: "Csr32_description"
#: Resources/templates/Localizable.strings:314
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "Disable CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs64_title"
#. type: "Csr64_title"
#: Resources/templates/Localizable.strings:316
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs64_description"
#. type: "Csr64_description"
#: Resources/templates/Localizable.strings:317
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "Disable CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs128_title"
#. type: "Csr128_title"
#: Resources/templates/Localizable.strings:319
#, no-wrap
msgid "CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "Crs128_description"
#. type: "Csr128_description"
#: Resources/templates/Localizable.strings:320
#, no-wrap
msgid "Disable CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "Disable CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "HDAULayoutIDx01_title"
msgid "Settings to control how Chameleon works."
msgstr "Настройки, за да контролирате как работи Хамелеон."
#. type: "CrsActiveConfig_title"
#. type: "CsrActiveConfig_title"
#: Resources/templates/Localizable.strings:883
#, no-wrap
msgid "CrsActiveConfig"
msgid "CsrActiveConfig"
msgstr ""
#. type: "CrsActiveConfig_description"
#. type: "CsrActiveConfig_description"
#: Resources/templates/Localizable.strings:884
#, no-wrap
msgid "System Integrity Protection (SIP)."
#. type: "Patches_title"
#: Resources/templates/Localizable.strings:945
#, no-wrap
msgid "Patches"
msgstr ""
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "Embedded Patcher"
msgstr "Kernel Patcher"
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, fuzzy, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch the kernel."
msgid "A selection of options to patch the Kernel and Kexts."
msgstr "А изборът на опции, които се занимават с видеото."
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#: Resources/templates/Localizable.strings:949
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "kernel Patcher"
msgid "Embedded Kernel Patch"
msgstr "Kernel Patcher"
#. type: "kernelPatcher_description"
#: Resources/templates/Localizable.strings:949
#: Resources/templates/Localizable.strings:950
#, no-wrap
msgid "Select one patch for your kernel."
msgstr ""
#. type: "KernelBooter_kexts_title"
#: Resources/templates/Localizable.strings:952
#: Resources/templates/Localizable.strings:953
#, no-wrap
msgid "KernelBooter_kexts"
msgstr ""
#. type: "KernelBooter_kexts_description"
#: Resources/templates/Localizable.strings:953
#: Resources/templates/Localizable.strings:954
#, no-wrap
msgid "Re-enable /Extra/Extensions kexts on newer OSes."
msgstr ""
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#: Resources/templates/Localizable.strings:957
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelPm"
msgstr "Kernel Patcher"
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#: Resources/templates/Localizable.strings:958
#, fuzzy, no-wrap
#| msgid "Power Management"
msgid "Kernel Power Management patch."
msgstr "Опции на захранването"
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#: Resources/templates/Localizable.strings:961
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicError"
msgstr "Kernel Patcher"
#. type: "KernelLapicError_description"
#: Resources/templates/Localizable.strings:961
#: Resources/templates/Localizable.strings:962
#, no-wrap
msgid "Remove the Local Apic Error panic."
msgstr ""
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#: Resources/templates/Localizable.strings:965
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicVersion"
msgstr "Kernel Patcher"
#. type: "KernelLapicVersion_description"
#: Resources/templates/Localizable.strings:965
#: Resources/templates/Localizable.strings:966
#, no-wrap
msgid "Remove the Local Apic Version panic."
msgstr ""
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#: Resources/templates/Localizable.strings:969
#, fuzzy, no-wrap
#| msgid "Kernel Flags"
msgid "KernelHaswell"
msgstr "Ядрото опции /Kernel Flags/"
#. type: "KernelHaswell_description"
#: Resources/templates/Localizable.strings:969
#: Resources/templates/Localizable.strings:970
#, no-wrap
msgid "Patch for Haswell \\\"E\\\" and \\\"ULT\\\" support on older OSes."
msgstr ""
#. type: "KernelcpuFamily_title"
#: Resources/templates/Localizable.strings:972
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "KernelcpuFamily"
msgstr ""
#. type: "KernelcpuFamily_description"
#: Resources/templates/Localizable.strings:973
#: Resources/templates/Localizable.strings:974
#, no-wrap
msgid "Patch the cpuid_family address to remove the _cpuid_set_info _panic and _tsc_init _panic. For unsupported CPUs"
msgstr ""
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "KernelSSE3"
msgstr ""
#. type: "KernelSSE3_description"
#: Resources/templates/Localizable.strings:977
#: Resources/templates/Localizable.strings:978
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr ""
#. type: "kextsPatcher_title"
#: Resources/templates/Localizable.strings:987
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "Embedded Kexts Patch"
msgstr "Kernel Patcher"
#. type: "kextsPatcher_description"
#: Resources/templates/Localizable.strings:988
#, fuzzy, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch kexts."
msgstr "А изборът на опции, които се занимават с видеото."
#. type: "AppleRTCPatch_title"
#: Resources/templates/Localizable.strings:991
#, no-wrap
msgid "AppleRTC Patch"
msgstr ""
#. type: "AppleRTCPatch_description"
#: Resources/templates/Localizable.strings:992
#, no-wrap
msgid "Patch AppleRTC."
msgstr ""
#. type: "OrangeIconFixSata_title"
#: Resources/templates/Localizable.strings:995
#, no-wrap
msgid "OrangeIcon Fix"
msgstr ""
#. type: "OrangeIconFixSata_description"
#: Resources/templates/Localizable.strings:996
#, no-wrap
msgid "Fix OrangeIcon."
msgstr ""
#. type: "TrimEnablerSata_title"
#: Resources/templates/Localizable.strings:999
#, no-wrap
msgid "TrimEnabler Sata"
msgstr ""
#. type: "TrimEnablerSata_description"
#: Resources/templates/Localizable.strings:1000
#, no-wrap
msgid "Sata TrimEnabler."
msgstr ""
#. type: "AICPMPatch_title"
#: Resources/templates/Localizable.strings:1003
#, no-wrap
msgid "AICPM Patch"
msgstr ""
#. type: "AICPMPatch_description"
#: Resources/templates/Localizable.strings:1004
#, no-wrap
msgid "Patch AICPM."
msgstr ""
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982
#: Resources/templates/Localizable.strings:1010
#, no-wrap
msgid "Themes"
msgstr "Теми"
#. type: "Themes_description"
#: Resources/templates/Localizable.strings:983
#: Resources/templates/Localizable.strings:1011
#, no-wrap
msgid ""
"A collection of sample themes\n"
"Колекция от теми\n"
"http://forum.voodooprojects.org/index.php/board,7.0.html"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "Patches"
#~ msgstr "Kernel Patcher"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "kernel Patcher"
#~ msgstr "Kernel Patcher"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "Kexts Patcher"
#~ msgstr "Kernel Patcher"
#, fuzzy
#~| msgid "Kernel Patcher"
#~ msgid "Kernel Patches"
#~ msgstr "Kernel Patcher"
#~ msgid ""
#~ "Merge an existing /Extra folder, if found on the target, with any options "
#~ "chosen from the installer, other than the Bootloader. The original /Extra "
trunk/package/po/zh_TW.po
77
88
99
10
10
1111
1212
1313
......
12761276
12771277
12781278
1279
1279
12801280
12811281
1282
1282
12831283
12841284
1285
1285
12861286
12871287
12881288
12891289
12901290
1291
1291
12921292
12931293
1294
1294
12951295
12961296
1297
1297
12981298
12991299
13001300
13011301
13021302
1303
1303
13041304
13051305
1306
1306
13071307
13081308
1309
1309
13101310
13111311
1312
1312
13131313
13141314
1315
1315
13161316
13171317
1318
1318
13191319
13201320
1321
1321
13221322
13231323
1324
1324
13251325
13261326
1327
1327
13281328
13291329
1330
1330
13311331
13321332
1333
1333
13341334
13351335
1336
1336
13371337
13381338
1339
1339
13401340
13411341
1342
1342
13431343
13441344
1345
1345
13461346
13471347
1348
1348
13491349
13501350
1351
1351
13521352
13531353
1354
1354
13551355
13561356
1357
1357
13581358
13591359
1360
1360
13611361
13621362
1363
1363
13641364
13651365
1366
1366
13671367
13681368
1369
1369
13701370
13711371
1372
1372
13731373
13741374
13751375
......
33543354
33553355
33563356
3357
3357
33583358
33593359
3360
3360
33613361
33623362
3363
3363
33643364
33653365
33663366
......
35223522
35233523
35243524
3525
3525
35263526
35273527
35283528
35293529
35303530
35313531
3532
3532
35333533
35343534
35353535
3536
3536
35373537
35383538
3539
3539
35403540
35413541
35423542
3543
3543
35443544
35453545
35463546
35473547
35483548
3549
3549
35503550
35513551
35523552
35533553
35543554
3555
3555
35563556
35573557
35583558
35593559
35603560
3561
3561
35623562
35633563
35643564
35653565
35663566
35673567
3568
3568
35693569
35703570
35713571
35723572
35733573
35743574
3575
3575
35763576
35773577
35783578
35793579
35803580
35813581
3582
3582
35833583
35843584
35853585
35863586
35873587
3588
3588
35893589
35903590
35913591
35923592
35933593
35943594
3595
3595
35963596
35973597
35983598
35993599
36003600
3601
3601
36023602
36033603
36043604
36053605
36063606
36073607
3608
3608
36093609
36103610
36113611
36123612
36133613
3614
3614
36153615
36163616
36173617
36183618
36193619
3620
3620
36213621
36223622
36233623
36243624
36253625
3626
3626
36273627
36283628
36293629
36303630
36313631
3632
3632
36333633
36343634
36353635
36363636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
36373699
3638
3700
36393701
36403702
36413703
36423704
36433705
3644
3706
36453707
36463708
36473709
msgstr ""
"Project-Id-Version: Chameleon 2.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-07-12 19:02+0200\n"
"POT-Creation-Date: 2017-03-26 11:51+0100\n"
"PO-Revision-Date: 2015-02-13 18:38-0000\n"
"Last-Translator: crazybirdy <>\n"
"Language-Team: zh_TW <zh_TW@li.org>\n"
msgid "Set Graphics Mode to 1920x1200x32"
msgstr "設定螢幕解析度為 1920x1200x32"
#. type: "Crs1_title"
#. type: "Csr1_title"
#: Resources/templates/Localizable.strings:298
#, no-wrap
msgid "CRS_ALLOW_UNTRUSTED_KEXTS"
msgid "CSR_ALLOW_UNTRUSTED_KEXTS"
msgstr ""
#. type: "Crs1_description"
#. type: "Csr1_description"
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP)."
msgstr ""
#. type: "Crs2_title"
#. type: "Csr2_title"
#: Resources/templates/Localizable.strings:301
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_FS"
msgid "CSR_ALLOW_UNRESTRICTED_FS"
msgstr ""
#. type: "Crs2_description"
#. type: "Csr2_description"
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid "Filesystem protection: Important system files are protected and cannot be modified."
msgstr ""
#. type: "Crs4_title"
#. type: "Csr4_title"
#: Resources/templates/Localizable.strings:304
#, no-wrap
msgid "CRS_ALLOW_TASK_FOR_PID"
msgid "CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs4_description"
#. type: "Csr4_description"
#: Resources/templates/Localizable.strings:305
#, no-wrap
msgid "Disable CRS_ALLOW_TASK_FOR_PID"
msgid "Disable CSR_ALLOW_TASK_FOR_PID"
msgstr ""
#. type: "Crs8_title"
#. type: "Csr8_title"
#: Resources/templates/Localizable.strings:307
#, no-wrap
msgid "CRS_ALLOW_KERNEL_DEBUGGER"
msgid "CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs8_description"
#. type: "Csr8_description"
#: Resources/templates/Localizable.strings:308
#, no-wrap
msgid "Disable CRS_ALLOW_KERNEL_DEBUGGER"
msgid "Disable CSR_ALLOW_KERNEL_DEBUGGER"
msgstr ""
#. type: "Crs16_title"
#. type: "Csr16_title"
#: Resources/templates/Localizable.strings:310
#, no-wrap
msgid "CRS_ALLOW_APPLE_INTERNAL"
msgid "CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs16_description"
#. type: "Csr16_description"
#: Resources/templates/Localizable.strings:311
#, no-wrap
msgid "Disable CRS_ALLOW_APPLE_INTERNAL"
msgid "Disable CSR_ALLOW_APPLE_INTERNAL"
msgstr ""
#. type: "Crs32_title"
#. type: "Csr32_title"
#: Resources/templates/Localizable.strings:313
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs32_description"
#. type: "Csr32_description"
#: Resources/templates/Localizable.strings:314
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_DTRACE"
msgid "Disable CSR_ALLOW_UNRESTRICTED_DTRACE"
msgstr ""
#. type: "Crs64_title"
#. type: "Csr64_title"
#: Resources/templates/Localizable.strings:316
#, no-wrap
msgid "CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs64_description"
#. type: "Csr64_description"
#: Resources/templates/Localizable.strings:317
#, no-wrap
msgid "Disable CRS_ALLOW_UNRESTRICTED_NVRAM"
msgid "Disable CSR_ALLOW_UNRESTRICTED_NVRAM"
msgstr ""
#. type: "Crs128_title"
#. type: "Csr128_title"
#: Resources/templates/Localizable.strings:319
#, no-wrap
msgid "CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "Crs128_description"
#. type: "Csr128_description"
#: Resources/templates/Localizable.strings:320
#, no-wrap
msgid "Disable CRS_ALLOW_DEVICE_CONFIGURATION"
msgid "Disable CSR_ALLOW_DEVICE_CONFIGURATION"
msgstr ""
#. type: "HDAULayoutIDx01_title"
msgid "Settings to control how Chameleon works."
msgstr "設定控制 Chameleon 的運作方式。"
#. type: "CrsActiveConfig_title"
#. type: "CsrActiveConfig_title"
#: Resources/templates/Localizable.strings:883
#, no-wrap
msgid "CrsActiveConfig"
msgid "CsrActiveConfig"
msgstr ""
#. type: "CrsActiveConfig_description"
#. type: "CsrActiveConfig_description"
#: Resources/templates/Localizable.strings:884
#, no-wrap
msgid "System Integrity Protection (SIP)."
#: Resources/templates/Localizable.strings:945
#, fuzzy, no-wrap
#| msgid "Kext Patcher"
msgid "Patches"
msgid "Embedded Patcher"
msgstr "Kext Patcher"
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, fuzzy, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch the kernel."
msgid "A selection of options to patch the Kernel and Kexts."
msgstr "一些設定顯示卡的選項。"
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#: Resources/templates/Localizable.strings:949
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "kernel Patcher"
msgid "Embedded Kernel Patch"
msgstr "Kernel Patcher"
#. type: "kernelPatcher_description"
#: Resources/templates/Localizable.strings:949
#: Resources/templates/Localizable.strings:950
#, no-wrap
msgid "Select one patch for your kernel."
msgstr ""
#. type: "KernelBooter_kexts_title"
#: Resources/templates/Localizable.strings:952
#: Resources/templates/Localizable.strings:953
#, no-wrap
msgid "KernelBooter_kexts"
msgstr ""
#. type: "KernelBooter_kexts_description"
#: Resources/templates/Localizable.strings:953
#: Resources/templates/Localizable.strings:954
#, no-wrap
msgid "Re-enable /Extra/Extensions kexts on newer OSes."
msgstr ""
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#: Resources/templates/Localizable.strings:957
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelPm"
msgstr "Kernel Patcher"
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#: Resources/templates/Localizable.strings:958
#, fuzzy, no-wrap
#| msgid "Power Management"
msgid "Kernel Power Management patch."
msgstr "電源管理"
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#: Resources/templates/Localizable.strings:961
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicError"
msgstr "Kernel Patcher"
#. type: "KernelLapicError_description"
#: Resources/templates/Localizable.strings:961
#: Resources/templates/Localizable.strings:962
#, no-wrap
msgid "Remove the Local Apic Error panic."
msgstr ""
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#: Resources/templates/Localizable.strings:965
#, fuzzy, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicVersion"
msgstr "Kernel Patcher"
#. type: "KernelLapicVersion_description"
#: Resources/templates/Localizable.strings:965
#: Resources/templates/Localizable.strings:966
#, no-wrap
msgid "Remove the Local Apic Version panic."
msgstr ""
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#: Resources/templates/Localizable.strings:969
#, fuzzy, no-wrap
#| msgid "Kernel Flags"
msgid "KernelHaswell"
msgstr "內核參數"
#. type: "KernelHaswell_description"
#: Resources/templates/Localizable.strings:969
#: Resources/templates/Localizable.strings:970
#, no-wrap
msgid "Patch for Haswell \\\"E\\\" and \\\"ULT\\\" support on older OSes."
msgstr ""
#. type: "KernelcpuFamily_title"
#: Resources/templates/Localizable.strings:972
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "KernelcpuFamily"
msgstr ""
#. type: "KernelcpuFamily_description"
#: Resources/templates/Localizable.strings:973
#: Resources/templates/Localizable.strings:974
#, no-wrap
msgid "Patch the cpuid_family address to remove the _cpuid_set_info _panic and _tsc_init _panic. For unsupported CPUs"
msgstr ""
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "KernelSSE3"
msgstr ""
#. type: "KernelSSE3_description"
#: Resources/templates/Localizable.strings:977
#: Resources/templates/Localizable.strings:978
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr ""
#. type: "kextsPatcher_title"
#: Resources/templates/Localizable.strings:987
#, fuzzy, no-wrap
#| msgid "Kext Patcher"
msgid "Embedded Kexts Patch"
msgstr "Kext Patcher"
#. type: "kextsPatcher_description"
#: Resources/templates/Localizable.strings:988
#, fuzzy, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch kexts."
msgstr "一些設定顯示卡的選項。"
#. type: "AppleRTCPatch_title"
#: Resources/templates/Localizable.strings:991
#, no-wrap
msgid "AppleRTC Patch"
msgstr ""
#. type: "AppleRTCPatch_description"
#: Resources/templates/Localizable.strings:992
#, no-wrap
msgid "Patch AppleRTC."
msgstr ""
#. type: "OrangeIconFixSata_title"
#: Resources/templates/Localizable.strings:995
#, no-wrap
msgid "OrangeIcon Fix"
msgstr ""
#. type: "OrangeIconFixSata_description"
#: Resources/templates/Localizable.strings:996
#, no-wrap
msgid "Fix OrangeIcon."
msgstr ""
#. type: "TrimEnablerSata_title"
#: Resources/templates/Localizable.strings:999
#, no-wrap
msgid "TrimEnabler Sata"
msgstr ""
#. type: "TrimEnablerSata_description"
#: Resources/templates/Localizable.strings:1000
#, no-wrap
msgid "Sata TrimEnabler."
msgstr ""
#. type: "AICPMPatch_title"
#: Resources/templates/Localizable.strings:1003
#, no-wrap
msgid "AICPM Patch"
msgstr ""
#. type: "AICPMPatch_description"
#: Resources/templates/Localizable.strings:1004
#, no-wrap
msgid "Patch AICPM."
msgstr ""
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982
#: Resources/templates/Localizable.strings:1010
#, no-wrap
msgid "Themes"
msgstr "主題選項"
#. type: "Themes_description"
#: Resources/templates/Localizable.strings:983
#: Resources/templates/Localizable.strings:1011
#, no-wrap
msgid ""
"A collection of sample themes\n"

Archive Download the corresponding diff file

Revision: 2884