Index: trunk/i386/libsaio/nvidia_helper.c =================================================================== --- trunk/i386/libsaio/nvidia_helper.c (revision 2883) +++ trunk/i386/libsaio/nvidia_helper.c (revision 2884) @@ -1,153 +0,0 @@ -/* - * Copyright (c) 2012 cparm . 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): - - NVIDIA - - - Chipset Name - Quadro FX 380 - IOPCIPrimaryMatch - 0x10DE0658 - VRam Size - 256 - - - Chipset Name - YOUR_CARD_NAME - IOPCIPrimaryMatch - YOUR_CARD_ID - IOPCISubDevId - YOUR_CARD_SUB_ID(if necessary) - VRam Size - YOUR_CARD_VRAM_SIZE - - - Chipset Name - YOUR_SECOND_CARD_NAME - IOPCIPrimaryMatch - YOUR_SECOND_CARD_ID - IOPCISubDevId - YOUR_SECOND_CARD_SUB_ID(if necessary) - VRam Size - YOUR_SECOND_CARD_VRAM_SIZE - - . - . - . - . - - - */ - -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 int i, count; - TagPtr NVDIATag; - char *model_name = NULL; - char *match_id = NULL; - char *sub_id = NULL; - char *vram_size = NULL; - uint32_t dev_id = 0; - uint32_t subdev_id = 0; - uint64_t VramSize = 0; - - if ((NVDIATag = XMLCastArray(XMLGetProperty(bootInfo->chameleonConfig.dictionary, (const char *)"NVIDIA")))) - { - count = XMLTagCount(NVDIATag); - - for (i=0; i. All rights reserved. - * - */ - - -#ifndef __LIBSAIO_NVIDIA_HELPER_H -#define __LIBSAIO_NVIDIA_HELPER_H - -typedef struct cardList_t -{ - char *model; - uint32_t id; - uint32_t subid; - uint64_t videoRam; - 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 Index: trunk/i386/libsaio/bootstruct.c =================================================================== --- trunk/i386/libsaio/bootstruct.c (revision 2883) +++ trunk/i386/libsaio/bootstruct.c (revision 2884) @@ -134,11 +134,13 @@ } 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? } //============================================================================== Index: trunk/i386/libsaio/bootargs.h =================================================================== --- trunk/i386/libsaio/bootargs.h (revision 2883) +++ trunk/i386/libsaio/bootargs.h (revision 2884) @@ -88,7 +88,6 @@ uint32_t v_height; /* Height */ uint32_t v_depth; /* Pixel Depth */ }; - typedef struct Boot_Video Boot_Video; /* Values for v_display */ @@ -148,7 +147,7 @@ #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 | \ @@ -158,7 +157,7 @@ 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 { Index: trunk/i386/libsaio/Makefile =================================================================== --- trunk/i386/libsaio/Makefile (revision 2883) +++ trunk/i386/libsaio/Makefile (revision 2884) @@ -37,7 +37,7 @@ 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)) Index: trunk/i386/libsaio/gfx_helper.c =================================================================== --- trunk/i386/libsaio/gfx_helper.c (revision 0) +++ trunk/i386/libsaio/gfx_helper.c (revision 2884) @@ -0,0 +1,153 @@ +/* + * Copyright (c) 2012 cparm . 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): + + NVIDIA + + + Chipset Name + Quadro FX 380 + IOPCIPrimaryMatch + 0x10DE0658 + VRam Size + 256 + + + Chipset Name + YOUR_CARD_NAME + IOPCIPrimaryMatch + YOUR_CARD_ID + IOPCISubDevId + YOUR_CARD_SUB_ID(if necessary) + VRam Size + YOUR_CARD_VRAM_SIZE + + + Chipset Name + YOUR_SECOND_CARD_NAME + IOPCIPrimaryMatch + YOUR_SECOND_CARD_ID + IOPCISubDevId + YOUR_SECOND_CARD_SUB_ID(if necessary) + VRam Size + YOUR_SECOND_CARD_VRAM_SIZE + + . + . + . + . + + + */ + +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 int i, count; + TagPtr NVDIATag; + char *model_name = NULL; + char *match_id = NULL; + char *sub_id = NULL; + char *vram_size = NULL; + uint32_t dev_id = 0; + uint32_t subdev_id = 0; + uint64_t VramSize = 0; + + if ((NVDIATag = XMLCastArray(XMLGetProperty(bootInfo->chameleonConfig.dictionary, (const char *)"NVIDIA")))) + { + count = XMLTagCount(NVDIATag); + + for (i=0; i. All rights reserved. + * + */ + +#ifndef __LIBSAIO_GFX_HELPER_H +#define __LIBSAIO_GFX_HELPER_H + +typedef struct cardList_t +{ + char *model; + uint32_t id; + uint32_t subid; + uint64_t videoRam; + 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 Index: trunk/i386/libsaio/hda.c =================================================================== --- trunk/i386/libsaio/hda.c (revision 2883) +++ trunk/i386/libsaio/hda.c (revision 2884) @@ -110,7 +110,7 @@ { 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 */ }, @@ -215,7 +215,9 @@ { 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 */ }, @@ -567,9 +569,13 @@ { 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" }, @@ -819,9 +825,10 @@ 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: @@ -836,6 +843,7 @@ 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: @@ -846,8 +854,14 @@ 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) { @@ -951,7 +965,9 @@ 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"); Index: trunk/i386/libsaio/hda.h =================================================================== --- trunk/i386/libsaio/hda.h (revision 2883) +++ trunk/i386/libsaio/hda.h (revision 2884) @@ -99,7 +99,7 @@ #define HDA_INTEL_OAK HDA_MODEL_CONSTRUCT(INTEL, 0x080a) /* Oaktrail */ #define HDA_INTEL_BAY HDA_MODEL_CONSTRUCT(INTEL, 0x0f04) /* BayTrail */ #define HDA_INTEL_HSW1 HDA_MODEL_CONSTRUCT(INTEL, 0x0a0c) /* Haswell */ -#define HDA_INTEL_HSW2 HDA_MODEL_CONSTRUCT(INTEL, 0x0c0c) /* Haswell */ +#define HDA_INTEL_SER8HDMI HDA_MODEL_CONSTRUCT(INTEL, 0x0c0c) /* Haswell */ #define HDA_INTEL_HSW3 HDA_MODEL_CONSTRUCT(INTEL, 0x0d0c) /* Haswell */ #define HDA_INTEL_BDW HDA_MODEL_CONSTRUCT(INTEL, 0x160c) /* Broadwell */ #define HDA_INTEL_BROXTON_T HDA_MODEL_CONSTRUCT(INTEL, 0x1a98) /* Broxton-T */ @@ -215,9 +215,9 @@ #define HDA_ATI_RV910 HDA_MODEL_CONSTRUCT(ATI, 0xaa98) /* ATI HDMI */ #define HDA_ATI_R1000 HDA_MODEL_CONSTRUCT(ATI, 0xaaa0) /* ATI HDMI */ #define HDA_ATI_SI HDA_MODEL_CONSTRUCT(ATI, 0xaaa8) /* ATI HDMI */ -#define HDA_ATI_VERDE HDA_MODEL_CONSTRUCT(ATI, 0xaab0) /* ATI HDMI */ -//#define HDA_ATI_AAC0 HDA_MODEL_CONSTRUCT(ATI, 0xaac0) /* ATI HDMI */ -//#define HDA_ATI_AAC8 HDA_MODEL_CONSTRUCT(ATI, 0xaac8) /* ATI HDMI */ +#define HDA_ATI_OLAND HDA_MODEL_CONSTRUCT(ATI, 0xaab0) /* ATI HDMI */ +#define HDA_ATI_TAHITI HDA_MODEL_CONSTRUCT(ATI, 0xaac0) /* ATI HDMI */ +#define HDA_ATI_HAWAII HDA_MODEL_CONSTRUCT(ATI, 0xaac8) /* ATI HDMI */ //#define HDA_ATI_AAD8 HDA_MODEL_CONSTRUCT(ATI, 0xaad8) /* ATI HDMI */ //#define HDA_ATI_AAE8 HDA_MODEL_CONSTRUCT(ATI, 0xaae8) /* ATI HDMI */ //#define HDA_ATI_AAE0 HDA_MODEL_CONSTRUCT(ATI, 0xaae0) /* ATI HDMI */ @@ -606,6 +606,10 @@ #define HDA_CODEC_NVIDIAGTX550 HDA_CODEC_CONSTRUCT(NVIDIA, 0x0015) #define HDA_CODEC_NVIDIAGTX570 HDA_CODEC_CONSTRUCT(NVIDIA, 0x0018) #define HDA_CODEC_NVIDIAGT610 HDA_CODEC_CONSTRUCT(NVIDIA, 0x001c) +#define HDA_CODEC_NVIDIATEGRA30 HDA_CODEC_CONSTRUCT(NVIDIA, 0x0020) +#define HDA_CODEC_NVIDIATEGRA114 HDA_CODEC_CONSTRUCT(NVIDIA, 0x0022) +#define HDA_CODEC_NVIDIATEGRA124 HDA_CODEC_CONSTRUCT(NVIDIA, 0x0028) +#define HDA_CODEC_NVIDIATEGRA210 HDA_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) @@ -628,6 +632,7 @@ /* INTEL */ #define HDA_CODEC_INTELIP HDA_CODEC_CONSTRUCT(INTEL, 0x0054) +#define HDA_CODEC_INTELWB HDA_CODEC_CONSTRUCT(INTEL, 0x0a0c) #define HDA_CODEC_INTELBL HDA_CODEC_CONSTRUCT(INTEL, 0x2801) #define HDA_CODEC_INTELCA HDA_CODEC_CONSTRUCT(INTEL, 0x2802) #define HDA_CODEC_INTELEL HDA_CODEC_CONSTRUCT(INTEL, 0x2803) Index: trunk/i386/libsaio/nvidia.c =================================================================== --- trunk/i386/libsaio/nvidia.c (revision 2883) +++ trunk/i386/libsaio/nvidia.c (revision 2884) @@ -55,7 +55,7 @@ #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) Index: trunk/i386/libsaio/load.c =================================================================== --- trunk/i386/libsaio/load.c (revision 2883) +++ trunk/i386/libsaio/load.c (revision 2884) @@ -209,7 +209,6 @@ break; } - if (ret != 0) { return -1; Index: trunk/i386/libsaio/disk.c =================================================================== --- trunk/i386/libsaio/disk.c (revision 2883) +++ trunk/i386/libsaio/disk.c (revision 2884) @@ -1711,6 +1711,7 @@ 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+ @@ -1810,6 +1811,12 @@ fakeOSVersionInt = 12; valid = true; } + else if(strstr(val, HSierraPattern)) + { + fakeOSVersion = "10.13"; + fakeOSVersionInt = 13; + valid = true; + } else { valid = false; @@ -1870,8 +1877,11 @@ case 12: fakeOSVersion = "10.12"; break; + case 13: + fakeOSVersion = "10.13"; + break; default: - fakeOSVersion = "10.12"; + fakeOSVersion = "10.13"; break; } @@ -2220,7 +2230,7 @@ const char *raw = 0; char* val = 0; int len; - + getValueForKey(kHidePartition, &raw, &len, &bootInfo->chameleonConfig); if(raw) { @@ -2263,6 +2273,7 @@ // 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; Index: trunk/i386/libsaio/smbios.c =================================================================== --- trunk/i386/libsaio/smbios.c (revision 2883) +++ trunk/i386/libsaio/smbios.c (revision 2884) @@ -495,8 +495,8 @@ #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 @@ -515,8 +515,8 @@ // 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" /* ============================================ */ Index: trunk/i386/libsaio/smbios_decode.c =================================================================== --- trunk/i386/libsaio/smbios_decode.c (revision 2883) +++ trunk/i386/libsaio/smbios_decode.c (revision 2884) @@ -574,13 +574,13 @@ //------------------------------------------------------------------------------------------------------------------------- // 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) Index: trunk/i386/libsaio/smbios.h =================================================================== --- trunk/i386/libsaio/smbios.h (revision 2883) +++ trunk/i386/libsaio/smbios.h (revision 2884) @@ -134,8 +134,8 @@ 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) }; //---------------------------------------------------------------------------------------------------------- Index: trunk/i386/libsaio/stringTable.c =================================================================== --- trunk/i386/libsaio/stringTable.c (revision 2883) +++ trunk/i386/libsaio/stringTable.c (revision 2884) @@ -661,6 +661,8 @@ // 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 Index: trunk/i386/libsaio/fake_efi.c =================================================================== --- trunk/i386/libsaio/fake_efi.c (revision 2883) +++ trunk/i386/libsaio/fake_efi.c (revision 2884) @@ -627,9 +627,9 @@ 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); @@ -824,14 +824,15 @@ // 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); } } Index: trunk/i386/boot2/drivers.c =================================================================== --- trunk/i386/boot2/drivers.c (revision 2883) +++ trunk/i386/boot2/drivers.c (revision 2884) @@ -100,6 +100,7 @@ static long MatchPersonalities(void); static long MatchLibraries(void); + #ifdef NOTDEF static ModulePtr FindModule(char *name); static void ThinFatFile(void **loadAddrP, unsigned long *lengthP); @@ -217,7 +218,8 @@ { // 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); @@ -503,7 +505,7 @@ char *tmpBundlePath = 0; long ret = -1; - do{ + do { // Save the driver path. if(name) @@ -686,7 +688,7 @@ 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; @@ -1153,12 +1155,30 @@ 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 @@ -1217,8 +1237,13 @@ 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; } } Index: trunk/i386/boot2/boot.c =================================================================== --- trunk/i386/boot2/boot.c (revision 2883) +++ trunk/i386/boot2/boot.c (revision 2884) @@ -1155,8 +1155,8 @@ // =============================================================================== - bootArgs->csrCapabilities = CSR_VALID_FLAGS; - bootArgs->boot_SMC_plimit = 0; + bootArgs->csrCapabilities = CSR_VALID_FLAGS; + bootArgs->boot_SMC_plimit = 0; } } @@ -1252,7 +1252,8 @@ 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) Index: trunk/i386/boot2/boot.h =================================================================== --- trunk/i386/boot2/boot.h (revision 2883) +++ trunk/i386/boot2/boot.h (revision 2884) @@ -30,6 +30,7 @@ #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 Index: trunk/i386/boot2/gui.c =================================================================== --- trunk/i386/boot2/gui.c (revision 2883) +++ trunk/i386/boot2/gui.c (revision 2884) @@ -51,6 +51,8 @@ iDeviceGeneric_o, iDeviceHFS, iDeviceHFS_o, + iDeviceHFS_hsi, + iDeviceHFS_hsi_o, iDeviceHFS_sie, iDeviceHFS_sie_o, iDeviceHFS_cap, @@ -72,6 +74,8 @@ iDeviceHFSRAID, iDeviceHFSRAID_o, + iDeviceHFSRAID_hsi, + iDeviceHFSRAID_hsi_o, iDeviceHFSRAID_sie, iDeviceHFSRAID_sie_o, iDeviceHFSRAID_cap, @@ -96,6 +100,8 @@ iDeviceHFSFUSION, iDeviceHFSFUSION_o, + iDeviceHFSFUSION_hsi, + iDeviceHFSFUSION_hsi_o, iDeviceHFSFUSION_sie, iDeviceHFSFUSION_sie_o, iDeviceHFSFUSION_cap, @@ -162,6 +168,8 @@ {.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}, @@ -183,6 +191,8 @@ {.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}, @@ -207,6 +217,8 @@ {.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}, @@ -426,6 +438,8 @@ 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); @@ -447,6 +461,8 @@ 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); @@ -469,6 +485,21 @@ 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 */ @@ -1125,6 +1156,10 @@ 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; Index: trunk/i386/boot2/options.c =================================================================== --- trunk/i386/boot2/options.c (revision 2883) +++ trunk/i386/boot2/options.c (revision 2884) @@ -377,7 +377,7 @@ //========================================================================== -static const MenuItem * gMenuItems = NULL; +static const MenuItem *gMenuItems = NULL; static int gMenuItemCount; static int gMenuRow; @@ -1384,7 +1384,7 @@ 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"); Index: trunk/package/Distribution =================================================================== --- trunk/package/Distribution (revision 2883) +++ trunk/package/Distribution (revision 2884) @@ -43,6 +43,20 @@ } } + var kextsPlist = null; + if (my.target) + { + var kexts_plist_filenames = new Array( 'kexts.plist' ); + for ( var i = 0; i < 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"); Index: trunk/package/OptionalSettings/CrsActiveConfig.txt =================================================================== --- trunk/package/OptionalSettings/CrsActiveConfig.txt (revision 2883) +++ trunk/package/OptionalSettings/CrsActiveConfig.txt (revision 2884) @@ -1,35 +0,0 @@ -# --------------------------------------------- -# 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 Index: trunk/package/OptionalSettings/CsrActiveConfig.txt =================================================================== --- trunk/package/OptionalSettings/CsrActiveConfig.txt (revision 0) +++ trunk/package/OptionalSettings/CsrActiveConfig.txt (revision 2884) @@ -0,0 +1,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 Index: trunk/package/OptionalSettings/Control.txt =================================================================== --- trunk/package/OptionalSettings/Control.txt (revision 2883) +++ trunk/package/OptionalSettings/Control.txt (revision 2884) @@ -30,7 +30,7 @@ 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 Index: trunk/package/Resources/templates/Localizable.strings =================================================================== --- trunk/package/Resources/templates/Localizable.strings (revision 2883) +++ trunk/package/Resources/templates/Localizable.strings (revision 2884) @@ -295,29 +295,29 @@ // ---------------------------------------------------------------------------- -"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"; // ---------------------------------------------------------------------------- @@ -879,9 +879,9 @@ "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"; @@ -942,10 +942,11 @@ // ---------------------------------------------------------------------------- // 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 @@ -975,7 +976,34 @@ // 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 // ---------------------------------------------------------------------------- Index: trunk/package/po/ar.po =================================================================== --- trunk/package/po/ar.po (revision 2883) +++ trunk/package/po/ar.po (revision 2884) @@ -75,13 +75,8 @@ #. type: Content of:

#: 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:

#: Resources/templates/Description.html:20 @@ -91,14 +86,11 @@ #. type: Content of:

#: Resources/templates/Description.html:22 msgid "- Fully customizable GUI to bring some color to the Darwin Bootloader." -msgstr "" -"- واجهة إستخدام رسومية قابلة للتعديل بالكامل لإعطاء ألوان جديدة لمحمل تمهيد " -"داروين ." +msgstr "- واجهة إستخدام رسومية قابلة للتعديل بالكامل لإعطاء ألوان جديدة لمحمل تمهيد داروين ." #. type: Content of:

#: 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:

@@ -113,10 +105,8 @@ #. type: Content of:

#: 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:

#: Resources/templates/Description.html:27 @@ -155,8 +145,7 @@ #. type: Content of:

#: Resources/templates/Description.html:34 -msgid "" -"- Automatic P-State & C-State generation for native power management." +msgid "- Automatic P-State & C-State generation for native power management." msgstr "--التلقائية جيل ف الدولة والدولة ج." #. type: Content of:

@@ -201,9 +190,7 @@ #. type: Content of:

#: Resources/templates/Conclusion.html:26 -msgid "" -" to find out if the installation was successful and keep it for a " -"record of what was done." +msgid " to find out if the installation was successful and keep it for a record of what was done." msgstr " لمعرفة ما إذا كان التنصيب تم بنجاح وأتركه كتسجيل لما تم ." #. type: Content of:

@@ -448,8 +435,7 @@ 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 "الدقة" @@ -489,10 +475,9 @@ #. 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 @@ -510,7 +495,7 @@ #: Resources/templates/Localizable.strings:100 #, no-wrap msgid "Kext Patcher" -msgstr "" +msgstr "‫Kext Patcher" #. type: "KextPatcher_description" #: Resources/templates/Localizable.strings:101 @@ -522,10 +507,9 @@ #. 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 @@ -537,10 +521,9 @@ #. 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 @@ -552,10 +535,9 @@ #. 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 @@ -567,10 +549,9 @@ #. 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 @@ -1240,105 +1221,104 @@ 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 "" @@ -1352,8 +1332,7 @@ 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 "" @@ -1367,8 +1346,7 @@ 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 "" @@ -1382,8 +1360,7 @@ 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 "" @@ -1397,8 +1374,7 @@ 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 "" @@ -1412,8 +1388,7 @@ 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 "" @@ -1427,8 +1402,7 @@ 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 "" @@ -1442,8 +1416,7 @@ 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 "" @@ -1457,8 +1430,7 @@ 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 "" @@ -1472,8 +1444,7 @@ 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 "" @@ -1487,8 +1458,7 @@ 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 "" @@ -1502,8 +1472,7 @@ 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 "" @@ -1517,8 +1486,7 @@ 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 "" @@ -1532,8 +1500,7 @@ 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 "" @@ -1547,8 +1514,7 @@ 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 "" @@ -1562,8 +1528,7 @@ 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 "" @@ -1577,8 +1542,7 @@ 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 "" @@ -1592,8 +1556,7 @@ 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 "" @@ -1607,8 +1570,7 @@ 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 "" @@ -1622,8 +1584,7 @@ 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 "" @@ -1637,8 +1598,7 @@ 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 "" @@ -1652,8 +1612,7 @@ 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 "" @@ -1667,8 +1626,7 @@ 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 "" @@ -1682,8 +1640,7 @@ 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 "" @@ -1697,8 +1654,7 @@ 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 "" @@ -1712,8 +1668,7 @@ 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 "" @@ -3179,13 +3134,13 @@ 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)." @@ -3344,154 +3299,219 @@ #. 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 "سوف يتم دمج اى خيار انت تختاره الى الخيارات المضافة بالفعل فى فولدر الاكسترا فى البارتشن المختار التثبيت عليه" Index: trunk/package/po/bs.po =================================================================== --- trunk/package/po/bs.po (revision 2883) +++ trunk/package/po/bs.po (revision 2884) @@ -7,7 +7,7 @@ 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 \n" @@ -1248,100 +1248,100 @@ 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" @@ -3189,13 +3189,13 @@ 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)." @@ -3354,127 +3354,190 @@ #. 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" @@ -3483,6 +3546,26 @@ "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" Index: trunk/package/po/cs.po =================================================================== --- trunk/package/po/cs.po (revision 2883) +++ trunk/package/po/cs.po (revision 2884) @@ -6,7 +6,7 @@ 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 \n" "Language-Team: cs \n" @@ -1259,100 +1259,100 @@ 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" @@ -3362,13 +3362,13 @@ 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)." @@ -3533,126 +3533,188 @@ #: 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" @@ -3660,6 +3722,26 @@ 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" Index: trunk/package/po/it.po =================================================================== --- trunk/package/po/it.po (revision 2883) +++ trunk/package/po/it.po (revision 2884) @@ -6,8 +6,8 @@ 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 \n" "Language-Team: it \n" "Language: it\n" @@ -1256,101 +1256,101 @@ 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 @@ -3308,13 +3308,13 @@ 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)." @@ -3473,119 +3473,179 @@ #. 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" @@ -3600,7 +3660,7 @@ #~ 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)." Index: trunk/package/po/chameleon.pot =================================================================== --- trunk/package/po/chameleon.pot (revision 2883) +++ trunk/package/po/chameleon.pot (revision 2884) @@ -1252,13 +1252,13 @@ 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 "" @@ -1266,13 +1266,13 @@ "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 "" @@ -1280,76 +1280,76 @@ "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" @@ -3201,13 +3201,13 @@ 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)." @@ -3368,95 +3368,95 @@ #. 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 " @@ -3464,25 +3464,85 @@ 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" Index: trunk/package/po/ca.po =================================================================== --- trunk/package/po/ca.po (revision 2883) +++ trunk/package/po/ca.po (revision 2884) @@ -7,7 +7,7 @@ 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 \n" "Language-Team: ca \n" @@ -1249,100 +1249,100 @@ 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" @@ -3248,13 +3248,13 @@ 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)." @@ -3416,126 +3416,188 @@ #: 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" @@ -3545,6 +3607,26 @@ "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" Index: trunk/package/po/de.po =================================================================== --- trunk/package/po/de.po (revision 2883) +++ trunk/package/po/de.po (revision 2884) @@ -7,7 +7,7 @@ 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 \n" "Language-Team: de \n" @@ -1274,100 +1274,100 @@ 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" @@ -3377,13 +3377,13 @@ 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)." @@ -3548,126 +3548,188 @@ #: 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" @@ -3677,6 +3739,26 @@ "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" Index: trunk/package/po/bg.po =================================================================== --- trunk/package/po/bg.po (revision 2883) +++ trunk/package/po/bg.po (revision 2884) @@ -7,7 +7,7 @@ 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: Желязко \n" "Language-Team: bg \n" @@ -1244,100 +1244,100 @@ 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" @@ -3185,13 +3185,13 @@ 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)." @@ -3350,127 +3350,190 @@ #. 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" @@ -3479,6 +3542,26 @@ "Колекция от теми\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 " Index: trunk/package/po/zh_TW.po =================================================================== --- trunk/package/po/zh_TW.po (revision 2883) +++ trunk/package/po/zh_TW.po (revision 2884) @@ -7,7 +7,7 @@ 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 \n" @@ -1276,100 +1276,100 @@ 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" @@ -3354,13 +3354,13 @@ 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)." @@ -3522,126 +3522,188 @@ #: 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"